From bbf45aa9140d737675b7bb74a11174fb35497a98 Mon Sep 17 00:00:00 2001 From: Saurabh Date: Thu, 19 Jul 2018 13:13:45 +0530 Subject: [PATCH 01/89] Update hooks.py --- frappe/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 4562251cd4..91c9be3af7 100755 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -12,7 +12,7 @@ source_link = "https://github.com/frappe/frappe" app_license = "MIT" develop_version = '11.x.x-develop' -staging_version = '11.x.x-staging' +staging_version = '11.0.0-beta' app_email = "info@frappe.io" From 0f115879d44095668c951ccc21bd92d40a2b1501 Mon Sep 17 00:00:00 2001 From: Saurabh Date: Thu, 19 Jul 2018 13:14:02 +0530 Subject: [PATCH 02/89] Update hooks.py --- frappe/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 4562251cd4..91c9be3af7 100755 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -12,7 +12,7 @@ source_link = "https://github.com/frappe/frappe" app_license = "MIT" develop_version = '11.x.x-develop' -staging_version = '11.x.x-staging' +staging_version = '11.0.0-beta' app_email = "info@frappe.io" From 861ebe9046f8dd92f0f7aa305e19e1d1ca28fef6 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Tue, 31 Jul 2018 12:56:38 +0530 Subject: [PATCH 03/89] report_name need not be unique (#5885) --- frappe/core/doctype/report/report.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/report/report.json b/frappe/core/doctype/report/report.json index 9c031df703..ce7b4b7d51 100644 --- a/frappe/core/doctype/report/report.json +++ b/frappe/core/doctype/report/report.json @@ -42,7 +42,7 @@ "search_index": 0, "set_only_once": 0, "translatable": 0, - "unique": 1 + "unique": 0 }, { "allow_bulk_edit": 0, @@ -600,7 +600,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2018-06-26 14:48:49.989952", + "modified": "2018-06-27 14:48:49.989952", "modified_by": "Administrator", "module": "Core", "name": "Report", From 21bbbd2dbbc63020c2d1c04eda4c9b4b226e2ff0 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Tue, 14 Aug 2018 15:22:25 +0000 Subject: [PATCH 04/89] [feature] show popup for version update - added a new weekly hook to check if new version update is available - added function to desk.js to show popup in case a new version is available - added redis wrappers for set related commands, namely sadd, srem, sismember, spop, srandmember, smembers --- frappe/hooks.py | 3 +- frappe/public/js/frappe/desk.js | 8 ++++ frappe/utils/change_log.py | 70 +++++++++++++++++++++++++++++++++ frappe/utils/redis_wrapper.py | 23 +++++++++++ 4 files changed, 103 insertions(+), 1 deletion(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 348f1d283b..4a76ee075b 100755 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -153,7 +153,8 @@ scheduler_events = { "frappe.utils.scheduler.restrict_scheduler_events_if_dormant", "frappe.email.doctype.auto_email_report.auto_email_report.send_daily", "frappe.core.doctype.feedback_request.feedback_request.delete_feedback_request", - "frappe.core.doctype.activity_log.activity_log.clear_authentication_logs" + "frappe.core.doctype.activity_log.activity_log.clear_authentication_logs", + "frappe.utils.change_log.check_for_update" ], "daily_long": [ "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_daily", diff --git a/frappe/public/js/frappe/desk.js b/frappe/public/js/frappe/desk.js index 999c970ebc..11973d4f2e 100644 --- a/frappe/public/js/frappe/desk.js +++ b/frappe/public/js/frappe/desk.js @@ -79,6 +79,8 @@ frappe.Application = Class.extend({ this.show_notes(); } + this.show_update_available(); + // listen to csrf_update frappe.realtime.on("csrf_generated", function(data) { // handles the case when a user logs in again from another tab @@ -468,6 +470,12 @@ frappe.Application = Class.extend({ }; }, + show_update_available: () => { + frappe.call({ + "method": "frappe.utils.change_log.show_update_popup" + }); + }, + setup_analytics: function() { if(window.mixpanel) { window.mixpanel.identify(frappe.session.user); diff --git a/frappe/utils/change_log.py b/frappe/utils/change_log.py index 322b241d03..ed9f02fd6d 100644 --- a/frappe/utils/change_log.py +++ b/frappe/utils/change_log.py @@ -7,6 +7,7 @@ import json, subprocess, os from semantic_version import Version import frappe from frappe.utils import cstr +import requests, shlex def get_change_log(user=None): if not user: user = frappe.session.user @@ -124,3 +125,72 @@ def get_app_last_commit_ref(app): shell=True).strip()[:7] except Exception as e: return '' + +def check_for_update(): + updates = frappe._dict(major=[], minor=[], patch=[]) + apps = get_versions() + + for app in apps: + # Check if repo remote is on github + remote_url = subprocess.check_output("cd ../apps/{} && git ls-remote --get-url".format(app), shell=True) + if "github.com" not in remote_url: + continue + + # Get latest version from github + if 'https' not in remote_url: + continue + + org_name = remote_url.split('/')[3] + r = requests.get('https://api.github.com/repos/{}/{}/releases'.format(org_name, app)) + if r.status_code == 200 and r.json(): + # 0 => latest release + github_version = Version(r.json()[0]['tag_name'].strip('v')) + else: + # In case of an improper response or if there are no releases + continue + + # Get local instance's current version or the app + instance_version = Version(apps[app]['version']) + # Compare and popup update message + for update_type in updates: + if github_version.__dict__[update_type] > instance_version.__dict__[update_type]: + updates[update_type].append(frappe._dict( + current_version = str(instance_version), + available_version = str(github_version), + org_name = org_name, + app_name = app, + title = apps[app]['title'], + )) + break + + update_message = "" + for update_type in updates: + release_links = "" + for app in updates[update_type]: + release_links += "{title}: v{available_version}
".format( + available_version = app.available_version, + org_name = app.org_name, + app_name = app.app_name, + title = app.title + ) + if release_links: + update_message += "New {} releases for the following apps are available:

{}
".format(update_type, release_links) + + # "update-message" will store the update message string + # "update-user-set" will be a set of users + if update_message: + update_message += "Please ask your system manager to update your instance" + cache = frappe.cache() + cache.set_value("update-message", update_message) + user_list = [x.name for x in frappe.get_all("User", filters={"enabled": True})] + cache.sadd("update-user-set", *user_list) + +@frappe.whitelist() +def show_update_popup(): + cache = frappe.cache() + user = frappe.session.user + + # Check if user is int the set of users to send update message to + if cache.sismember("update-user-set", user): + frappe.msgprint(cache.get_value("update-message"), title="New updates are available", indicator='green') + cache.srem("update-user-set", user) diff --git a/frappe/utils/redis_wrapper.py b/frappe/utils/redis_wrapper.py index 1fd8c10d13..05af4c99fb 100644 --- a/frappe/utils/redis_wrapper.py +++ b/frappe/utils/redis_wrapper.py @@ -200,4 +200,27 @@ class RedisWrapper(redis.Redis): except redis.exceptions.ConnectionError: return [] + def sadd(self, name, *values): + """Add a member/members to a given set""" + super(redis.Redis, self).sadd(self.make_key(name), *values) + + def srem(self, name, *values): + """Remove a specific member/list of members from the set""" + super(redis.Redis, self).srem(self.make_key(name), *values) + + def sismember(self, name, value): + """Returns True or False based on if a given value is present in the set""" + return super(redis.Redis, self).sismember(self.make_key(name), value) + + def spop(self, name): + """Removes and returns a random member from the set""" + return super(redis.Redis, self).spop(self.make_key(name)) + + def srandmember(self, name, count=None): + """Returns a random member from the set""" + return super(redis.Redis, self).srandmember(self.make_key(name)) + + def smembers(self, name): + """Return all members of the set""" + return super(redis.Redis, self).smembers(self.make_key(name)) From dd38ab3a4cd265cd664c61606b686aaced268969 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 20 Aug 2018 16:58:46 +0530 Subject: [PATCH 05/89] Fieldtype changed for filters in prepared report --- frappe/core/doctype/prepared_report/prepared_report.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/core/doctype/prepared_report/prepared_report.json b/frappe/core/doctype/prepared_report/prepared_report.json index 5a9e297a86..32a67da27a 100644 --- a/frappe/core/doctype/prepared_report/prepared_report.json +++ b/frappe/core/doctype/prepared_report/prepared_report.json @@ -215,7 +215,7 @@ "collapsible": 0, "columns": 0, "fieldname": "filters", - "fieldtype": "Data", + "fieldtype": "Small Text", "hidden": 1, "ignore_user_permissions": 0, "ignore_xss_filter": 0, @@ -282,8 +282,8 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2018-07-24 10:26:19.439344", - "modified_by": "prateeksha@erpnext.com", + "modified": "2018-08-20 16:56:47.389629", + "modified_by": "Administrator", "module": "Core", "name": "Prepared Report", "name_case": "", From b944fcfdb547f646e99e80e89ea160aa52b891f1 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Tue, 21 Aug 2018 02:39:03 +0530 Subject: [PATCH 06/89] [minor] pop up shown to system managers and functionified code --- frappe/utils/change_log.py | 59 +++++++++++++++++++++++--------------- 1 file changed, 36 insertions(+), 23 deletions(-) diff --git a/frappe/utils/change_log.py b/frappe/utils/change_log.py index ed9f02fd6d..ff512dbe6a 100644 --- a/frappe/utils/change_log.py +++ b/frappe/utils/change_log.py @@ -131,24 +131,10 @@ def check_for_update(): apps = get_versions() for app in apps: - # Check if repo remote is on github - remote_url = subprocess.check_output("cd ../apps/{} && git ls-remote --get-url".format(app), shell=True) - if "github.com" not in remote_url: - continue - - # Get latest version from github - if 'https' not in remote_url: - continue - - org_name = remote_url.split('/')[3] - r = requests.get('https://api.github.com/repos/{}/{}/releases'.format(org_name, app)) - if r.status_code == 200 and r.json(): - # 0 => latest release - github_version = Version(r.json()[0]['tag_name'].strip('v')) - else: - # In case of an improper response or if there are no releases - continue + app_details = check_release_on_github(app) + if not app_details: continue + github_version, org_name = app_details # Get local instance's current version or the app instance_version = Version(apps[app]['version']) # Compare and popup update message @@ -163,6 +149,28 @@ def check_for_update(): )) break + generate_update_message(updates) + +def check_release_on_github(app): + # Check if repo remote is on github + remote_url = subprocess.check_output("cd ../apps/{} && git ls-remote --get-url".format(app), shell=True) + if "github.com" not in remote_url: + return None + + # Get latest version from github + if 'https' not in remote_url: + return None + + org_name = remote_url.split('/')[3] + r = requests.get('https://api.github.com/repos/{}/{}/releases'.format(org_name, app)) + if r.status_code == 200 and r.json(): + # 0 => latest release + return Version(r.json()[0]['tag_name'].strip('v')), org_name + else: + # In case of an improper response or if there are no releases + return None + +def generate_update_message(updates): update_message = "" for update_type in updates: release_links = "" @@ -176,20 +184,25 @@ def check_for_update(): if release_links: update_message += "New {} releases for the following apps are available:

{}
".format(update_type, release_links) + if update_message: + add_message_to_redis(update_message) # "update-message" will store the update message string # "update-user-set" will be a set of users - if update_message: - update_message += "Please ask your system manager to update your instance" - cache = frappe.cache() - cache.set_value("update-message", update_message) - user_list = [x.name for x in frappe.get_all("User", filters={"enabled": True})] - cache.sadd("update-user-set", *user_list) + +def add_message_to_redis(update_message): + update_message += "Please ask your system manager to update your instance" + cache = frappe.cache() + cache.set_value("update-message", update_message) + user_list = [x.name for x in frappe.get_all("User", filters={"enabled": True})] + cache.sadd("update-user-set", *user_list) @frappe.whitelist() def show_update_popup(): cache = frappe.cache() user = frappe.session.user + if not "System Manager" in frappe.get_roles(): + return # Check if user is int the set of users to send update message to if cache.sismember("update-user-set", user): frappe.msgprint(cache.get_value("update-message"), title="New updates are available", indicator='green') From a4f3ba6d99f202096a621923e170c61bddda78c4 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Fri, 24 Aug 2018 11:38:37 +0000 Subject: [PATCH 07/89] translated strings and removed admin upgrade message --- frappe/utils/change_log.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/utils/change_log.py b/frappe/utils/change_log.py index ff512dbe6a..c2cddc5101 100644 --- a/frappe/utils/change_log.py +++ b/frappe/utils/change_log.py @@ -8,6 +8,7 @@ from semantic_version import Version import frappe from frappe.utils import cstr import requests, shlex +from frappe import _ def get_change_log(user=None): if not user: user = frappe.session.user @@ -182,7 +183,7 @@ def generate_update_message(updates): title = app.title ) if release_links: - update_message += "New {} releases for the following apps are available:

{}
".format(update_type, release_links) + update_message += _("New {} releases for the following apps are available") + ":

{}
".format(update_type, release_links) if update_message: add_message_to_redis(update_message) @@ -190,7 +191,6 @@ def generate_update_message(updates): # "update-user-set" will be a set of users def add_message_to_redis(update_message): - update_message += "Please ask your system manager to update your instance" cache = frappe.cache() cache.set_value("update-message", update_message) user_list = [x.name for x in frappe.get_all("User", filters={"enabled": True})] @@ -205,5 +205,5 @@ def show_update_popup(): return # Check if user is int the set of users to send update message to if cache.sismember("update-user-set", user): - frappe.msgprint(cache.get_value("update-message"), title="New updates are available", indicator='green') + frappe.msgprint(cache.get_value("update-message"), title=_("New updates are available"), indicator='green') cache.srem("update-user-set", user) From 9d74c547cc1e56fb896f1bbf33ad2b0a0ae0363d Mon Sep 17 00:00:00 2001 From: Sachin Mane Date: Sat, 25 Aug 2018 13:34:38 +0530 Subject: [PATCH 08/89] remove docstatus filter for non submittable doctypes --- frappe/public/js/frappe/ui/filters/field_select.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/public/js/frappe/ui/filters/field_select.js b/frappe/public/js/frappe/ui/filters/field_select.js index 182d8d1646..2f7fe4d6bc 100644 --- a/frappe/public/js/frappe/ui/filters/field_select.js +++ b/frappe/public/js/frappe/ui/filters/field_select.js @@ -130,6 +130,9 @@ frappe.ui.FieldSelect = Class.extend({ }, add_field_option(df) { + if (df.fieldname == 'docstatus' && !frappe.model.is_submittable(this.doctype)) + return; + var me = this; var label, table; if(me.doctype && df.parent==me.doctype) { From b6984e75f5340be4c89c2f85f4fc7680e9d72628 Mon Sep 17 00:00:00 2001 From: Sachin Mane Date: Sat, 25 Aug 2018 14:13:45 +0530 Subject: [PATCH 09/89] Update field_select.js --- frappe/public/js/frappe/ui/filters/field_select.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/ui/filters/field_select.js b/frappe/public/js/frappe/ui/filters/field_select.js index 2f7fe4d6bc..2644971f57 100644 --- a/frappe/public/js/frappe/ui/filters/field_select.js +++ b/frappe/public/js/frappe/ui/filters/field_select.js @@ -130,8 +130,8 @@ frappe.ui.FieldSelect = Class.extend({ }, add_field_option(df) { - if (df.fieldname == 'docstatus' && !frappe.model.is_submittable(this.doctype)) - return; + if (df.fieldname == 'docstatus' && !frappe.model.is_submittable(this.doctype)) + return; var me = this; var label, table; From 02fbf053bf51c1a01cfc77c7e60eefc6ff9818ed Mon Sep 17 00:00:00 2001 From: Sachin Mane Date: Sat, 25 Aug 2018 17:36:53 +0530 Subject: [PATCH 10/89] Update field_select.js --- frappe/public/js/frappe/ui/filters/field_select.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/filters/field_select.js b/frappe/public/js/frappe/ui/filters/field_select.js index 2644971f57..d33ce418b6 100644 --- a/frappe/public/js/frappe/ui/filters/field_select.js +++ b/frappe/public/js/frappe/ui/filters/field_select.js @@ -131,7 +131,7 @@ frappe.ui.FieldSelect = Class.extend({ add_field_option(df) { if (df.fieldname == 'docstatus' && !frappe.model.is_submittable(this.doctype)) - return; + return; var me = this; var label, table; From 394f451b6c84f35b3df4ed26ed9cb2e8f0d6c0a2 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 29 Aug 2018 14:57:34 +0530 Subject: [PATCH 11/89] ux(assignment): allow assignment without any value --- frappe/desk/form/assign_to.py | 3 +++ frappe/public/js/frappe/form/footer/assign_to.js | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frappe/desk/form/assign_to.py b/frappe/desk/form/assign_to.py index 7e6500b7e4..f13f853636 100644 --- a/frappe/desk/form/assign_to.py +++ b/frappe/desk/form/assign_to.py @@ -47,6 +47,9 @@ def add(args=None): # if args.get("re_assign"): # remove_from_todo_if_already_assigned(args['doctype'], args['name']) + if not args.get('description'): + args['description'] = _('Assignment') + d = frappe.get_doc({ "doctype":"ToDo", "owner": args['assign_to'], diff --git a/frappe/public/js/frappe/form/footer/assign_to.js b/frappe/public/js/frappe/form/footer/assign_to.js index 52d134b6ff..36e845cc54 100644 --- a/frappe/public/js/frappe/form/footer/assign_to.js +++ b/frappe/public/js/frappe/form/footer/assign_to.js @@ -170,7 +170,6 @@ frappe.ui.form.AssignToDialog = Class.extend({ me.get_field("assign_to").$wrapper.toggle(false); } else { me.set_value("assign_to", ""); - me.set_value("notify", 1); me.get_field("notify").$wrapper.toggle(true); me.get_field("assign_to").$wrapper.toggle(true); } From 6b508cf809135986ff4ded97ebd094103e273eac Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 29 Aug 2018 15:47:19 +0530 Subject: [PATCH 12/89] fix: Number format (#6028) --- frappe/public/js/frappe/misc/number_format.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/misc/number_format.js b/frappe/public/js/frappe/misc/number_format.js index ab415a8727..dbd76b134b 100644 --- a/frappe/public/js/frappe/misc/number_format.js +++ b/frappe/public/js/frappe/misc/number_format.js @@ -84,7 +84,8 @@ window.format_number = function (v, format, decimals) { v = flt(v, decimals, format); - if (v < 0) var is_negative = true; + let is_negative = false; + if (v < 0) is_negative = true; v = Math.abs(v); v = v.toFixed(decimals); From 41d1446c047ffb91bc9e7ccd53970a63bccdc9eb Mon Sep 17 00:00:00 2001 From: Zarrar Date: Wed, 29 Aug 2018 16:05:47 +0530 Subject: [PATCH 13/89] functions already added in delivery_triip.py (#6027) --- .../google_maps_settings/google_maps_settings.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py b/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py index a4f61f500d..8d978c2263 100644 --- a/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +++ b/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py @@ -24,18 +24,3 @@ class GoogleMapsSettings(Document): frappe.throw(e.message) return client - -def round_timedelta(td, period): - """Round timedelta""" - period_seconds = period.total_seconds() - half_period_seconds = period_seconds / 2 - remainder = td.total_seconds() % period_seconds - if remainder >= half_period_seconds: - return datetime.timedelta(seconds=td.total_seconds() + (period_seconds - remainder)) - else: - return datetime.timedelta(seconds=td.total_seconds() - remainder) - -def format_address(address): - """Customer Address format """ - address = frappe.get_doc('Address', address) - return '{}, {}, {}, {}'.format(address.address_line1, address.city, address.pincode, address.country) From adfc4d726f5951d2793cac98d7df9fc80e4b6a9d Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 29 Aug 2018 16:12:32 +0530 Subject: [PATCH 14/89] fix(css): Commonify awesomplete styles (#6029) --- frappe/public/build.json | 2 - .../public/js/lib/awesomplete/awesomplete.css | 12 +-- frappe/public/less/awesomplete.less | 80 +++++++++++++++++++ frappe/public/less/controls.less | 54 +------------ frappe/public/less/desk.less | 54 ------------- 5 files changed, 87 insertions(+), 115 deletions(-) create mode 100644 frappe/public/less/awesomplete.less diff --git a/frappe/public/build.json b/frappe/public/build.json index 25fae164d5..f72ce0561e 100755 --- a/frappe/public/build.json +++ b/frappe/public/build.json @@ -5,7 +5,6 @@ "public/less/website.less", "public/less/avatar.less", "node_modules/highlight.js/styles/zenburn.css", - "public/js/lib/awesomplete/awesomplete.css", "public/less/form.less", "public/less/controls.less", "public/less/chat.less", @@ -93,7 +92,6 @@ ], "css/desk.min.css": [ "public/js/lib/datepicker/datepicker.min.css", - "public/js/lib/awesomplete/awesomplete.css", "public/js/lib/summernote/summernote.css", "public/js/lib/leaflet/leaflet.css", "public/js/lib/leaflet/leaflet.draw.css", diff --git a/frappe/public/js/lib/awesomplete/awesomplete.css b/frappe/public/js/lib/awesomplete/awesomplete.css index 0b2ea34fe6..26fcd9105c 100755 --- a/frappe/public/js/lib/awesomplete/awesomplete.css +++ b/frappe/public/js/lib/awesomplete/awesomplete.css @@ -47,7 +47,7 @@ transition: .3s cubic-bezier(.4,.2,.5,1.4); transform-origin: 1.43em -.43em; } - + .awesomplete > ul[hidden], .awesomplete > ul:empty { opacity: 0; @@ -78,25 +78,25 @@ padding: .2em .5em; cursor: pointer; } - + .awesomplete > ul > li:hover { background: hsl(200, 40%, 80%); color: black; } - + .awesomplete > ul > li[aria-selected="true"] { background: hsl(205, 40%, 40%); color: white; } - + .awesomplete mark { background: hsl(65, 100%, 50%); } - + .awesomplete li:hover mark { background: hsl(68, 100%, 41%); } - + .awesomplete li[aria-selected="true"] mark { background: hsl(86, 100%, 21%); color: inherit; diff --git a/frappe/public/less/awesomplete.less b/frappe/public/less/awesomplete.less new file mode 100644 index 0000000000..1642e3171d --- /dev/null +++ b/frappe/public/less/awesomplete.less @@ -0,0 +1,80 @@ +.awesomplete { + + display: inline-block; + position: relative; + + [hidden] { + display: none; + } + + .visually-hidden { + position: absolute; + clip: rect(0, 0, 0, 0); + } + + &> input { + display: block; + } + + width: 100%; + + &> ul:empty { + display: none; + } + + &> ul { + position: absolute; + left: 0; + min-width: 100%; + box-sizing: border-box; + list-style: none; + padding: 0; + margin: 0; + background: #fff; + transition: none; + background-color: #fff; + max-height: 200px; + overflow-y: auto; + overflow-x: hidden; + border-radius: 0px 0px 4px 4px; + box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.176); + border: 1px solid @border-color; + z-index: 1041 !important; + text-shadow: none; + + li[aria-selected="true"] mark, mark { + padding: 0px; + background-color: inherit; + } + + &> li { + cursor: pointer; + font-size: 12px; + padding: 9px 11.8px; + } + + &> li .link-option { + font-weight: normal; + } + + &> li:hover, &> li[aria-selected=true] { + background-color: @btn-bg; + color: @text-color; + text-shadow: none; + } + + a:hover { + text-decoration: none; + } + + p { + margin: 3px 0; + } + } + + @media (max-width: @screen-sm) { + &>ul { + top: 26px; + } + } +} \ No newline at end of file diff --git a/frappe/public/less/controls.less b/frappe/public/less/controls.less index b8260f947f..19a86cdd74 100644 --- a/frappe/public/less/controls.less +++ b/frappe/public/less/controls.less @@ -1,6 +1,7 @@ @import "variables.less"; @import "mixins.less"; @import "common.less"; +@import "awesomplete.less"; .unit-checkbox { color: #36414c; @@ -42,56 +43,3 @@ z-index: 3; } -.awesomplete { - width: 100%; - - &> ul { - z-index: 1041 !important; - transition: none; - background-color: #fff; - max-height: 200px; - overflow-y: auto; - overflow-x: hidden; - border-radius: 0px 0px 4px 4px; - box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.176); - border-color: @border-color; - - &:before { - display: none; - } - - li[aria-selected="true"] mark, mark { - padding: 0px; - background-color: inherit; - } - - &> li { - font-size: 12px; - padding: 9px 11.8px; - } - - &> li .link-option { - font-weight: normal; - } - - &> li:hover, &> li[aria-selected=true] { - background-color: @btn-bg; - color: @text-color; - text-shadow: none; - } - - a:hover { - text-decoration: none; - } - - p { - margin: 3px 0; - } - } - - @media (max-width: @screen-sm) { - &>ul { - top: 26px; - } - } -} diff --git a/frappe/public/less/desk.less b/frappe/public/less/desk.less index b9d35adb44..5de3b2c86c 100644 --- a/frappe/public/less/desk.less +++ b/frappe/public/less/desk.less @@ -206,60 +206,6 @@ textarea.form-control { display: none; } -.awesomplete { - width: 100%; - - &> ul { - z-index: 1041 !important; - transition: none; - background-color: #fff; - max-height: 200px; - overflow-y: auto; - overflow-x: hidden; - border-radius: 0px 0px 4px 4px; - box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.176); - border-color: @border-color; - - &:before { - display: none; - } - - li[aria-selected="true"] mark, mark { - padding: 0px; - background-color: inherit; - } - - &> li { - font-size: 12px; - padding: 9px 11.8px; - } - - &> li .link-option { - font-weight: normal; - } - - &> li:hover, &> li[aria-selected=true] { - background-color: @btn-bg; - color: @text-color; - text-shadow: none; - } - - a:hover { - text-decoration: none; - } - - p { - margin: 3px 0; - } - } - - @media (max-width: @screen-sm) { - &>ul { - top: 26px; - } - } -} - .barcode-wrapper { text-align: center; } From a9f32f292c5a5c2b4283e247790f03d993a3b0e4 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 29 Aug 2018 17:09:35 +0530 Subject: [PATCH 15/89] default(perms): add default import, export perms --- frappe/contacts/doctype/address/address.json | 1361 ++++++------- frappe/contacts/doctype/contact/contact.json | 1677 +++++++++-------- .../core/doctype/data_import/data_import.js | 2 +- frappe/core/doctype/doctype/doctype.py | 12 +- frappe/geo/doctype/country/country.json | 367 ++-- frappe/geo/doctype/currency/currency.json | 613 +++--- 6 files changed, 2059 insertions(+), 1973 deletions(-) diff --git a/frappe/contacts/doctype/address/address.json b/frappe/contacts/doctype/address/address.json index 975aae0682..1f7e09d66e 100644 --- a/frappe/contacts/doctype/address/address.json +++ b/frappe/contacts/doctype/address/address.json @@ -1,724 +1,743 @@ { - "allow_copy": 0, - "allow_guest_to_view": 0, - "allow_import": 1, - "allow_rename": 1, - "beta": 0, - "creation": "2013-01-10 16:34:32", - "custom": 0, - "docstatus": 0, - "doctype": "DocType", - "document_type": "Setup", - "editable_grid": 0, + "allow_copy": 0, + "allow_guest_to_view": 0, + "allow_import": 1, + "allow_rename": 1, + "beta": 0, + "creation": "2013-01-10 16:34:32", + "custom": 0, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "editable_grid": 0, "fields": [ { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "address_details", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "", - "length": 0, - "no_copy": 0, - "options": "fa fa-map-marker", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "address_details", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "", + "length": 0, + "no_copy": 0, + "options": "fa fa-map-marker", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "description": "", - "fieldname": "address_title", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Address Title", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "description": "", + "fieldname": "address_title", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Address Title", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "address_type", - "fieldtype": "Select", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_standard_filter": 1, - "label": "Address Type", - "length": 0, - "no_copy": 0, - "options": "Billing\nShipping\nOffice\nPersonal\nPlant\nPostal\nShop\nSubsidiary\nWarehouse\nCurrent\nPermanent\nOther", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "address_type", + "fieldtype": "Select", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 1, + "label": "Address Type", + "length": 0, + "no_copy": 0, + "options": "Billing\nShipping\nOffice\nPersonal\nPlant\nPostal\nShop\nSubsidiary\nWarehouse\nCurrent\nPermanent\nOther", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "address_line1", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Address Line 1", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "address_line1", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Address Line 1", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "address_line2", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Address Line 2", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "address_line2", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Address Line 2", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "city", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 1, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "City/Town", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 1, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "city", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 1, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "City/Town", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 1, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "county", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "County", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "county", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "County", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "state", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "State", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "state", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "State", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "country", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 1, - "in_list_view": 0, - "in_standard_filter": 1, - "label": "Country", - "length": 0, - "no_copy": 0, - "options": "Country", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 1, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "country", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 1, + "in_list_view": 0, + "in_standard_filter": 1, + "label": "Country", + "length": 0, + "no_copy": 0, + "options": "Country", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 1, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "pincode", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Postal Code", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 1, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "pincode", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Postal Code", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 1, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "column_break0", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, - "unique": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "column_break0", + "fieldtype": "Column Break", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, + "unique": 0, "width": "50%" - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "email_id", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Email Address", - "length": 0, - "no_copy": 0, - "options": "Email", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "email_id", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Email Address", + "length": 0, + "no_copy": 0, + "options": "Email", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "phone", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Phone", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "phone", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Phone", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "fax", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Fax", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "fax", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Fax", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "default": "0", - "description": "", - "fieldname": "is_primary_address", - "fieldtype": "Check", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Preferred Billing Address", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "default": "0", + "description": "", + "fieldname": "is_primary_address", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Preferred Billing Address", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "default": "0", - "description": "", - "fieldname": "is_shipping_address", - "fieldtype": "Check", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Preferred Shipping Address", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "default": "0", + "description": "", + "fieldname": "is_shipping_address", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Preferred Shipping Address", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "linked_with", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Reference", - "length": 0, - "no_copy": 0, - "options": "fa fa-pushpin", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "linked_with", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Reference", + "length": 0, + "no_copy": 0, + "options": "fa fa-pushpin", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "default": "0", - "fieldname": "is_your_company_address", - "fieldtype": "Check", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Is Your Company Address", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "default": "0", + "fieldname": "is_your_company_address", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Is Your Company Address", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "links", - "fieldtype": "Table", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Links", - "length": 0, - "no_copy": 0, - "options": "Dynamic Link", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "translatable": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "links", + "fieldtype": "Table", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Links", + "length": 0, + "no_copy": 0, + "options": "Dynamic Link", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 } - ], - "has_web_view": 0, - "hide_heading": 0, - "hide_toolbar": 0, - "icon": "fa fa-map-marker", - "idx": 5, - "image_view": 0, - "in_create": 0, - "is_submittable": 0, - "issingle": 0, - "istable": 0, - "max_attachments": 0, - "modified": "2018-06-29 23:48:41.515118", - "modified_by": "Administrator", - "module": "Contacts", - "name": "Address", - "name_case": "Title Case", - "owner": "Administrator", + ], + "has_web_view": 0, + "hide_heading": 0, + "hide_toolbar": 0, + "icon": "fa fa-map-marker", + "idx": 5, + "image_view": 0, + "in_create": 0, + "is_submittable": 0, + "issingle": 0, + "istable": 0, + "max_attachments": 0, + "modified": "2018-08-29 06:24:53.192890", + "modified_by": "Administrator", + "module": "Contacts", + "name": "Address", + "name_case": "Title Case", + "owner": "Administrator", "permissions": [ { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Sales User", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Sales User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Purchase User", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Purchase User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Maintenance User", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Maintenance User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Accounts User", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Accounts User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, + "write": 1 + }, + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 1, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "set_user_permissions": 1, + "share": 1, + "submit": 0, "write": 1 } - ], - "quick_entry": 0, - "read_only": 0, - "read_only_onload": 0, - "search_fields": "country, state", - "show_name_in_global_search": 0, - "sort_field": "modified", - "sort_order": "DESC", - "track_changes": 0, - "track_seen": 0, + ], + "quick_entry": 0, + "read_only": 0, + "read_only_onload": 0, + "search_fields": "country, state", + "show_name_in_global_search": 0, + "sort_field": "modified", + "sort_order": "DESC", + "track_changes": 0, + "track_seen": 0, "track_views": 0 } \ No newline at end of file diff --git a/frappe/contacts/doctype/contact/contact.json b/frappe/contacts/doctype/contact/contact.json index d40866b290..488cd1a67a 100644 --- a/frappe/contacts/doctype/contact/contact.json +++ b/frappe/contacts/doctype/contact/contact.json @@ -1,894 +1,923 @@ { - "allow_copy": 0, - "allow_guest_to_view": 0, - "allow_import": 1, - "allow_rename": 1, - "beta": 0, - "creation": "2013-01-10 16:34:32", - "custom": 0, - "docstatus": 0, - "doctype": "DocType", - "document_type": "Setup", - "editable_grid": 0, - "engine": "InnoDB", + "allow_copy": 0, + "allow_guest_to_view": 0, + "allow_import": 1, + "allow_rename": 1, + "beta": 0, + "creation": "2013-01-10 16:34:32", + "custom": 0, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "editable_grid": 0, + "engine": "InnoDB", "fields": [ { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "contact_section", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "", - "length": 0, - "no_copy": 0, - "options": "fa fa-user", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "contact_section", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "", + "length": 0, + "no_copy": 0, + "options": "fa fa-user", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "first_name", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 1, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "First Name", - "length": 0, - "no_copy": 0, - "oldfieldname": "first_name", - "oldfieldtype": "Data", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "first_name", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 1, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "First Name", + "length": 0, + "no_copy": 0, + "oldfieldname": "first_name", + "oldfieldtype": "Data", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 1, - "collapsible": 0, - "columns": 0, - "fieldname": "last_name", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Last Name", - "length": 0, - "no_copy": 0, - "oldfieldname": "last_name", - "oldfieldtype": "Data", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 1, + "collapsible": 0, + "columns": 0, + "fieldname": "last_name", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Last Name", + "length": 0, + "no_copy": 0, + "oldfieldname": "last_name", + "oldfieldtype": "Data", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 1, - "collapsible": 0, - "columns": 0, - "fieldname": "email_id", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 1, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Email Address", - "length": 0, - "no_copy": 0, - "oldfieldname": "email_id", - "oldfieldtype": "Data", - "options": "Email", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 1, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 1, + "collapsible": 0, + "columns": 0, + "fieldname": "email_id", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 1, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Email Address", + "length": 0, + "no_copy": 0, + "oldfieldname": "email_id", + "oldfieldtype": "Data", + "options": "Email", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 1, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "user", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 1, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "User Id", - "length": 0, - "no_copy": 0, - "options": "User", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "user", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 1, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "User Id", + "length": 0, + "no_copy": 0, + "options": "User", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "cb00", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "cb00", + "fieldtype": "Column Break", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "default": "Passive", - "fieldname": "status", - "fieldtype": "Select", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_standard_filter": 1, - "label": "Status", - "length": 0, - "no_copy": 0, - "options": "Passive\nOpen\nReplied", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "default": "Passive", + "fieldname": "status", + "fieldtype": "Select", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 1, + "label": "Status", + "length": 0, + "no_copy": 0, + "options": "Passive\nOpen\nReplied", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "salutation", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Salutation", - "length": 0, - "no_copy": 0, - "options": "Salutation", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "salutation", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Salutation", + "length": 0, + "no_copy": 0, + "options": "Salutation", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "gender", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Gender", - "length": 0, - "no_copy": 0, - "options": "Gender", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "gender", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Gender", + "length": 0, + "no_copy": 0, + "options": "Gender", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 1, - "collapsible": 0, - "columns": 0, - "fieldname": "phone", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Phone", - "length": 0, - "no_copy": 0, - "oldfieldname": "contact_no", - "oldfieldtype": "Data", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 1, + "collapsible": 0, + "columns": 0, + "fieldname": "phone", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Phone", + "length": 0, + "no_copy": 0, + "oldfieldname": "contact_no", + "oldfieldtype": "Data", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 1, - "collapsible": 0, - "columns": 0, - "fieldname": "mobile_no", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 1, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Mobile No", - "length": 0, - "no_copy": 0, - "oldfieldname": "mobile_no", - "oldfieldtype": "Data", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 1, + "collapsible": 0, + "columns": 0, + "fieldname": "mobile_no", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 1, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Mobile No", + "length": 0, + "no_copy": 0, + "oldfieldname": "mobile_no", + "oldfieldtype": "Data", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "image", - "fieldtype": "Attach Image", - "hidden": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Image", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 1, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "image", + "fieldtype": "Attach Image", + "hidden": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Image", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 1, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "contact_details", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Reference", - "length": 0, - "no_copy": 0, - "options": "fa fa-pushpin", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "contact_details", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Reference", + "length": 0, + "no_copy": 0, + "options": "fa fa-pushpin", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "default": "0", - "depends_on": "", - "fieldname": "is_primary_contact", - "fieldtype": "Check", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Is Primary Contact", - "length": 0, - "no_copy": 0, - "oldfieldname": "is_primary_contact", - "oldfieldtype": "Select", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "default": "0", + "depends_on": "", + "fieldname": "is_primary_contact", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Is Primary Contact", + "length": 0, + "no_copy": 0, + "oldfieldname": "is_primary_contact", + "oldfieldtype": "Select", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "links", - "fieldtype": "Table", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Links", - "length": 0, - "no_copy": 0, - "options": "Dynamic Link", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "links", + "fieldtype": "Table", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Links", + "length": 0, + "no_copy": 0, + "options": "Dynamic Link", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "more_info", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "More Information", - "length": 0, - "no_copy": 0, - "options": "fa fa-file-text", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "more_info", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "More Information", + "length": 0, + "no_copy": 0, + "options": "fa fa-file-text", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "description": "", - "fieldname": "department", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Department", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "description": "", + "fieldname": "department", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Department", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "description": "", - "fieldname": "designation", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Designation", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "description": "", + "fieldname": "designation", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Designation", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "column_break_17", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "column_break_17", + "fieldtype": "Column Break", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "unsubscribed", - "fieldtype": "Check", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Unsubscribed", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "unsubscribed", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Unsubscribed", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 } - ], - "has_web_view": 0, - "hide_heading": 0, - "hide_toolbar": 0, - "icon": "fa fa-user", - "idx": 1, - "image_field": "image", - "image_view": 0, - "in_create": 0, - "is_submittable": 0, - "issingle": 0, - "istable": 0, - "max_attachments": 0, - "modified": "2017-06-21 17:17:44.694188", - "modified_by": "Administrator", - "module": "Contacts", - "name": "Contact", - "name_case": "Title Case", - "owner": "Administrator", + ], + "has_web_view": 0, + "hide_heading": 0, + "hide_toolbar": 0, + "icon": "fa fa-user", + "idx": 1, + "image_field": "image", + "image_view": 0, + "in_create": 0, + "is_submittable": 0, + "issingle": 0, + "istable": 0, + "max_attachments": 0, + "modified": "2018-08-29 06:24:58.902664", + "modified_by": "Administrator", + "module": "Contacts", + "name": "Contact", + "name_case": "Title Case", + "owner": "Administrator", "permissions": [ { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "System Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 1, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "set_user_permissions": 1, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Sales Master Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Sales Master Manager", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Purchase Master Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Purchase Master Manager", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Sales Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Sales Manager", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Purchase Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Purchase Manager", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Maintenance Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Maintenance Manager", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Accounts Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Accounts Manager", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Sales User", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Sales User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Purchase User", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Purchase User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Maintenance User", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Maintenance User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Accounts User", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Accounts User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "match": "", - "permlevel": 1, - "print": 0, - "read": 1, - "report": 1, - "role": "All", - "set_user_permissions": 0, - "share": 0, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 0, + "delete": 0, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "match": "", + "permlevel": 1, + "print": 0, + "read": 1, + "report": 1, + "role": "All", + "set_user_permissions": 0, + "share": 0, + "submit": 0, "write": 0 } - ], - "quick_entry": 0, - "read_only": 0, - "read_only_onload": 0, - "show_name_in_global_search": 0, - "sort_order": "ASC", - "track_changes": 0, - "track_seen": 0 + ], + "quick_entry": 0, + "read_only": 0, + "read_only_onload": 0, + "show_name_in_global_search": 0, + "sort_order": "ASC", + "track_changes": 0, + "track_seen": 0, + "track_views": 0 } \ No newline at end of file diff --git a/frappe/core/doctype/data_import/data_import.js b/frappe/core/doctype/data_import/data_import.js index 3366a40190..a800e677cf 100644 --- a/frappe/core/doctype/data_import/data_import.js +++ b/frappe/core/doctype/data_import/data_import.js @@ -37,7 +37,7 @@ frappe.ui.form.on('Data Import', { frm.disable_save(); frm.dashboard.clear_headline(); if (frm.doc.reference_doctype && !frm.doc.import_file) { - frm.page.set_indicator(__('Please attach a file to import'), 'orange'); + frm.page.set_indicator(__('Attach file'), 'orange'); } else { if (frm.doc.import_status) { const listview_settings = frappe.listview_settings['Data Import']; diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index c5bd1fe78d..f0001ca3e1 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -199,12 +199,12 @@ class DocType(Document): """Strip options for whitespaces""" for field in self.fields: if field.fieldtype == "Select" and field.options is not None: - new_options = "" - for option in field.options.split("\n"): - new_options += option.strip() - new_options += "\n" - new_options.rstrip("\n") - field.options = new_options + options_list = [] + for i, option in enumerate(field.options.split("\n")): + _option = option.strip() + if i==0 or _option: + options_list.append(_option) + field.options = '\n'.join(options_list) def validate_series(self, autoname=None, name=None): """Validate if `autoname` property is correctly set.""" diff --git a/frappe/geo/doctype/country/country.json b/frappe/geo/doctype/country/country.json index 7c813e4b91..37bcbfdaf5 100644 --- a/frappe/geo/doctype/country/country.json +++ b/frappe/geo/doctype/country/country.json @@ -1,193 +1,208 @@ { - "allow_copy": 0, - "allow_import": 1, - "allow_rename": 1, - "autoname": "field:country_name", - "beta": 0, - "creation": "2013-01-19 10:23:30", - "custom": 0, - "docstatus": 0, - "doctype": "DocType", - "document_type": "Setup", - "editable_grid": 0, + "allow_copy": 0, + "allow_guest_to_view": 0, + "allow_import": 1, + "allow_rename": 1, + "autoname": "field:country_name", + "beta": 0, + "creation": "2013-01-19 10:23:30", + "custom": 0, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "editable_grid": 0, "fields": [ { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "country_name", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Country Name", - "length": 0, - "no_copy": 0, - "oldfieldname": "country_name", - "oldfieldtype": "Data", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "unique": 0 - }, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "country_name", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Country Name", + "length": 0, + "no_copy": 0, + "oldfieldname": "country_name", + "oldfieldtype": "Data", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, + "unique": 1 + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "date_format", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Date Format", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "date_format", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Date Format", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "time_zones", - "fieldtype": "Text", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Time Zones", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "time_zones", + "fieldtype": "Text", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Time Zones", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "code", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Code", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "code", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Code", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 } - ], - "hide_heading": 0, - "hide_toolbar": 0, - "icon": "fa fa-globe", - "idx": 1, - "image_view": 0, - "in_create": 0, - - "is_submittable": 0, - "issingle": 0, - "istable": 0, - "max_attachments": 0, - "menu_index": 0, - "modified": "2016-12-29 14:40:34.951894", - "modified_by": "Administrator", - "module": "Geo", - "name": "Country", - "owner": "Administrator", + ], + "has_web_view": 0, + "hide_heading": 0, + "hide_toolbar": 0, + "icon": "fa fa-globe", + "idx": 1, + "image_view": 0, + "in_create": 0, + "is_submittable": 0, + "issingle": 0, + "istable": 0, + "max_attachments": 0, + "menu_index": 0, + "modified": "2018-08-29 06:37:32.303570", + "modified_by": "Administrator", + "module": "Geo", + "name": "Country", + "owner": "Administrator", "permissions": [ { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "is_custom": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "System Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 1, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "set_user_permissions": 1, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "is_custom": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "All", - "set_user_permissions": 0, - "share": 0, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 0, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "All", + "set_user_permissions": 0, + "share": 0, + "submit": 0, "write": 0 } - ], - "quick_entry": 1, - "read_only": 0, - "read_only_onload": 0, - "sort_field": "country_name", - "sort_order": "ASC", - "track_changes": 1, - "track_seen": 0 + ], + "quick_entry": 1, + "read_only": 0, + "read_only_onload": 0, + "show_name_in_global_search": 0, + "sort_field": "country_name", + "sort_order": "ASC", + "track_changes": 1, + "track_seen": 0, + "track_views": 0 } \ No newline at end of file diff --git a/frappe/geo/doctype/currency/currency.json b/frappe/geo/doctype/currency/currency.json index 0fce99cfa3..bb9abb7ce8 100644 --- a/frappe/geo/doctype/currency/currency.json +++ b/frappe/geo/doctype/currency/currency.json @@ -1,322 +1,345 @@ { - "allow_copy": 0, - "allow_import": 0, - "allow_rename": 0, - "autoname": "field:currency_name", - "beta": 0, - "creation": "2013-01-28 10:06:02", - "custom": 0, - "description": "**Currency** Master", - "docstatus": 0, - "doctype": "DocType", - "document_type": "Setup", - "editable_grid": 0, + "allow_copy": 0, + "allow_guest_to_view": 0, + "allow_import": 1, + "allow_rename": 1, + "autoname": "field:currency_name", + "beta": 0, + "creation": "2013-01-28 10:06:02", + "custom": 0, + "description": "**Currency** Master", + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "editable_grid": 0, "fields": [ { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "currency_name", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Currency Name", - "length": 0, - "no_copy": 0, - "oldfieldname": "currency_name", - "oldfieldtype": "Data", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "unique": 0 - }, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "currency_name", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Currency Name", + "length": 0, + "no_copy": 0, + "oldfieldname": "currency_name", + "oldfieldtype": "Data", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, + "unique": 1 + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "enabled", - "fieldtype": "Check", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Enabled", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "enabled", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Enabled", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "description": "Sub-currency. For e.g. \"Cent\"", - "fieldname": "fraction", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Fraction", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "description": "Sub-currency. For e.g. \"Cent\"", + "fieldname": "fraction", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Fraction", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "description": "1 Currency = [?] Fraction\nFor e.g. 1 USD = 100 Cent", - "fieldname": "fraction_units", - "fieldtype": "Int", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Fraction Units", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "description": "1 Currency = [?] Fraction\nFor e.g. 1 USD = 100 Cent", + "fieldname": "fraction_units", + "fieldtype": "Int", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Fraction Units", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "description": "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01", - "fieldname": "smallest_currency_fraction_value", - "fieldtype": "Currency", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 0, - "in_standard_filter": 0, - "label": "Smallest Currency Fraction Value", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "description": "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01", + "fieldname": "smallest_currency_fraction_value", + "fieldtype": "Currency", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Smallest Currency Fraction Value", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "description": "A symbol for this currency. For e.g. $", - "fieldname": "symbol", - "fieldtype": "Data", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Symbol", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "description": "A symbol for this currency. For e.g. $", + "fieldname": "symbol", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Symbol", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "description": "How should this currency be formatted? If not set, will use system defaults", - "fieldname": "number_format", - "fieldtype": "Select", - "hidden": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_list_view": 1, - "in_standard_filter": 0, - "label": "Number Format", - "length": 0, - "no_copy": 0, - "options": "\n#,###.##\n#.###,##\n# ###.##\n# ###,##\n#'###.##\n#, ###.##\n#,##,###.##\n#,###.###\n#.###\n#,###", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "description": "How should this currency be formatted? If not set, will use system defaults", + "fieldname": "number_format", + "fieldtype": "Select", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "label": "Number Format", + "length": 0, + "no_copy": 0, + "options": "\n#,###.##\n#.###,##\n# ###.##\n# ###,##\n#'###.##\n#, ###.##\n#,##,###.##\n#,###.###\n#.###\n#,###", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "translatable": 0, "unique": 0 } - ], - "hide_heading": 0, - "hide_toolbar": 0, - "icon": "fa fa-bitcoin", - "idx": 1, - "image_view": 0, - "in_create": 0, - - "is_submittable": 0, - "issingle": 0, - "istable": 0, - "max_attachments": 0, - "modified": "2016-12-29 14:40:39.187557", - "modified_by": "Administrator", - "module": "Geo", - "name": "Currency", - "owner": "Administrator", + ], + "has_web_view": 0, + "hide_heading": 0, + "hide_toolbar": 0, + "icon": "fa fa-bitcoin", + "idx": 1, + "image_view": 0, + "in_create": 0, + "is_submittable": 0, + "issingle": 0, + "istable": 0, + "max_attachments": 0, + "modified": "2018-08-29 06:37:19.908254", + "modified_by": "Administrator", + "module": "Geo", + "name": "Currency", + "owner": "Administrator", "permissions": [ { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "is_custom": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "System Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 1, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "set_user_permissions": 0, + "share": 1, + "submit": 0, "write": 1 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "is_custom": 0, - "permlevel": 0, - "print": 0, - "read": 1, - "report": 0, - "role": "Accounts User", - "set_user_permissions": 0, - "share": 0, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 0, + "delete": 0, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 0, + "read": 1, + "report": 0, + "role": "Accounts User", + "set_user_permissions": 0, + "share": 0, + "submit": 0, "write": 0 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "is_custom": 0, - "permlevel": 0, - "print": 0, - "read": 1, - "report": 0, - "role": "Sales User", - "set_user_permissions": 0, - "share": 0, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 0, + "delete": 0, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 0, + "read": 1, + "report": 0, + "role": "Sales User", + "set_user_permissions": 0, + "share": 0, + "submit": 0, "write": 0 - }, + }, { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "is_custom": 0, - "permlevel": 0, - "print": 0, - "read": 1, - "report": 0, - "role": "Purchase User", - "set_user_permissions": 0, - "share": 0, - "submit": 0, + "amend": 0, + "cancel": 0, + "create": 0, + "delete": 0, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 0, + "read": 1, + "report": 0, + "role": "Purchase User", + "set_user_permissions": 0, + "share": 0, + "submit": 0, "write": 0 } - ], - "quick_entry": 0, - "read_only": 0, - "read_only_onload": 0, - "sort_order": "DESC", - "track_changes": 1, - "track_seen": 0 + ], + "quick_entry": 0, + "read_only": 0, + "read_only_onload": 0, + "show_name_in_global_search": 0, + "sort_order": "DESC", + "track_changes": 1, + "track_seen": 0, + "track_views": 0 } \ No newline at end of file From a19f7beb3945d713d6651beb977d59be114f11df Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 29 Aug 2018 17:30:27 +0530 Subject: [PATCH 16/89] ux: mandatory red in data import, export --- .../core/doctype/data_export/data_export.js | 3 +- .../core/doctype/data_import/data_import.js | 32 +++++++++---------- .../js/frappe/form/controls/multicheck.js | 6 +++- 3 files changed, 22 insertions(+), 19 deletions(-) diff --git a/frappe/core/doctype/data_export/data_export.js b/frappe/core/doctype/data_export/data_export.js index 2e740ae4b8..f195e79119 100644 --- a/frappe/core/doctype/data_export/data_export.js +++ b/frappe/core/doctype/data_export/data_export.js @@ -144,8 +144,9 @@ const add_doctype_field_multicheck_control = (doctype, parent_wrapper) => { const options = fields .map(df => { return { - label: df.label + (df.reqd ? ' (M)' : ''), + label: df.label, value: df.fieldname, + danger: df.reqd, checked: 1 }; }); diff --git a/frappe/core/doctype/data_import/data_import.js b/frappe/core/doctype/data_import/data_import.js index a800e677cf..de4ab8a514 100644 --- a/frappe/core/doctype/data_import/data_import.js +++ b/frappe/core/doctype/data_import/data_import.js @@ -147,24 +147,22 @@ frappe.data_import.download_dialog = function(frm) { const filter_fields = df => frappe.model.is_value_type(df) && !df.hidden; const get_fields = dt => frappe.meta.get_docfields(dt).filter(filter_fields); - const get_doctypes = parentdt => { - return [parentdt].concat( - frappe.meta.get_table_fields(parentdt).map(df => df.options) - ); - }; - const get_doctype_checkbox_fields = () => { return dialog.fields.filter(df => df.fieldname.endsWith('_fields')) .map(df => dialog.fields_dict[df.fieldname]); }; const doctype_fields = get_fields(frm.doc.reference_doctype) - .map(df => ({ - label: df.label + ((df.reqd || df.fieldname == 'naming_series') ? ' (M)' : ''), - reqd: (df.reqd || df.fieldname == 'naming_series') ? 1 : 0, - value: df.fieldname, - checked: 1 - })); + .map(df => { + let reqd = (df.reqd || df.fieldname == 'naming_series') ? 1 : 0; + return { + label: df.label, + reqd: reqd, + danger: reqd, + value: df.fieldname, + checked: 1 + }; + }); let fields = [ { @@ -176,15 +174,14 @@ frappe.data_import.download_dialog = function(frm) { "onchange": function() { const fields = get_doctype_checkbox_fields(); fields.map(f => f.toggle(true)); - if(this.value == 'Mandatory') { + if(this.value == 'Mandatory' || this.value == 'Manually') { checkbox_toggle(true); fields.map(multicheck_field => { multicheck_field.options.map(option => { if(!option.reqd) return; $(multicheck_field.$wrapper).find(`:checkbox[data-unit="${option.value}"]`) .prop('checked', false) - .trigger('click') - .prop('disabled', true); + .trigger('click'); }); }); } else if(this.value == 'All'){ @@ -237,10 +234,11 @@ frappe.data_import.download_dialog = function(frm) { "options": frappe.meta.get_docfields(df.options) .filter(filter_fields) .map(df => ({ - label: df.label + (df.reqd ? ' (M)' : ''), + label: df.label, reqd: df.reqd ? 1 : 0, value: df.fieldname, - checked: 1 + checked: 1, + danger: df.reqd })), "columns": 2, "hidden": 1 diff --git a/frappe/public/js/frappe/form/controls/multicheck.js b/frappe/public/js/frappe/form/controls/multicheck.js index e09ca8f94f..35e1a1a19b 100644 --- a/frappe/public/js/frappe/form/controls/multicheck.js +++ b/frappe/public/js/frappe/form/controls/multicheck.js @@ -26,6 +26,7 @@ frappe.ui.form.ControlMultiCheck = frappe.ui.form.Control.extend({ this.select_options(this.selected_options); }, + set_options() { this.$load_state.show(); this.$select_buttons.hide(); @@ -65,7 +66,10 @@ frappe.ui.form.ControlMultiCheck = frappe.ui.form.Control.extend({ this.$load_state.hide(); this.$checkbox_area.empty(); this.options.forEach(option => { - this.get_checkbox_element(option).appendTo(this.$checkbox_area); + let checkbox = this.get_checkbox_element(option).appendTo(this.$checkbox_area); + if (option.danger) { + checkbox.find('.label-area').addClass('text-danger'); + } }); if(this.df.select_all) { this.setup_select_all(); From 5944ba312a4aac823ea903af0e0a706a23321d9c Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 30 Aug 2018 09:22:26 +0530 Subject: [PATCH 17/89] ux(quick-entry): allow any length --- frappe/public/js/frappe/form/grid.js | 4 ++-- frappe/public/js/frappe/form/quick_entry.js | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index 073b140887..738d3fd050 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -366,11 +366,11 @@ export default class Grid { return data; } get_modal_data() { - return this.df.get_data().filter(data => { + return this.df.get_data ? this.df.get_data().filter(data => { if (!this.deleted_docs || !in_list(this.deleted_docs, data.name)) { return data; } - }); + }) : []; } set_column_disp(fieldname, show) { if($.isArray(fieldname)) { diff --git a/frappe/public/js/frappe/form/quick_entry.js b/frappe/public/js/frappe/form/quick_entry.js index 6539140cfc..e733b3dda6 100644 --- a/frappe/public/js/frappe/form/quick_entry.js +++ b/frappe/public/js/frappe/form/quick_entry.js @@ -60,10 +60,10 @@ frappe.ui.form.QuickEntryForm = Class.extend({ this.validate_for_prompt_autoname(); - if (this.too_many_mandatory_fields() || this.has_child_table() - || !this.mandatory.length) { - return false; - } + // if (this.too_many_mandatory_fields() || this.has_child_table() + // || !this.mandatory.length) { + // return false; + // } return true; }, @@ -212,7 +212,7 @@ frappe.ui.form.QuickEntryForm = Class.extend({ render_edit_in_full_page_link: function(){ var me = this; - var $link = $('
' + + var $link = $('
' + '
').appendTo(this.dialog.body); $link.find('.edit-full').on('click', function() { From 22934b4e8ccfcca0a29fe7d41d0fc17906a2dc55 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 30 Aug 2018 10:27:52 +0530 Subject: [PATCH 18/89] fix(translate): #5906 via CodeTriage --- frappe/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/translate.py b/frappe/translate.py index 800aa85f01..e92ab271eb 100644 --- a/frappe/translate.py +++ b/frappe/translate.py @@ -507,7 +507,7 @@ def extract_messages_from_code(code, is_py=False): :param code: code from which translatable files are to be extracted :param is_py: include messages in triple quotes e.g. `_('''message''')`""" try: - code = render_include(code) + code = frappe.as_unicode(render_include(code)) except (TemplateError, ImportError, InvalidIncludePath): # Exception will occur when it encounters John Resig's microtemplating code pass From 9bd558758352908d138756071af6a613dadb2023 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 30 Aug 2018 10:35:19 +0530 Subject: [PATCH 19/89] readme: codetriage badge --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 66143d801b..b67e333f5e 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,13 @@ + + +
+ + Full-stack web application framework that uses Python and MariaDB on the server side and a tightly integrated client side library. Built for [ERPNext](https://erpnext.com) ### Table of Contents From 00fc9c9b1c501f1858e61426efd6c0b6112dfd91 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 30 Aug 2018 12:16:10 +0530 Subject: [PATCH 20/89] fix(fetch): fetch_from will always update after save --- frappe/model/base_document.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 1ff5fc0d0f..fe2165974c 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -451,10 +451,10 @@ class BaseDocument(object): # get a map of values ot fetch along with this link query # that are mapped as link_fieldname.source_fieldname in Options of # Readonly or Data or Text type fields - fields_to_fetch = [ - _df for _df in self.meta.get_fields_to_fetch(df.fieldname) - if not self.get(_df.fieldname) - ] + + # NOTE: All fields will be replaced, if you want manual changes to stay + # use `frm.add_fetch` + fields_to_fetch = self.meta.get_fields_to_fetch(df.fieldname) if not fields_to_fetch: # cache a single value type From b66d3fe37ca5e3acf37b970be991c5e799b48b37 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Thu, 30 Aug 2018 16:32:09 +0530 Subject: [PATCH 21/89] On assignment notification is not send to the assigned user --- frappe/desk/form/assign_to.py | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/frappe/desk/form/assign_to.py b/frappe/desk/form/assign_to.py index f13f853636..621de8f260 100644 --- a/frappe/desk/form/assign_to.py +++ b/frappe/desk/form/assign_to.py @@ -163,4 +163,30 @@ def notify_assignment(assigned_by, owner, doc_type, doc_name, action='CLOSE', 'notify': notify } - arg["parenttype"] = "Assignment" \ No newline at end of file + if arg and arg.get("notify"): + _notify(arg) + +def _notify(args): + from frappe.utils import get_fullname, get_url + + args = frappe._dict(args) + contact = args.contact + txt = args.txt + + try: + if not isinstance(contact, list): + contact = [frappe.db.get_value("User", contact, "email") or contact] + + frappe.sendmail(\ + recipients=contact, + sender= frappe.db.get_value("User", frappe.session.user, "email"), + subject=_("New Message from {0}").format(get_fullname(frappe.session.user)), + template="new_message", + args={ + "from": get_fullname(frappe.session.user), + "message": txt, + "link": get_url() + }, + header=[_('New Message'), 'orange']) + except frappe.OutgoingEmailError: + pass \ No newline at end of file From 624703d1b906dd056739c6d70af2e6673ce49231 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 30 Aug 2018 18:23:06 +0530 Subject: [PATCH 22/89] minor: mapping now takes optional args --- frappe/model/mapper.py | 5 ++++- frappe/public/js/frappe/form/layout.js | 2 +- frappe/public/js/frappe/form/quick_entry.js | 8 ++++---- frappe/public/js/frappe/model/create_new.js | 1 + frappe/public/js/frappe/ui/toolbar/search.js | 10 +++++++--- 5 files changed, 17 insertions(+), 9 deletions(-) diff --git a/frappe/model/mapper.py b/frappe/model/mapper.py index 8c089f4878..273a3af6fc 100644 --- a/frappe/model/mapper.py +++ b/frappe/model/mapper.py @@ -9,7 +9,7 @@ from frappe.model import default_fields from six import string_types @frappe.whitelist() -def make_mapped_doc(method, source_name, selected_children=None): +def make_mapped_doc(method, source_name, selected_children=None, args=None): '''Returns the mapped document calling the given mapper method. Sets selected_children as flags for the `get_mapped_doc` method. @@ -22,6 +22,9 @@ def make_mapped_doc(method, source_name, selected_children=None): if selected_children: selected_children = json.loads(selected_children) + if args: + frappe.flags.args = frappe._dict(json.loads(args)) + frappe.flags.selected_children = selected_children or None return method(source_name) diff --git a/frappe/public/js/frappe/form/layout.js b/frappe/public/js/frappe/form/layout.js index 0f06b67ae1..da4a00fd6d 100644 --- a/frappe/public/js/frappe/form/layout.js +++ b/frappe/public/js/frappe/form/layout.js @@ -316,7 +316,7 @@ frappe.ui.form.Layout = Class.extend({ fieldobj.perm = me.frm.perm; } } - refresh && fieldobj.refresh && fieldobj.refresh(); + refresh && fieldobj.df && fieldobj.refresh && fieldobj.refresh(); } }, diff --git a/frappe/public/js/frappe/form/quick_entry.js b/frappe/public/js/frappe/form/quick_entry.js index e733b3dda6..e7857c3bf7 100644 --- a/frappe/public/js/frappe/form/quick_entry.js +++ b/frappe/public/js/frappe/form/quick_entry.js @@ -60,10 +60,10 @@ frappe.ui.form.QuickEntryForm = Class.extend({ this.validate_for_prompt_autoname(); - // if (this.too_many_mandatory_fields() || this.has_child_table() - // || !this.mandatory.length) { - // return false; - // } + if (this.has_child_table() + || !this.mandatory.length) { + return false; + } return true; }, diff --git a/frappe/public/js/frappe/model/create_new.js b/frappe/public/js/frappe/model/create_new.js index 7878c99fac..275f23c1c8 100644 --- a/frappe/public/js/frappe/model/create_new.js +++ b/frappe/public/js/frappe/model/create_new.js @@ -301,6 +301,7 @@ $.extend(frappe.model, { args: { method: opts.method, source_name: opts.source_name, + args: opts.args || null, selected_children: opts.frm ? opts.frm.get_selected() : null }, freeze: true, diff --git a/frappe/public/js/frappe/ui/toolbar/search.js b/frappe/public/js/frappe/ui/toolbar/search.js index dec4f38795..f5c7714179 100644 --- a/frappe/public/js/frappe/ui/toolbar/search.js +++ b/frappe/public/js/frappe/ui/toolbar/search.js @@ -288,9 +288,13 @@ frappe.search.SearchDialog = Class.extend({ } if(result.image) { - $result.append('
' + result.label + '
'); + $result.append('
' + result.label + '
'); } else if (result.image === null) { - $result.append('
'+ frappe.get_abbr(result.label) +'
'); + $result.append('
' + + frappe.get_abbr(result.label) +'
'); } var title_html = ''+ result.label +''; @@ -303,7 +307,7 @@ frappe.search.SearchDialog = Class.extend({ if(result.route_options) { frappe.route_options = result.route_options; } - $result_text.on('click', (e) => { + $result.on('click', (e) => { this.search_dialog.hide(); if(result.onclick) { result.onclick(result.match); From a302501752f9aefcd9189fbe3f3b65f844223485 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Thu, 30 Aug 2018 15:25:10 +0530 Subject: [PATCH 23/89] webform: render image in web form using setTimeout --- frappe/website/js/web_form_class.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frappe/website/js/web_form_class.js b/frappe/website/js/web_form_class.js index cfca46ebf6..8c1c80cd84 100644 --- a/frappe/website/js/web_form_class.js +++ b/frappe/website/js/web_form_class.js @@ -75,6 +75,14 @@ export default class WebForm { if(doc) { this.field_group.set_values(doc); } + + setTimeout(() => { + this.field_group.fields_list.forEach((field_instance) => { + if (field_instance.df.fieldtype === "Attach" && field_instance.get_value().match(".(?:jpg|gif|jpeg|png)") ){ + field_instance.$input_wrapper.append(``); + } + }); + }, 500); } get_values() { From a583691d4efe604fd0ad5d5dabb6c10fd7324d3a Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Fri, 31 Aug 2018 10:52:54 +0530 Subject: [PATCH 24/89] fix(report view): Handle non-existing fields (#6036) --- frappe/public/js/frappe/views/reports/report_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/views/reports/report_view.js b/frappe/public/js/frappe/views/reports/report_view.js index 49e71eaee2..2b0214bd2d 100644 --- a/frappe/public/js/frappe/views/reports/report_view.js +++ b/frappe/public/js/frappe/views/reports/report_view.js @@ -719,7 +719,7 @@ frappe.views.ReportView = class ReportView extends frappe.views.ListView { setup_columns() { const hide_columns = ['docstatus']; const fields = this.fields.filter(f => !hide_columns.includes(f[0])); - this.columns = fields.map(f => this.build_column(f)); + this.columns = fields.map(f => this.build_column(f)).filter(Boolean); } build_column(c) { From 5c48571d65eee63199892481f3cef509e6552721 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Fri, 31 Aug 2018 14:55:32 +0530 Subject: [PATCH 25/89] feat: Add dashboard.show_progress - maps progress bars with titles - updates existing progress bars if it exists --- frappe/public/js/frappe/form/dashboard.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/frappe/public/js/frappe/form/dashboard.js b/frappe/public/js/frappe/form/dashboard.js index 3786a45f1c..dbbca3325e 100644 --- a/frappe/public/js/frappe/form/dashboard.js +++ b/frappe/public/js/frappe/form/dashboard.js @@ -90,6 +90,28 @@ frappe.ui.form.Dashboard = Class.extend({ } this.show(); + + return progress_chart; + }, + + 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); + this._progress_map[title] = progress_chart; + } + + let progress_chart = this._progress_map[title]; + + if (!$.isArray(percent)) { + percent = this.format_percent(title, percent); + } + + progress_chart.find('.progress-bar').each((i, progress_bar) => { + const width = percent[i].width; + $(progress_bar).css('width', width); + }); }, format_percent: function(title, percent) { From 7fa9d9352de4ab84b6cdf1d949f629e9f621e1c3 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Fri, 31 Aug 2018 15:11:17 +0530 Subject: [PATCH 26/89] fix: Update progress class on update --- frappe/public/js/frappe/form/dashboard.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/form/dashboard.js b/frappe/public/js/frappe/form/dashboard.js index dbbca3325e..d345ec0945 100644 --- a/frappe/public/js/frappe/form/dashboard.js +++ b/frappe/public/js/frappe/form/dashboard.js @@ -109,8 +109,10 @@ frappe.ui.form.Dashboard = Class.extend({ } progress_chart.find('.progress-bar').each((i, progress_bar) => { - const width = percent[i].width; - $(progress_bar).css('width', width); + const { progress_class, width } = percent[i]; + $(progress_bar).css('width', width) + .removeClass('progress-bar-danger progress-bar-success') + .addClass(progress_class); }); }, From 2a8e890fee47dc7f1f9c048beb0ab0d4ea0ce57f Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 31 Aug 2018 15:30:30 +0530 Subject: [PATCH 27/89] enhance(testing): allow tests to be run by skipping fixtures with --skip-before-tests and --skip-test-records --- frappe/commands/utils.py | 8 +++++++- frappe/test_runner.py | 15 ++++++++++----- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py index c6cddf54f8..6e13cc21e3 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -374,10 +374,13 @@ def console(context): @click.option('--ui-tests', is_flag=True, default=False, help="Run UI Tests") @click.option('--module', help="Run tests in a module") @click.option('--profile', is_flag=True, default=False) +@click.option('--skip-test-records', is_flag=True, default=False, help="Don't create test records") +@click.option('--skip-before-tests', is_flag=True, default=False, help="Don't run before tests hook") @click.option('--junit-xml-output', help="Destination file path for junit xml report") @pass_context def run_tests(context, app=None, module=None, doctype=None, test=(), - driver=None, profile=False, junit_xml_output=False, ui_tests = False, doctype_list_path=None): + driver=None, profile=False, junit_xml_output=False, ui_tests = False, + doctype_list_path=None, skip_test_records=False, skip_before_tests=False): "Run tests" import frappe.test_runner tests = test @@ -385,6 +388,9 @@ def run_tests(context, app=None, module=None, doctype=None, test=(), site = get_site(context) frappe.init(site=site) + frappe.flags.skip_before_tests = skip_before_tests + frappe.flags.skip_test_records = skip_test_records + ret = frappe.test_runner.main(app, module, doctype, context.verbose, tests=tests, force=context.force, profile=profile, junit_xml_output=junit_xml_output, ui_tests = ui_tests, doctype_list_path = doctype_list_path) diff --git a/frappe/test_runner.py b/frappe/test_runner.py index af66987f3b..29fbb2f649 100644 --- a/frappe/test_runner.py +++ b/frappe/test_runner.py @@ -25,7 +25,8 @@ def xmlrunner_wrapper(output): return _runner def main(app=None, module=None, doctype=None, verbose=False, tests=(), - force=False, profile=False, junit_xml_output=None, ui_tests=False, doctype_list_path=None): + force=False, profile=False, junit_xml_output=None, ui_tests=False, + doctype_list_path=None, skip_test_records=False): global unittest_runner if doctype_list_path: @@ -55,10 +56,11 @@ def main(app=None, module=None, doctype=None, verbose=False, tests=(), frappe.utils.scheduler.disable_scheduler() set_test_email_config() - if verbose: - print('Running "before_tests" hooks') - for fn in frappe.get_hooks("before_tests", app_name=app): - frappe.get_attr(fn)() + if not frappe.flags.skip_before_tests: + if verbose: + print('Running "before_tests" hooks') + for fn in frappe.get_hooks("before_tests", app_name=app): + frappe.get_attr(fn)() if doctype: ret = run_tests_for_doctype(doctype, verbose, tests, force, profile) @@ -243,6 +245,9 @@ def make_test_records(doctype, verbose=0, force=False): if not frappe.db: frappe.connect() + if frappe.flags.skip_test_records: + return + for options in get_dependencies(doctype): if options == "[Select]": continue From 6221bf2f159272d5bc588077b927fcdad198fc87 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Fri, 31 Aug 2018 10:12:26 +0000 Subject: [PATCH 28/89] web_form_class: using value instead of get_value --- frappe/website/js/web_form_class.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/website/js/web_form_class.js b/frappe/website/js/web_form_class.js index 8c1c80cd84..e9ee2db2fa 100644 --- a/frappe/website/js/web_form_class.js +++ b/frappe/website/js/web_form_class.js @@ -78,7 +78,8 @@ export default class WebForm { setTimeout(() => { this.field_group.fields_list.forEach((field_instance) => { - if (field_instance.df.fieldtype === "Attach" && field_instance.get_value().match(".(?:jpg|gif|jpeg|png)") ){ + let instance_value = field_instance.value; + if (instance_value != null && field_instance.df.fieldtype === "Attach" && instance_value.match(".(?:jpg|gif|jpeg|png)") ){ field_instance.$input_wrapper.append(``); } }); From 29156da481f7f45d65e11e438e39275c394a6b3e Mon Sep 17 00:00:00 2001 From: Aditya Hase Date: Fri, 31 Aug 2018 17:25:39 +0530 Subject: [PATCH 29/89] feat(dashboard progress): Add hide_progress, update progress-message --- frappe/public/js/frappe/form/dashboard.js | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/frappe/public/js/frappe/form/dashboard.js b/frappe/public/js/frappe/form/dashboard.js index d345ec0945..ff81d6bf36 100644 --- a/frappe/public/js/frappe/form/dashboard.js +++ b/frappe/public/js/frappe/form/dashboard.js @@ -85,9 +85,8 @@ frappe.ui.form.Dashboard = Class.extend({ title="%(title)s">', opts)).appendTo(progress); }); - if(message) { - $('

' + message + '

').appendTo(this.progress_area); - } + if (!message) message = ''; + $(`

${message}

`).appendTo(progress_chart); this.show(); @@ -96,24 +95,34 @@ 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); this._progress_map[title] = progress_chart; } - let progress_chart = this._progress_map[title]; - if (!$.isArray(percent)) { percent = this.format_percent(title, percent); } - progress_chart.find('.progress-bar').each((i, progress_bar) => { const { progress_class, width } = percent[i]; $(progress_bar).css('width', width) .removeClass('progress-bar-danger progress-bar-success') .addClass(progress_class); }); + + if (!message) message = ''; + progress_chart.find('.progress-message').text(message); + }, + + hide_progress: function(title) { + if (title){ + this._progress_map[title].remove(); + delete this._progress_map[title]; + } + else { + this._progress_map = {}; + this.progress_area.empty(); + } }, format_percent: function(title, percent) { From 505a55474ae476c9949b73178cbfdf4d33eda547 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sat, 1 Sep 2018 22:44:31 +0530 Subject: [PATCH 30/89] feat: Add is_subset utility --- frappe/utils/data.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frappe/utils/data.py b/frappe/utils/data.py index 59c5cd9c30..a5a0ab7684 100644 --- a/frappe/utils/data.py +++ b/frappe/utils/data.py @@ -964,3 +964,7 @@ def get_source_value(source, key): return source.get(key) else: return getattr(source, key) + +def is_subset(list_a, list_b): + '''Returns whether list_a is a subset of list_b''' + return len(list(set(list_a) & set(list_b))) == len(list_a) \ No newline at end of file From 3e5314b5211fc4f4fd629e778429b653904fd248 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Mon, 3 Sep 2018 10:55:33 +0530 Subject: [PATCH 31/89] [Translation] Updated Translations (#6043) --- frappe/translations/af.csv | 861 +++++++++++++++++-------------- frappe/translations/am.csv | 872 ++++++++++++++++--------------- frappe/translations/ar.csv | 885 ++++++++++++++++--------------- frappe/translations/bg.csv | 875 ++++++++++++++++--------------- frappe/translations/bn.csv | 875 ++++++++++++++++--------------- frappe/translations/bs.csv | 875 ++++++++++++++++--------------- frappe/translations/ca.csv | 870 +++++++++++++++++-------------- frappe/translations/cs.csv | 875 ++++++++++++++++--------------- frappe/translations/da.csv | 875 ++++++++++++++++--------------- frappe/translations/de.csv | 899 +++++++++++++++++--------------- frappe/translations/el.csv | 875 ++++++++++++++++--------------- frappe/translations/en-US.csv | 10 +- frappe/translations/es-CL.csv | 6 +- frappe/translations/es-EC.csv | 1 + frappe/translations/es-MX.csv | 2 + frappe/translations/es-NI.csv | 2 +- frappe/translations/es-PE.csv | 115 ++--- frappe/translations/es.csv | 925 ++++++++++++++++++--------------- frappe/translations/et.csv | 875 ++++++++++++++++--------------- frappe/translations/fa.csv | 875 ++++++++++++++++--------------- frappe/translations/fi.csv | 881 ++++++++++++++++--------------- frappe/translations/fr.csv | 943 ++++++++++++++++++---------------- frappe/translations/gu.csv | 875 ++++++++++++++++--------------- frappe/translations/he.csv | 447 ++++++++-------- frappe/translations/hi.csv | 875 ++++++++++++++++--------------- frappe/translations/hr.csv | 875 ++++++++++++++++--------------- frappe/translations/hu.csv | 875 ++++++++++++++++--------------- frappe/translations/id.csv | 913 +++++++++++++++++--------------- frappe/translations/is.csv | 873 ++++++++++++++++--------------- frappe/translations/it.csv | 897 +++++++++++++++++--------------- frappe/translations/ja.csv | 875 ++++++++++++++++--------------- frappe/translations/km.csv | 895 +++++++++++++++++--------------- frappe/translations/kn.csv | 898 +++++++++++++++++--------------- frappe/translations/ko.csv | 899 +++++++++++++++++--------------- frappe/translations/ku.csv | 907 +++++++++++++++++--------------- frappe/translations/lo.csv | 899 +++++++++++++++++--------------- frappe/translations/lt.csv | 897 +++++++++++++++++--------------- frappe/translations/lv.csv | 899 +++++++++++++++++--------------- frappe/translations/mk.csv | 899 +++++++++++++++++--------------- frappe/translations/ml.csv | 898 +++++++++++++++++--------------- frappe/translations/mr.csv | 895 +++++++++++++++++--------------- frappe/translations/ms.csv | 899 +++++++++++++++++--------------- frappe/translations/my.csv | 899 +++++++++++++++++--------------- frappe/translations/nl.csv | 893 +++++++++++++++++--------------- frappe/translations/no.csv | 897 +++++++++++++++++--------------- frappe/translations/pl.csv | 911 +++++++++++++++++--------------- frappe/translations/ps.csv | 895 +++++++++++++++++--------------- frappe/translations/pt-BR.csv | 394 +++++++------- frappe/translations/pt.csv | 891 +++++++++++++++++--------------- frappe/translations/ro.csv | 897 +++++++++++++++++--------------- frappe/translations/ru.csv | 909 +++++++++++++++++--------------- frappe/translations/si.csv | 899 +++++++++++++++++--------------- frappe/translations/sk.csv | 893 +++++++++++++++++--------------- frappe/translations/sl.csv | 899 +++++++++++++++++--------------- frappe/translations/sq.csv | 895 +++++++++++++++++--------------- frappe/translations/sr-SP.csv | 153 +++--- frappe/translations/sr.csv | 897 +++++++++++++++++--------------- frappe/translations/sv.csv | 897 +++++++++++++++++--------------- frappe/translations/sw.csv | 871 +++++++++++++++++-------------- frappe/translations/ta.csv | 907 +++++++++++++++++--------------- frappe/translations/te.csv | 895 +++++++++++++++++--------------- frappe/translations/th.csv | 899 +++++++++++++++++--------------- frappe/translations/tr.csv | 911 +++++++++++++++++--------------- frappe/translations/uk.csv | 897 +++++++++++++++++--------------- frappe/translations/ur.csv | 899 +++++++++++++++++--------------- frappe/translations/uz.csv | 871 +++++++++++++++++-------------- frappe/translations/vi.csv | 897 +++++++++++++++++--------------- frappe/translations/zh-TW.csv | 799 +++++++++++++++------------- frappe/translations/zh.csv | 919 ++++++++++++++++++--------------- 69 files changed, 29414 insertions(+), 25132 deletions(-) diff --git a/frappe/translations/af.csv b/frappe/translations/af.csv index e61fce1b60..15a08badf0 100644 --- a/frappe/translations/af.csv +++ b/frappe/translations/af.csv @@ -1,6 +1,6 @@ apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,Kies asseblief 'n Bedrag veld. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Druk Esc om te sluit -apps/frappe/frappe/desk/form/assign_to.py +158,"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/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}","'N Nuwe taak, {0}, is aan jou toegewys deur {1}. {2}" DocType: Email Queue,Email Queue records.,E-pos waglys rekords. DocType: Address,Punjab,Punjab apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,Hernoem baie items deur 'n .csv-lêer op te laai. @@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems DocType: About Us Settings,Website,webwerf apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Jy moet ingeteken wees om toegang tot hierdie bladsy te kry DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Let wel: Meervoudige sessies sal toegelaat word in die geval van 'n mobiele toestel -apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},Aktiveer e-pos inkassie vir gebruiker {gebruikers} +apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},Aktiveer e-pos inkassie vir gebruiker {gebruikers} apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Kan nie hierdie e-pos stuur nie. U het die stuurlimiet van {0} e-posse vir hierdie maand gekruis. apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,Permanent Dien {0} in? apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Laai lêer rugsteun af @@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} Boom DocType: User,User Emails,Gebruiker e-posse DocType: User,Username,Gebruikersnaam apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,Invoer zip -apps/frappe/frappe/model/base_document.py +554,Value too big,Waarde te groot +apps/frappe/frappe/model/base_document.py +563,Value too big,Waarde te groot DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Doen Skriftoets DocType: Data Import,Total Rows,Totale Rye @@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi DocType: Data Migration Run,Logs,Logs apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,Dit is nodig om hierdie aksie vandag self te neem vir die bogenoemde herhalende 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 +539,Rename {0},Hernoem {0} +apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},Hernoem {0} DocType: Workflow State,zoom-out,zoom-out apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Kan nie {0} oopmaak as sy instansie oop is nie -apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,Tabel {0} kan nie leeg wees nie +apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,Tabel {0} kan nie leeg wees nie DocType: SMS Parameter,Parameter,parameter -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,Met grootboeke -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,Dokument is gewysig! +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,Met grootboeke apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,beelde DocType: Activity Log,Reference Owner,Verwysings Eienaar DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","As dit aangeskakel is, kan die gebruiker aanmeld vanaf enige IP-adres met behulp van Two Factor Auth. Dit kan ook vir alle gebruikers in Stelselinstellings gestel word" DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,Kleinste sirkulerende breuk eenheid (munt). Vir bv. 1 sent vir USD en dit moet ingeskryf word as 0.01 DocType: Social Login Key,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, ry {1}" +apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, ry {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Gee asseblief 'n volle naam. -apps/frappe/frappe/model/document.py +1057,Beginning with,Begin met +apps/frappe/frappe/model/document.py +1058,Beginning with,Begin met apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Data Invoer Sjabloon apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Ouer DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","As dit geaktiveer is, sal die wagwoord sterkte afgedwing word op grond van die minimum wagwoord telling waarde. 'N Waarde van 2 is medium sterk en 4 is baie sterk." DocType: About Us Settings,"""Team Members"" or ""Management""","Spanlede" of "Bestuur" -apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',Standaard vir 'Check' tipe veld moet '0' of '1' wees. +apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',Standaard vir 'Check' tipe veld moet '0' of '1' wees. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,gister DocType: Contact,Designation,aanwysing DocType: Test Runner,Test Runner,Toets hardloper @@ -66,10 +65,11 @@ 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 +47,Danger,gevaar -apps/frappe/frappe/www/login.html +20,Email Address,E-pos adres +apps/frappe/frappe/www/login.html +21,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/misc/tools.js +10,Export not allowed. You need {0} role to export.,Uitvoer nie toegelaat nie. Jy benodig {0} rol om te eksporteer. +DocType: System Settings,In seconds,In sekondes apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,Kanselleer {0} dokumente? DocType: DocType,Is Published Field,Is gepubliseerde veld DocType: GCalendar Settings,GCalendar Settings,GCalendar-instellings @@ -77,17 +77,18 @@ DocType: Email Group,Email Group,E-posgroep DocType: Note,Seen By,Gesien deur apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,Voeg meerdere by apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,Nie 'n geldige gebruikersfoto nie. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Gebruiker DocType: Success Action,First Success Message,Eerste Suksesboodskap apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,Nie soos apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Stel die vertoningsetiket vir die veld -apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},Onjuiste waarde: {0} moet {1} {2} wees +apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},Onjuiste waarde: {0} moet {1} {2} wees apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","Verander veld eienskappe (versteek, lees, toestemming ens)" DocType: Workflow State,lock,sluit apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Stellings vir Kontak Ons Page. -apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,Administrateur ingeteken +apps/frappe/frappe/core/doctype/user/user.py +917,Administrator Logged In,Administrateur ingeteken 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 +34,Add a tag ...,Voeg 'n merker by -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},Nuut {0}: # {1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},Nuut {0}: # {1} DocType: Data Migration Run,Insert,insetsel apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Kies {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,Voer asseblief basiese URL in @@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,Dokumentsoorte DocType: Address,Jammu and Kashmir,Jammu en Kasjmir DocType: Workflow,Workflow State Field,Workflow State Field -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,Meld asseblief aan of login om te begin +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,Meld asseblief aan of login om te begin DocType: Blog Post,Guest,gaste DocType: DocType,Title Field,Titel Veld DocType: Error Log,Error Log,Fout Teken apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"If you think this is unauthorized, please change the Administrator password.","As u dink dat dit ongemagtig is, verander asseblief die Administrateur wagwoord." -apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} is verpligtend +apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} is verpligtend 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","Naamopsies:
  1. veld: [veldnaam] - volgens veld
  2. naming_series: - By Naming Series (veld genaamd naming_series moet teenwoordig wees
  3. Prompt - Spoedige gebruiker vir 'n naam
  4. [reeks] - Reeks volgens voorvoegsel (geskei deur 'n punt); byvoorbeeld PRE. #####
  5. saamvoeg: [veldnaam1], [veldnaam2], ... [veldnaamX] - Deur veldnaamvergelyking (jy kan soveel velde as wat jy wil saamvat. Serie opsie werk ook)
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,Eienaar DocType: Communication,Visit,Besoek DocType: LDAP Settings,LDAP Search String,LDAP soekstring DocType: Translation,Translation,vertaling -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Setup> Aanpas vorm apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mnr DocType: Custom Script,Client,kliënt apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,Kies Kolom @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,Invoer Log apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Voeg beeldskyfies in webbladsye in. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,stuur DocType: Workflow Action Master,Workflow Action Name,Werkstroom Aksie Naam -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,DocType kan nie saamgevoeg word nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,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 +270,Not a zip file,Nie 'n zip-lêer nie DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,jy DocType: Braintree Settings,Braintree Settings,Braintree instellings DocType: Website Theme,lowercase,klein -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,Kies asseblief Kolomme gebaseer op apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,Stoor filter DocType: Print Format,Helvetica,helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},Kan nie {0} uitvee nie +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,Nie Voorouers Van DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,Nuusbrief is reeds gestuur apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","Inteken sessie het verval, verfris bladsy om weer te probeer" @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,E-pos Uitschrijven DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Kies 'n beeld van ongeveer 150px breedte met 'n deursigtige agtergrond vir die beste resultate. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Derdeparty-programme apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,Die eerste gebruiker sal die stelselbestuurder word (jy kan dit later verander). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevind nie. Maak asseblief 'n nuwe een van Setup> Printing and Branding> Adres Sjabloon. apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,DocType moet Submitterable wees vir die gekose Doc Event ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,sirkel-pyl-up DocType: Email Domain,Email Domain,E-pos Domein DocType: Workflow State,italic,italic -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0}: Kan nie invoer sonder skep instel nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0}: Kan nie invoer sonder skep instel nie DocType: SMS Settings,Enter url parameter for message,Voer die URL-parameter in vir die boodskap apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,Bekyk verslag in jou blaaier apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Gebeurtenis en ander kalenders. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Alle velde is nodig om die kommentaar in te dien. +DocType: Print Settings,Printer Name,Drukker naam +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,Sleep om kolomme te sorteer apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Breedtes kan in px of% gestel word. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,begin DocType: Contact,First Name,Eerste naam @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,lêers apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Toestemmings word toegepas op gebruikers op grond van watter rolle hulle toegewys word. apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,U mag nie e-posse met betrekking tot hierdie dokument stuur nie -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,Kies asseblief ten minste 1 kolom van {0} om te sorteer / groepeer +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,Kies asseblief ten minste 1 kolom van {0} om te sorteer / groepeer DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Kontroleer dit as jy jou betaling met die Sandbox API toets apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,U mag nie 'n standaard webwerf-tema uitvee nie DocType: Data Import,Log Details,Log besonderhede DocType: Feedback Trigger,Example,voorbeeld DocType: Webhook Header,Webhook Header,Webhook Header +DocType: Print Settings,Print Server,Print Server DocType: Workflow State,gift,geskenk DocType: Workflow Action,Completed By,Voltooi deur apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Reqd @@ -223,12 +227,13 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS 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/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,dokumentasie +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,dokumentasie DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,Vee {0} items permanent uit? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,Nie toegelaat nie DocType: DocShare,Internal record of document shares,Interne rekord van dokument aandele DocType: Workflow State,Comment,kommentaar +DocType: Data Migration Plan,Postprocess Method,Na-proses Metode apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,Neem 'n foto apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.",U kan die ingediende dokumente verander deur hulle te kanselleer en dan te wysig. DocType: Data Import,Update records,Dateer rekords op @@ -236,20 +241,20 @@ 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/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,Stoor as +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,Stoor as DocType: Communication,Seen,gesien apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,Wys meer besonderhede DocType: System Settings,Run scheduled jobs only if checked,Begin slegs geskeduleerde werk as dit nagegaan word apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Sal slegs gewys word as seksieopskrifte aangeskakel is apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Argief -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,Lêeroplaai +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,Lêeroplaai DocType: Activity Log,Message,Boodskap DocType: Communication,Rating,gradering DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Druk Breedte van die veld, as die veld 'n kolom in 'n tabel is" DocType: Dropbox Settings,Dropbox Access Key,Dropbox toegang sleutel -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,Verkeerde veldnaam {0} in add_fetch-opstelling van persoonlike skrif +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,Verkeerde veldnaam {0} in add_fetch-opstelling van persoonlike skrif DocType: Workflow State,headphones,oorfone -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,Wagwoord is nodig of kies wagwoord wag +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,Wagwoord is nodig of kies wagwoord wag DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,bv. replies@jourcomany.com. Alle antwoorde sal na hierdie inkassie kom. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL DocType: Data Migration Run,Current Mapping,Huidige kaarte @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Groepe DocTypes apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Google Maps integrasie DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,Herstel jou wagwoord +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,Wys weekends DocType: Workflow State,remove-circle,verwyder-sirkel DocType: Help Article,Beginner,Beginner DocType: Contact,Is Primary Contact,Is primêre kontak apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,Javascript om by die hoofafdeling van die bladsy te voeg. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,Nie toegelaat om konsepdokumente te druk nie +apps/frappe/frappe/www/printview.py +80,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 +12,Reset to defaults,Herstel na verstek DocType: Workflow,Transition Rules,Oorgangsreëls apps/frappe/frappe/core/doctype/report/report.js +11,Example:,voorbeeld: -DocType: Google Maps,Google Maps,Google kaarte DocType: Workflow,Defines workflow states and rules for a document.,Definieer werkstroom state en reëls vir 'n dokument. DocType: Workflow State,Filter,filter apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},Veldnaam {0} kan nie spesiale karakters soos {1} hê nie @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,Dateer b apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,Fout: Dokument is verander nadat u dit oopgemaak het apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} ingeteken: {1} DocType: Address,West Bengal,Wes Bengaal -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan nie Toewys indien indien nie Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan nie Toewys indien indien nie Submittable DocType: Transaction Log,Row Index,Ry Indeks DocType: Social Login Key,Facebook,Facebook -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",Gefiltreer met "{0}" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",Gefiltreer met "{0}" DocType: Salutation,Administrator,administrateur DocType: Activity Log,Closed,gesluit DocType: Blog Settings,Blog Title,Blog Titel apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,Standaard rolle kan nie gedeaktiveer word nie -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,Klets Type +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,Klets Type DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,nuusbrief -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,Kan nie subnavraag gebruik in volgorde deur +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,Kan nie subnavraag gebruik in volgorde deur DocType: Web Form,Button Help,Knoppie Hulp DocType: Kanban Board Column,purple,pers DocType: About Us Settings,Team Members,Spanlede @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",SQL-voorwaardes. DocType: User,Get your globally recognized avatar from Gravatar.com,Kry jou wêreldwye erkende avatar van Gravatar.com apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","Jou intekening het op {0} verval. Om te vernuwe, {1}." DocType: Workflow State,plus-sign,plus-teken -apps/frappe/frappe/__init__.py +918,App {0} is not installed,Program {0} is nie geïnstalleer nie +apps/frappe/frappe/__init__.py +994,App {0} is not installed,Program {0} is nie geïnstalleer nie DocType: Data Migration Plan,Mappings,afbeeldings DocType: Notification Recipient,Notification Recipient,Kennisgewingsontvanger DocType: Workflow State,Refresh,Verfris DocType: Event,Public,openbare -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,Niks om te wys nie +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,Niks om te wys nie DocType: System Settings,Enable Two Factor Auth,Aktiveer twee faktore -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[Dringend] Fout tydens die skep van herhalende% s vir% s +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[Dringend] Fout tydens die skep van herhalende% s vir% s apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Gekyk deur DocType: DocField,Print Hide If No Value,Druk verberg as geen waarde DocType: Kanban Board Column,yellow,geel -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,Die gepubliseerde veld moet 'n geldige veldnaam wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,Die gepubliseerde veld moet 'n geldige veldnaam wees apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Laai aanhangsel DocType: Block Module,Block Module,Blok Module apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,Nuwe waarde +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,Geen toestemming om te wysig nie apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Voeg 'n kolom by apps/frappe/frappe/www/contact.html +34,Your email address,Jou eposadres DocType: Desktop Icon,Module,module 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/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,Maak asseblief seker dat die verwysingskommunikasie-dokumente nie omsendbrief gekoppel is nie. +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,Maak asseblief seker dat die verwysingskommunikasie-dokumente nie omsendbrief gekoppel is nie. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Skep 'n nuwe formaat apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,Kan nie emmer skep nie: {0}. Verander dit na 'n meer unieke naam. DocType: Webhook,Request URL,Versoek URL @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,Is Tabel apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,Pas gebruikertoestemming toe vir die volgende DocTypes DocType: Email Account,Total number of emails to sync in initial sync process ,Totale aantal e-posse om te sinkroniseer in aanvanklike sinkronisasieproses DocType: Website Settings,Set Banner from Image,Stel Banner van Beeld -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Global Search +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,Global Search DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},'N Nuwe rekening is vir jou geskep by {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,Instruksies E-pos @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-pos vlag wachtrij apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,Stylvelle vir drukformate apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Kan nie oop {0} identifiseer nie. Probeer iets anders. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,U inligting is ingedien -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,Gebruiker {0} kan nie uitgevee word nie +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,U inligting is ingedien +apps/frappe/frappe/core/doctype/user/user.py +305,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 +143,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. DocType: DocType,App,app @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Wys alle DocType: Workflow State,Print,Print DocType: User,Restrict IP,Beperk IP apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,Dashboard -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,Kan nie e-posse stuur nie -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,Soek of tik 'n opdrag +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,Kan nie e-posse stuur nie +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,Soek of tik 'n opdrag DocType: Activity Log,Timeline Name,Tydlyn Naam DocType: Email Account,e.g. smtp.gmail.com,bv. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,Voeg 'n nuwe reël by @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,S DocType: Top Bar Item,Parent Label,Ouer Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Jou navraag is ontvang. Ons sal binnekort terugkom. As u enige addisionele inligting het, beantwoord asseblief hierdie e-pos." DocType: GCalendar Account,Allow GCalendar Access,Laat GCalendar-toegang toe -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} is 'n verpligte veld +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} is 'n verpligte veld apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,Login token vereis DocType: Event,Repeat Till,Herhaal tot apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,nuwe apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Stel asseblief die script-URL op Gsuite-instellings in +DocType: Google Maps Settings,Google Maps Settings,Google Maps-instellings apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Laai ... DocType: DocField,Password,wagwoord apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,Jou stelsel word opgedateer. Herlaai asseblief weer na 'n paar oomblikke @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,Geen ooreenstemmende rekords. Soek iets nuuts DocType: Chat Profile,Away,weg DocType: Currency,Fraction Units,Breukeenhede -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} van {1} tot {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} van {1} tot {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Merk as Klaar DocType: Chat Message,Type,tipe DocType: Activity Log,Subject,Onderwerp @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,Bedrag gebaseer op veld apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Gebruiker is verpligtend vir Deel DocType: DocField,Hidden,verborge DocType: Web Form,Allow Incomplete Forms,Laat onvolledige vorms toe -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} moet eerste gestel word +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,PDF-generasie het misluk +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} moet eerste gestel word apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","Gebruik 'n paar woorde, vermy algemene frases." DocType: Workflow State,plane,vliegtuig apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","As u nuwe rekords oplaai, word "Naming Series" verplig, indien teenwoordig." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,Kry Alerts vir Vandag -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DocType kan slegs deur Administrateur hernoem word +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,Kry Alerts vir Vandag +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DocType kan slegs deur Administrateur hernoem word DocType: Chat Message,Chat Message,Kletsboodskap apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},E-pos nie geverifieer met {0} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},verander waarde van {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},verander waarde van {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","As die gebruiker enige rol nagegaan het, word die gebruiker 'n "System User". "Stelselgebruiker" het toegang tot die lessenaar" DocType: Report,JSON,into -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,Gaan asseblief jou e-pos na verifikasie -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,Vou kan nie aan die einde van die vorm wees nie +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,Gaan asseblief jou e-pos na verifikasie +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,Vou kan nie aan die einde van die vorm wees nie DocType: Communication,Bounced,gestuur DocType: Deleted Document,Deleted Name,Naam uitgevee apps/frappe/frappe/config/setup.py +14,System and Website Users,Stelsel- en webwerfgebruikers @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,Doc Status DocType: Data Migration Run,Pull Update,Pull Update DocType: Auto Email Report,No of Rows (Max 500),Aantal Rye (Max 500) DocType: Language,Language Code,Taalkode +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: as standaard word e-pos vir mislukte back-ups gestuur. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","Jou aflaai word gebou, dit kan 'n rukkie neem ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,Voeg filter by apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS gestuur na volgende nommers: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,Jou gradering: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} en {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,Begin 'n gesprek. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,Jou gradering: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posrekening nie opstelling nie. Skep asseblief 'n nuwe e-posrekening uit Instellings> E-pos> E-posrekening +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} en {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,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 DocType: Data Migration Run,Current Mapping Start,Huidige kaarte begin apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,E-pos is gemerk as strooipos DocType: About Us Settings,Website Manager,Webwerf Bestuurder -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,Lêeroplaai ontkoppel. Probeer asseblief weer. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,Ongeldige soekveld +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,Lêeroplaai ontkoppel. Probeer asseblief weer. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,vertalings apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,U het gedrukte of gekanselleerde dokumente gekies -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},Dokument {0} is ingestel om te sê {1} deur {2} -apps/frappe/frappe/model/document.py +1211,Document Queued,Dokument wagtend +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},Dokument {0} is ingestel om te sê {1} deur {2} +apps/frappe/frappe/model/document.py +1212,Document Queued,Dokument wagtend DocType: GSuite Templates,Destination ID,Bestemming ID DocType: Desktop Icon,List,lys DocType: Activity Log,Link Name,Skakel Naam -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,Veld {0} in ry {1} kan nie versteek en verpligtend wees as standaard nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,Veld {0} in ry {1} kan nie versteek en verpligtend wees as standaard nie DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,Ongeldige Wagwoord: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,Ongeldige Wagwoord: DocType: Print Settings,Send document web view link in email,Stuur dokumentwebbladsy skakel in e-pos apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Jou terugvoer vir dokument {0} word suksesvol gestoor apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,vorige -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,Re: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} rye vir {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,Re: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} rye vir {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-geldeenheid. Vir bv. "Cent" apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,Verbinding Naam -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Kies opgelaaide lêer +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Kies opgelaaide lêer DocType: Letter Head,Check this to make this the default letter head in all prints,Kontroleer hierdie om die standaard letterkop in alle afdrukke te maak DocType: Print Format,Server,bediener -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,Nuwe Kanbanraad +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,Nuwe Kanbanraad DocType: Desktop Icon,Link,skakel apps/frappe/frappe/utils/file_manager.py +122,No file attached,Geen lêer aangeheg nie DocType: Version,Version,weergawe +DocType: S3 Backup Settings,Endpoint URL,Eindpunt-URL apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,kaarte DocType: User,Fill Screen,Vulskerm apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,Kletsprofiel vir gebruiker {gebruiker} bestaan. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,Toestemmings word outomaties toegepas op Standaardverslae en soektogte. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,Oplaai misluk -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,Wysig via Upload +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,Wysig via Upload apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokument tipe ..., bv. kliënt" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Die kondisie '{0}' is ongeldig DocType: Workflow State,barcode,barcode @@ -486,22 +496,24 @@ DocType: Country,Country Name,Land Naam DocType: About Us Team Member,About Us Team Member,Oor Ons Spanlid apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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 -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,Beeldveld moet 'n geldige veldnaam wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,Beeldveld moet 'n geldige veldnaam wees DocType: Chat Token,Token,teken DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (naam) van die entiteit wie se eiendom ingestel moet word apps/frappe/frappe/limits.py +84,"To renew, {0}.","Om te vernuwe, {0}." 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 +129,App {0} already installed,Program {0} reeds geïnstalleer -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Geen voorskou nie +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,Geen voorskou nie DocType: Workflow State,exclamation-sign,uitroep-teken apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Wys toestemmings -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,Tydlyn veld moet 'n skakel of dinamiese skakel wees +DocType: Data Import,New data will be inserted.,Nuwe data sal ingevoeg word. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,Tydlyn veld moet 'n skakel of dinamiese skakel wees apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datumreeks apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Bladsy {0} van {1} DocType: About Us Settings,Introduce your company to the website visitor.,Stel jou besigheid bekend aan die webwerf besoeker. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json","Enkripsiesleutel is ongeldig, gaan asseblief na site_config.json" +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json","Enkripsiesleutel is ongeldig, gaan asseblief na site_config.json" DocType: SMS Settings,Receiver Parameter,Ontvanger Parameter DocType: Data Migration Mapping Detail,Remote Fieldname,Remote Field Name DocType: Communication,To,om @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,Skrifgrootte DocType: System Settings,Disable Standard Email Footer,Deaktiveer Standaard E-posvoet DocType: Workflow State,facetime-video,FaceTime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 kommentaar -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,beskou +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,beskou DocType: Notification,Days Before,Dae voor DocType: Workflow State,volume-down,volume-down -apps/frappe/frappe/desk/reportview.py +268,No Tags,Geen etikette +apps/frappe/frappe/desk/reportview.py +270,No Tags,Geen etikette DocType: DocType,List View Settings,Lys vertoning instellings DocType: Email Account,Send Notification to,Stuur kennisgewing aan DocType: DocField,Collapsible,opvoubare apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,gered -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Waarmee het jy hulp nodig? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,Waarmee het jy hulp nodig? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opsies vir kies. Elke opsie op 'n nuwe lyn. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,Permanent Kanselleer {0}? DocType: Workflow State,music,musiek +DocType: Website Theme,Text Styles,Teksstyle apps/frappe/frappe/www/qrcode.html +3,QR Code,QR-kode -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,Laaste gewysigde datum +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,Laaste gewysigde datum DocType: Chat Profile,Settings,instellings DocType: Print Format,Style Settings,Styl instellings apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Y-asse -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,Sorteer veld {0} moet 'n geldige veldnaam wees -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,meer +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,Sorteer veld {0} moet 'n geldige veldnaam wees +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,meer DocType: Contact,Sales Manager,Verkoopsbestuurder -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,hernoem +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,hernoem DocType: Print Format,Format Data,Formateer data DocType: List Filter,Filter Name,Filter Naam apps/frappe/frappe/utils/bot.py +91,Like,soos @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,Kletskamer naam DocType: OAuth Client,Grant Type,Toekenningstipe apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Kyk watter dokumente deur 'n gebruiker leesbaar is DocType: Deleted Document,Hub Sync ID,Hub-sinkronisasie-ID -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,gebruik% as wildkaart +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,gebruik% as wildkaart DocType: Auto Repeat,Quarterly,kwartaallikse apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-pos Domein nie vir hierdie rekening gekonfigureer nie, Skep een?" DocType: User,Reset Password Key,Herstel wagwoord sleutel @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Minimum Wagwoord telling DocType: DocType,Fields,Velde DocType: System Settings,Your organization name and address for the email footer.,Jou organisasie se naam en adres vir die e-posvoet. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Ouer Tabel +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,Ouer Tabel apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 Backup voltooi! apps/frappe/frappe/config/desktop.py +60,Developer,Ontwikkelaar -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,Geskep +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,Geskep apps/frappe/frappe/client.py +101,No permission for {doctype},Geen toestemming vir {doctype} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{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/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,Voorouers Van apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Wortel {0} kan nie uitgevee word nie apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,Nog geen kommentaar apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings","Stel asseblief SMS op voordat u dit instel as 'n verifikasie metode, via SMS-instellings" @@ -576,6 +590,7 @@ DocType: Contact,Open,oop DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Definieer aksies op state en die volgende stap en toegelaat rolle. DocType: Data Migration Mapping,Remote Objectname,Remote Object Name apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","As 'n beste praktyk, moenie dieselfde stel toestemmingsreël toewys aan verskillende rolle nie. Plaas eerder verskeie rolle aan dieselfde gebruiker." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,Bevestig asseblief u aksie op {0} hierdie dokument. DocType: Success Action,Next Actions HTML,Volgende aksies HTML DocType: Address,Address Title,Adres Titel DocType: Website Settings,Footer Items,Footer Items @@ -585,32 +600,33 @@ DocType: DefaultValue,DefaultValue,Standaard waarde DocType: Auto Repeat,Daily,daaglikse apps/frappe/frappe/config/setup.py +19,User Roles,Gebruikersrolle DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Eiendom Setter oortree 'n standaard DocType of Field eiendom -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,Kan nie opdateer nie: Verkeerde / verouderde skakel. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,Kan nie opdateer nie: Verkeerde / verouderde skakel. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,Beter voeg nog 'n paar letters of 'n ander woord by apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},Eenmalige wagwoord (OTP) Registrasiekode van {} DocType: DocField,Set Only Once,Stel slegs een keer DocType: Email Queue Recipient,Email Queue Recipient,E-pos wachtrij ontvanger DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,Webhook URL -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,Gebruikersnaam {0} bestaan reeds -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,"{0}: Kan nie invoer invoer nie, aangesien {1} nie invoerbaar is nie" +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Gebruikersnaam {0} bestaan reeds +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,"{0}: Kan nie invoer invoer nie, aangesien {1} nie invoerbaar is nie" apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},Daar is 'n fout in u adres sjabloon {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} is 'n ongeldige e-posadres in 'Ontvangers' DocType: User,Allow Desktop Icon,Laat Desktop-ikoon toe DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,host -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Kolom {0} bestaan reeds. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,Kolom {0} bestaan reeds. DocType: ToDo,High,hoë DocType: S3 Backup Settings,Secret Access Key,Geheime toegangsleutel apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Manlik -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,OTP-geheime is herstel. Herregistrasie sal nodig wees by volgende aanmelding. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,OTP-geheime is herstel. Herregistrasie sal nodig wees by volgende aanmelding. DocType: Communication,From Full Name,Van Volle Naam -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Jy het nie toegang tot Rapporteer nie: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},Jy het nie toegang tot Rapporteer nie: {0} DocType: User,Send Welcome Email,Stuur welkom e-pos -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,Verwyder filter +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,Verwyder filter +DocType: Web Form Field,Show in filter,Wys in filter DocType: Address,Daman and Diu,Daman en Diu -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,projek +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,projek DocType: Address,Personal,persoonlike apps/frappe/frappe/config/setup.py +125,Bulk Rename,Bulk Hernoem DocType: Email Queue,Show as cc,Wys as cc @@ -624,12 +640,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,Nie in ontwikkelaar af nie apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,Lêer Friends is gereed DocType: DocField,In Global Search,In Global Search +DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,streepje-links apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,Dit is riskant om hierdie lêer te verwyder: {0}. Kontak asseblief u stelselbestuurder. DocType: Currency,Currency Name,Geld Naam apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,Geen e-posse -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,Skakel verval -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,Kies Lêerformaat +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} jaar gelede +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,Skakel verval +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,Kies Lêerformaat DocType: Report,Javascript,Javascript DocType: File,Content Hash,Inhoud Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Stoor die JSON van die laaste bekende weergawes van verskeie geïnstalleerde programme. Dit word gebruik om vrylatingnotas te wys. @@ -641,16 +659,15 @@ DocType: Auto Repeat,Stopped,gestop apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,Het nie verwyder nie apps/frappe/frappe/desk/like.py +89,Liked,hou apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Stuur nou -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","Standaard DocType kan nie standaard afdrukformaat hê nie, Gebruik pasvorm" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","Standaard DocType kan nie standaard afdrukformaat hê nie, Gebruik pasvorm" DocType: Report,Query,navraag DocType: DocType,Sort Order,Sorteervolgorde -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},'In lys vertoning' nie toegelaat vir tipe {0} in ry {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},'In lys vertoning' nie toegelaat vir tipe {0} in ry {1} DocType: Custom Field,Select the label after which you want to insert new field.,Kies die etiket waarna jy nuwe veld wil invoeg. ,Document Share Report,Dokument Deel Verslag DocType: Social Login Key,Base URL,Basis-URL DocType: User,Last Login,Laaste Aanmelding apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},Jy kan nie 'Vertaalbaar' vir veld {0} stel nie -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},Veldnaam word benodig in ry {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,kolom DocType: Chat Profile,Chat Profile,Kletsprofiel DocType: Custom Field,Adds a custom field to a DocType,Voeg 'n pasgemaakte veld by 'n DocType @@ -659,6 +676,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,Kies ten minste 1 rekord vir druk apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,Stel eers die naam en stoor die rekord. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Gedeel met {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,bedank DocType: View log,Reference Name,Verwysingsnaam @@ -680,17 +698,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opsi apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} tot {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Teken van fout tydens versoeke. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} is suksesvol by die e-posgroep gevoeg. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,"Moenie opskrifte wat vooraf in die sjabloon ingestel is, wysig nie" +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,"Moenie opskrifte wat vooraf in die sjabloon ingestel is, wysig nie" apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},Aanmelding Verifikasiekode van {} DocType: Address,Uttar Pradesh,Uttar Pradesh +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,let wel: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,Invoerstatus -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,Maak lêer (s) privaat of publiek? +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,Maak lêer (s) privaat of publiek? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Geskeduleer om te stuur na {0} DocType: Kanban Board Column,Indicator,aanwyser DocType: DocShare,Everyone,almal DocType: Workflow State,backward,agteruit -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Slegs een reël word toegelaat met dieselfde Rol, Vlak en {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Slegs een reël word toegelaat met dieselfde Rol, Vlak en {1}" DocType: Email Queue,Add Unsubscribe Link,Voeg uittreksel uit apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Nog geen kommentaar. Begin 'n nuwe bespreking. DocType: Workflow State,share,aandeel @@ -702,6 +721,7 @@ DocType: User,Last IP,Laaste IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Hernuwing / Opgradering apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,'N Nuwe dokument {0} is gedeel deur jou {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migrasie Connector +DocType: Email Account,Track Email Status,Track e-pos status DocType: Note,Notify Users On Every Login,Stel gebruikers in kennis van elke inskrywing DocType: PayPal Settings,API Password,API wagwoord apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Tik die python module of kies connector tipe @@ -710,6 +730,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Laaste op apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Bekyk intekenaars DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,Kan nie lêer uitvee soos dit behoort aan {0} {1} waarvoor u nie toestemmings het nie +DocType: Website Theme,Custom JS,Aangepaste JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Me DocType: Website Theme,Background Color,Agtergrondkleur apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,Daar was foute tydens die stuur van e-pos. Probeer asseblief weer. @@ -718,21 +739,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,Karteer DocType: Web Page,0 is highest,0 is die hoogste apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,Is jy seker jy wil hierdie kommunikasie aan {0} herrelink? -apps/frappe/frappe/www/login.html +86,Send Password,Stuur wagwoord +apps/frappe/frappe/www/login.html +87,Send Password,Stuur wagwoord +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Stel asseblief die standaard e-pos rekening op van Setup> Email> Email Account +DocType: Print Settings,Server IP,Bediener IP DocType: Email Queue,Attachments,aanhegsels apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,U het nie die regte om toegang tot hierdie dokument te verkry nie DocType: Language,Language Name,Taal Naam DocType: Email Group Member,Email Group Member,E-posgroeplid +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,Jou rekening is gesluit en sal na {0} sekondes hervat word apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,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 +313,Duplicate name {0} {1},Duplikaat naam {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},Duplikaat naam {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,weer probeer DocType: Web Form Field,Web Form Field,Web vorm veld apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Versteek veld in Rapport Bouer apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,Jy het 'n nuwe boodskap van: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,HTML wysig apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,Voer asseblief Aanstuur-URL in -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Setup> Gebruiker Toestemmings apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","gegenereer word. As dit vertraag word, moet u die veld "Herhaal op Dag van Maand" handmatig verander" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,Herstel oorspronklike toestemmings @@ -757,23 +780,25 @@ DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-pos antwoordhulp apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapport Builder-verslae word direk deur die verslagbouer bestuur. Niks om te doen. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Kontroleer asseblief jou e-posadres -apps/frappe/frappe/model/document.py +1056,none of,geeneen van +apps/frappe/frappe/model/document.py +1057,none of,geeneen van apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,Stuur vir my 'n kopie DocType: Dropbox Settings,App Secret Key,App Geheime Sleutel DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Webwerf apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Gekontroleerde items sal op die lessenaar gewys word -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} kan nie vir enkeltipes gestel word nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} kan nie vir enkeltipes gestel word nie DocType: Data Import,Data Import,Data invoer apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,Stel Grafiek op apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} bekyk tans hierdie dokument DocType: ToDo,Assigned By Full Name,Toegewys deur Volle Naam apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} opgedateer -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,Verslag kan nie vir enkeltipes gestel word nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,Verslag kan nie vir enkeltipes gestel word nie +DocType: System Settings,Allow Consecutive Login Attempts ,Laat opeenvolgende aanmeldpogings toe apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,'N Fout het voorgekom tydens die betalingproses. Kontak ons asseblief. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,{0} dae gelede DocType: Email Account,Awaiting Password,Wagwoord wag DocType: Address,Address Line 1,Adres Lyn 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,Nie Afstammelinge Van DocType: Custom DocPerm,Role,Rol apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Instellings ... apps/frappe/frappe/utils/data.py +507,Cent,sent @@ -793,10 +818,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Skakel na die bladsy wat jy wil oopmaak. Los leeg as jy dit 'n groepouer wil maak. DocType: DocType,Is Single,Is enkel -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,Aanmelding is gedeaktiveer -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} het die gesprek verlaat in {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,Aanmelding is gedeaktiveer +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} het die gesprek verlaat in {1} {2} DocType: Blogger,User ID of a Blogger,Gebruikers-ID van 'n Blogger -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,Daar moet ten minste een stelselbestuurder bly +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,Daar moet ten minste een stelselbestuurder bly DocType: GCalendar Account,Authorization Code,Magtigingskode DocType: PayPal Settings,Mention transaction completion page URL,Noem die transaksie-voltooiingsbladsy-URL DocType: Help Article,Expert,Kenner @@ -817,8 +842,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","Om dinamiese vak by te voeg, gebruik jinja-tags soos
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,Pas gebruikertoestemmings toe +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},Ongeldige soekveld {0} DocType: User,Modules HTML,Modules HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Volg of u e-pos deur die ontvanger geopen is.
Nota: as u na verskeie ontvangers stuur, selfs as 1 ontvanger die e-pos lees, sal dit beskou word as "Geopen"" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,Ontbrekende waardes word vereis DocType: DocType,Other Settings,Ander instellings DocType: Data Migration Connector,Frappe,frappe @@ -828,15 +856,13 @@ DocType: Customize Form,Change Label (via Custom Translation),Verander etiket (v apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Geen toestemming vir {0} {1} {2} DocType: Address,Permanent,permanente apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,Let wel: Ander toestemmingsreëls kan ook van toepassing wees -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 gedumpeer word sodat u later kan invoer." apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Bekyk dit in jou blaaier DocType: DocType,Search Fields,Soek velde DocType: System Settings,OTP Issuer Name,OTP Uitreiker Naam DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Geen dokument gekies nie apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,Jy is verbind aan die internet. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,Jy is verbind aan die internet. DocType: Social Login Key,Enable Social Login,Aktiveer sosiale aanmelding DocType: Event,Event,gebeurtenis apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:",Op {0} het {1} geskryf: @@ -851,7 +877,7 @@ DocType: Print Settings,In points. Default is 9.,In punte. Standaard is 9. DocType: OAuth Client,Redirect URIs,Herlei URI's apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},Inhandiging {0} DocType: Workflow State,heart,hart -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,Ou wagwoord vereis. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,Ou wagwoord vereis. DocType: Role,Desk Access,Toegang tot die lessenaar DocType: Workflow State,minus,minus DocType: S3 Backup Settings,Bucket,emmer @@ -859,8 +885,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,Kan nie kamera laai nie. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,Welkom e-pos gestuur apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,Kom ons stel die stelsel voor vir eerste gebruik. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,Reeds geregistreer +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,Reeds geregistreer DocType: System Settings,Float Precision,Vloot Precision +DocType: Notification,Sender Email,Afsender E-pos apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Net administrateur kan wysig apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Lêernaam DocType: DocType,Editable Grid,Bewerkbare rooster @@ -871,17 +898,19 @@ DocType: Communication,Clicked,gekliek apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},Geen toestemming vir '{0}' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Geskeduleer om te stuur DocType: DocType,Track Seen,Spoor gesien -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,Hierdie metode kan slegs gebruik word om 'n kommentaar te skep +DocType: Dropbox Settings,File Backup,Lêer rugsteun +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,Hierdie metode kan slegs gebruik word om 'n kommentaar te skep DocType: Kanban Board Column,orange,oranje apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,Geen {0} gevind apps/frappe/frappe/config/setup.py +259,Add custom forms.,Voeg gepasmaakte vorms by. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} in {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,hierdie dokument ingedien +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,hierdie dokument ingedien apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Die stelsel bied baie vooraf gedefinieerde rolle. Jy kan nuwe rolle byvoeg om fyner regte te stel. DocType: Communication,CC,CC DocType: Country,Geo,Geo +DocType: Data Migration Run,Trigger Name,Trigger Naam DocType: Blog Category,Blog Category,Blog Kategorie -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,Kan nie kaarteer nie omdat die volgende voorwaarde misluk: +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,Kan nie kaarteer nie omdat die volgende voorwaarde misluk: DocType: Role Permission for Page and Report,Roles HTML,Rolle HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Kies eers 'n Brand Image. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,aktiewe @@ -905,16 +934,17 @@ DocType: Address,Other Territory,Ander Gebied ,Messages,boodskappe apps/frappe/frappe/config/website.py +83,Portal,portaal DocType: Email Account,Use Different Email Login ID,Gebruik verskillende e-pos-aanmeldings ID -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,Moet 'n navraag spesifiseer om te hardloop +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,Moet 'n navraag spesifiseer om te hardloop apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Daar is 'n probleem met die bediener se braintree-konfigurasie. Moenie bekommerd wees nie, in geval van versuim, sal die bedrag terugbetaal word na u rekening." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,Bestuur Derdeparty-programme apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","Taal, datum en tyd instellings" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Setup> Gebruiker Toestemmings DocType: User Email,User Email,Gebruiker-e-pos DocType: Event,Saturday,Saterdag DocType: User,Represents a User in the system.,Verteenwoordig 'n gebruiker in die stelsel. DocType: Communication,Label,Etiket -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Die taak {0}, wat jy aan {1} toegewys het, is gesluit." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,Maak asseblief hierdie venster toe +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","Die taak {0}, wat jy aan {1} toegewys het, is gesluit." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,Maak asseblief hierdie venster toe DocType: Print Format,Print Format Type,Drukformaat Tipe DocType: Newsletter,A Lead with this Email Address should exist,'N Lood met hierdie e-posadres moet bestaan apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source Aansoeke vir die Web @@ -930,8 +960,8 @@ DocType: Data Export,Excel,Excel apps/frappe/frappe/templates/emails/password_update.html +2,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: Feedback Trigger,Condition,toestand -apps/frappe/frappe/utils/data.py +619,{0} hours ago,{0} uur gelede -apps/frappe/frappe/utils/data.py +629,1 month ago,1 maand gelede +apps/frappe/frappe/utils/data.py +621,{0} hours ago,{0} uur gelede +apps/frappe/frappe/utils/data.py +631,1 month ago,1 maand gelede DocType: Contact,User ID,Gebruikers-ID DocType: Communication,Sent,gestuur DocType: Address,Kerala,Kerala @@ -950,7 +980,7 @@ DocType: GSuite Templates,Related DocType,Verwante DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Wysig om inhoud by te voeg apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,Kies Tale apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,Kaartbesonderhede -apps/frappe/frappe/__init__.py +538,No permission for {0},Geen toestemming vir {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},Geen toestemming vir {0} DocType: DocType,Advanced,Advanced apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,Lyk API sleutel of API Geheim is verkeerd !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Verwysing: {0} {1} @@ -960,12 +990,12 @@ DocType: Address,Address Type,Adres tipe apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,Ongeldige gebruikersnaam of ondersteuning wagwoord. Regstel asseblief en probeer weer. DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Jou intekening sal môre verval. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,Fout in kennisgewing +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,Fout in kennisgewing apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Mevrou apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,meester DocType: DocType,User Cannot Create,Gebruiker kan nie skep nie apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,Vouer {0} bestaan nie -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,Dropbox toegang is goedgekeur! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,Dropbox toegang is goedgekeur! DocType: Customize Form,Enter Form Type,Vul vormtipe in apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Ontbrekende parameter Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Geen rekords gemerk. @@ -974,14 +1004,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,Stuur wagwoord update kennisgewing apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Toestaan van DocType, DocType. Wees versigtig!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Spesiale formate vir drukwerk, e-pos" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,Opgedateer na nuwe weergawe +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,Opgedateer na nuwe weergawe DocType: Custom Field,Depends On,Hang af van DocType: Kanban Board Column,Green,groen DocType: Custom DocPerm,Additional Permissions,Bykomende Toestemmings DocType: Email Account,Always use Account's Email Address as Sender,Gebruik altyd rekening se e-posadres as sender apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Teken in om kommentaar te lewer -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Begin die invoer van data onder hierdie reël -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},veranderde waardes vir {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,Begin die invoer van data onder hierdie reël +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},veranderde waardes vir {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","E-pos ID moet uniek wees, E-posrekening bestaan reeds \ vir {0}" DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Pas ... DocType: Print Format,Align Labels to the Right,Merk Labels na regs @@ -1000,38 +1032,40 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,Redige DocType: Workflow Action Master,Workflow Action Master,Workflow Action Master DocType: Custom Field,Field Type,Veldtipe apps/frappe/frappe/utils/data.py +537,only.,enigste. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,OTP-geheime kan slegs deur die Administrateur herstel word. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,OTP-geheime kan slegs deur die Administrateur herstel word. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,Vermy jare wat met jou geassosieer word. apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,Beperk gebruiker vir spesifieke dokument DocType: GSuite Templates,GSuite Templates,GSuite Templates +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,Neerdaal apps/frappe/frappe/utils/goal.py +110,Goal,doel apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,Ongeldige posbediener. Regstel asseblief en probeer weer. DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","Vir Skakels, tik die DocType as reeks in. Vir Kies, voer 'n lys opsies in, elkeen op 'n nuwe reël." DocType: Workflow State,film,film -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},Geen toestemming om te lees nie {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},Geen toestemming om te lees nie {0} apps/frappe/frappe/config/desktop.py +8,Tools,gereedskap apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,Vermy onlangse jare. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,Meervoudige wortelknope word nie toegelaat nie. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","As dit geaktiveer is, sal gebruikers elke keer in kennis gestel word wanneer hulle inteken. As dit nie geaktiveer is nie, sal gebruikers slegs een keer in kennis gestel word." DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","As gekontroleer, sal gebruikers nie die dialoog Bevestig toegang kry nie." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID-veld is nodig om waardes te wysig met behulp van Rapport. Kies asseblief die ID-veld met die kolom kieser apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,kommentaar -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,bevestig -apps/frappe/frappe/www/login.html +58,Forgot Password?,Wagwoord vergeet? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,bevestig +apps/frappe/frappe/www/login.html +59,Forgot Password?,Wagwoord vergeet? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py +19,ID,ID apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,Bedienerprobleem -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Aanmelding ID is nodig +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Aanmelding ID is nodig DocType: Website Slideshow,Website Slideshow,Webwerf skyfie apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,Geen data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Skakel dit is die tuisblad van die webwerf. Standaard Links (indeks, login, produkte, blog, oor, kontak)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Verifikasie het misluk terwyl e-pos van e-posrekening {0} ontvang is. Boodskap van bediener: {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Verifikasie het misluk terwyl e-pos van e-posrekening {0} ontvang is. Boodskap van bediener: {1} DocType: Custom Field,Custom Field,Aangepaste veld -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,Spesifiseer asseblief watter datumveld moet nagegaan word +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,Spesifiseer asseblief watter datumveld moet nagegaan word DocType: Custom DocPerm,Set User Permissions,Stel gebruiker toestemmings apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},Nie toegelaat vir {0} = {1} DocType: Email Account,Email Account Name,E-pos rekening naam -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,Iets het verkeerd gegaan tydens die skep van dropbox-toegangstoken. Kontroleer asseblief die foutlogboek vir meer besonderhede. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,Iets het verkeerd gegaan tydens die skep van dropbox-toegangstoken. Kontroleer asseblief die foutlogboek vir meer besonderhede. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Nuusbriewe aan kontakte, lei." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","bv. "Ondersteuning", "Verkope", "Jerry Yang"" @@ -1040,19 +1074,20 @@ DocType: DocField,Description,beskrywing DocType: Print Settings,Repeat Header and Footer in PDF,Herhaal kop en voet in PDF 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 +20,Column Name cannot be empty,Kolom Naam kan nie leeg wees nie -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},Fout tydens verbinding met e-pos rekening {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,Kolom Naam kan nie leeg wees nie +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},Fout tydens verbinding met e-pos rekening {0} DocType: Workflow State,fast-forward,vinnig vooruit DocType: Communication,Communication,kommunikasie apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Kontroleer kolomme om te kies, sleep om volgorde te stel." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,Dit is PERMANENTE aksie en jy kan nie ongedaan maak nie. Aanhou? apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,Inloggen en sien in Browser DocType: Event,Every Day,Elke dag DocType: LDAP Settings,Password for Base DN,Wagwoord vir Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Tafelveld -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,Kolomme gebaseer op +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,Kolomme gebaseer op apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,Sleutel sleutels in om integrasie met Google GSuite te aktiveer DocType: Workflow State,move,skuif -apps/frappe/frappe/model/document.py +1254,Action Failed,Aksie het misluk +apps/frappe/frappe/model/document.py +1255,Action Failed,Aksie het misluk DocType: List Filter,For User,Vir gebruiker DocType: View log,View log,Sien log apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,Grafiek van rekeninge @@ -1060,11 +1095,11 @@ DocType: Address,Assam,Assam apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,U het {0} dae oor in u intekening apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Uitgaande e-pos rekening is nie korrek nie DocType: Transaction Log,Chaining Hash,Chaining Hash -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Temperend Gestremd +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Temperend Gestremd apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,Stel asseblief e-pos adres in DocType: System Settings,Date and Number Format,Datum en nommerformaat -apps/frappe/frappe/model/document.py +1055,one of,een van -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,Kyk een oomblik +apps/frappe/frappe/model/document.py +1056,one of,een van +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,Kyk een oomblik apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Wys etikette DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","As Streng gebruikertoestemming toegepas word, en gebruikertoestemming vir 'n DocType vir 'n gebruiker gedefinieer is, sal al die dokumente waar die waarde van die skakel leeg is, nie aan daardie gebruiker vertoon word nie." DocType: Address,Billing,Rekening @@ -1075,7 +1110,7 @@ DocType: User,Middle Name (Optional),Middelnaam (opsioneel) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,Nie toegelaat apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,Die volgende velde het ontbrekende waardes: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,Eerste transaksie -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,Jy het nie genoeg regte om die aksie te voltooi nie +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,Jy het nie genoeg regte om die aksie te voltooi nie apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Geen resultate DocType: System Settings,Security,sekuriteit apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Geskeduleer om na {0} ontvangers te stuur @@ -1096,6 +1131,7 @@ DocType: Kanban Board Column,lightblue,ligblou apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Dieselfde veld word meer as een keer ingeskryf apps/frappe/frappe/templates/includes/list/filters.html +19,clear,duidelik apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Elke dag moet die gebeure op dieselfde dag eindig. +DocType: Prepared Report,Filter Values,Filter waardes DocType: Communication,User Tags,Gebruiker-etikette DocType: Data Migration Run,Fail,misluk DocType: Workflow State,download-alt,Aflaai-alt @@ -1103,13 +1139,13 @@ DocType: Data Migration Run,Pull Failed,Trek misluk DocType: Communication,Feedback Request,Terugvoer Versoek apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,Voer data uit CSV / Excel-lêers in. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Die volgende velde word ontbreek: -apps/frappe/frappe/www/login.html +28,Sign in,Teken in +apps/frappe/frappe/www/login.html +29,Sign in,Teken in apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},Kanselleer {0} DocType: Web Page,Main Section,Hoofafdeling DocType: Page,Icon,ikoon -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","Wenk: Sluit simbole, nommers en hoofletters in die wagwoord in" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","Wenk: Sluit simbole, nommers en hoofletters in die wagwoord in" DocType: DocField,Allow in Quick Entry,Laat toe in vinnige toegang -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / jjjj apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite script toets DocType: System Settings,Backups,rugsteun @@ -1126,23 +1162,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,Nie 'n DocType: Footer Item,Target,teiken DocType: System Settings,Number of Backups,Aantal rugsteun DocType: Website Settings,Copyright,kopiereg -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Gaan +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,Gaan DocType: OAuth Authorization Code,Invalid,Ongeldig DocType: ToDo,Due Date,Vervaldatum apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,Kwartaal DocType: Website Settings,Hide Footer Signup,Versteek voetskrifinskrywing -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,hierdie dokument gekanselleer +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,hierdie dokument gekanselleer apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Skryf 'n Python-lêer in dieselfde gids waar dit gered is en stuur kolom en resultaat terug. +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,Voeg by tafel DocType: DocType,Sort Field,Sorteer Veld DocType: Razorpay Settings,Razorpay Settings,Razorpay instellings -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,Wysig filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,Veld {0} van tipe {1} kan nie verpligtend wees nie +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,Wysig filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,Veld {0} van tipe {1} kan nie verpligtend wees nie apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Voeg nog by DocType: System Settings,Session Expiry Mobile,Sessie Vervaldatum apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,Verkeerde gebruiker of wagwoord apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,Soek resultate vir apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,Voer asseblief toegangspunt-URL in -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,Kies om af te laai: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,Kies om af te laai: DocType: Notification,Slack,slap DocType: Custom DocPerm,If user is the owner,As gebruiker die eienaar is ,Activity,aktiwiteit @@ -1151,7 +1188,7 @@ DocType: User Permission,Allow,laat apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,Kom ons vermy herhaalde woorde en karakters DocType: Communication,Delayed,vertraag apps/frappe/frappe/config/setup.py +140,List of backups available for download,Lys van backups beskikbaar vir aflaai -apps/frappe/frappe/www/login.html +71,Sign up,Teken aan +apps/frappe/frappe/www/login.html +72,Sign up,Teken aan apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,Ry {0}: Nie toegelaat om te skakel nie Verpligtend vir standaard velde DocType: Test Runner,Output,uitset DocType: Notification,Set Property After Alert,Stel Eiendom Na Alert @@ -1162,7 +1199,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,Leër tipe DocType: Workflow State,leaf,blaar DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,Vee gebruikerinstellings uit DocType: Contact Us Settings,Email ID,E-pos ID DocType: Activity Log,Keep track of all update feeds,Hou tred met alle opdaterings feeds DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,'N Lys van hulpbronne waarop die Kliënt App toegang sal hê na die gebruiker dit toelaat.
bv. projek @@ -1172,7 +1208,7 @@ DocType: Error Snapshot,Timestamp,Tydstempel DocType: Patch Log,Patch Log,Patch Log DocType: Data Migration Mapping,Local Primary Key,Plaaslike primêre sleutel apps/frappe/frappe/utils/bot.py +164,Hello {0},Hallo {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},Welkom by {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},Welkom by {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Voeg apps/frappe/frappe/www/me.html +40,Profile,Profiel DocType: Communication,Sent or Received,Gestuur of ontvang @@ -1203,7 +1239,7 @@ DocType: Web Form,Payments,betalings apps/frappe/frappe/www/qrcode.html +9,Hi {0},Hallo {0} DocType: System Settings,Enable Scheduled Jobs,Aktiveer geskeduleerde werk apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,Notes: -apps/frappe/frappe/www/message.html +65,Status: {0},Status: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},Status: {0} DocType: DocShare,Document Name,Dokument Naam apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Merk as Spam DocType: ToDo,Medium,medium @@ -1221,7 +1257,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},Naam van {0} k apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Vanaf datum apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,sukses apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},Terugvoer Versoek vir {0} is gestuur na {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,Sessie verstryk +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,Sessie verstryk DocType: Kanban Board Column,Kanban Board Column,Kanban Raad Kolom apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,Reguit rye sleutels is maklik om te raai DocType: Communication,Phone No.,Telefoon nommer. @@ -1244,17 +1280,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},Ignoreer: {0} tot {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,Teken van fout op outomatiese gebeure (skeduleerder). -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),Nie 'n geldige Comma Separated Value (CSV File) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),Nie 'n geldige Comma Separated Value (CSV File) DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Standaard Inkomend DocType: Workflow State,repeat,herhaling DocType: Website Settings,Banner,Banner 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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hulp op soek -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,Geregistreerde maar gedeaktiveer +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,Geregistreerde maar gedeaktiveer DocType: DocType,Hide Copy,Versteek kopie apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,Maak alle rolle skoon -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} moet uniek wees +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} moet uniek wees apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,ry apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","CC, BCC & Email Template" DocType: Data Migration Mapping Detail,Local Fieldname,Plaaslike veldnaam @@ -1262,7 +1298,7 @@ DocType: User Permission,Linked Doctypes,Gekoppelde Doctipes DocType: DocType,Track Changes,Track Changes DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,op die regte pad -DocType: Razorpay Settings,API Key,API sleutel +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 +82,Edit Title,Wysig titel apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,Installeer programme @@ -1270,6 +1306,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Dokumente wat aan u en u toegewys is. DocType: User,Email Signature,E-pos Handtekening DocType: Website Settings,Google Analytics ID,Google Analytics ID +DocType: Web Form,"For help see Client Script API and Examples","Vir hulp sien kliënteskrip API en voorbeelde" DocType: Website Theme,Link to your Bootstrap theme,Skakel na jou Bootstrap-tema DocType: Custom DocPerm,Delete,verwyder apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},Nuut {0} @@ -1279,10 +1316,10 @@ DocType: Print Settings,PDF Page Size,PDF bladsy grootte DocType: Data Import,Attach file for Import,Heg lêer vir Invoer aan DocType: Communication,Recipient Unsubscribed,Ontvanger Uitgeteken DocType: Feedback Request,Is Sent,Is gestuur -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,oor +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,oor apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.",Vir opdatering kan u slegs selektiewe kolomme bywerk. DocType: Chat Token,Country,land -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,adresse +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,adresse DocType: Communication,Shared,gedeel apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,Heg dokumentdruk aan DocType: Bulk Update,Field,veld @@ -1293,12 +1330,12 @@ DocType: Chat Message,URLs,URLs DocType: Data Migration Run,Total Pages,Totale bladsye DocType: DocField,Attach Image,Heg prent aan DocType: Workflow State,list-alt,lys-alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,Wagwoord opgedateer +apps/frappe/frappe/www/update-password.html +79,Password Updated,Wagwoord opgedateer apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,Stappe om jou inskrywing te verifieer apps/frappe/frappe/utils/password.py +50,Password not found,Wagwoord nie gevind nie DocType: Data Migration Mapping,Page Length,Bladsy Lengte DocType: Email Queue,Expose Recipients,Ontvang Ontvangers -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,Byvoeging is verpligtend vir inkomende posse +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,Byvoeging is verpligtend vir inkomende posse DocType: Contact,Salutation,Salueer DocType: Communication,Rejected,verwerp apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,Verwyder tag @@ -1309,14 +1346,14 @@ DocType: User,Set New Password,Stel nuwe wagwoord in apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},Veldnaam {0} verskyn verskeie kere in rye {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} van {1} na {2} in ry # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},Veldnaam {0} verskyn verskeie kere in rye {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{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 +32,Seems token you are using is invalid!,"Lyk asof jy gebruik, is ongeldig!" DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Aantal kolomme vir 'n veld in 'n rooster (Totale kolomme in 'n rooster moet minder as 11 wees) DocType: DocType,System,stelsel DocType: Web Form,Max Attachment Size (in MB),Maksimum aanhangsel grootte (in MB) -apps/frappe/frappe/www/login.html +75,Have an account? Login,Het u 'n rekening? Teken aan +apps/frappe/frappe/www/login.html +76,Have an account? Login,Het u 'n rekening? Teken aan apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Onbekende Drukformaat: {0} DocType: Workflow State,arrow-down,pyl-down apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},Gebruiker mag nie {0} uitvee nie: {1} @@ -1328,30 +1365,30 @@ DocType: Help Article,Likes,Hou DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Script Code apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,Skep gebruikers e-pos -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,Geen toestemmings aangegee nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,Geen toestemmings aangegee nie apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} nie gevind nie DocType: Custom Role,Custom Role,Aangepaste rol apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Tuisblad / Toetsmap 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,Stoor asseblief die dokument voordat u dit laai. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,Sleutel jou wagwoord in +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,Sleutel jou wagwoord in DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Social Login Key,Social Login Provider,Sosiale aanmeldverskaffer apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Voeg nog 'n opmerking by -apps/frappe/frappe/core/doctype/data_import/importer.py +81,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. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,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. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,Wysig DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,Uitsluit van Nuusbrief -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,Vou moet voor 'n Afdelingbreek kom +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,Vou moet voor 'n Afdelingbreek kom apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Onder ontwikkeling apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,Gaan na die dokument apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,Laaste gewysig deur apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,Aanpassings Herstel DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,GST Staat -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0}: Kan nie Kanselleer sonder Submit instel nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0}: Kan nie Kanselleer sonder Submit instel nie DocType: Website Theme,Theme,tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Herlei URI gebind om te kodeer DocType: DocType,Is Submittable,Is Submittable -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,Nuwe Noem +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,Nuwe Noem apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Waarde vir 'n tjekveld kan 0 of 1 wees apps/frappe/frappe/model/document.py +733,Could not find {0},Kon nie {0} vind nie apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,Kolom Etikette: @@ -1370,7 +1407,7 @@ apps/frappe/frappe/public/js/frappe/form/layout.js +28,This form does not have a DocType: Chat Message,Group,groep DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Kies teiken = "_blank" om oop te maak op 'n nuwe bladsy. apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,Databasis Grootte: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,Vee permanent {0} uit? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,Vee permanent {0} uit? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,Dieselfde lêer is reeds aan die rekord geheg apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} is nie 'n geldige werkstroomstaat nie. Dateer asseblief u Workflow op en probeer weer. DocType: Workflow State,wrench,wrench @@ -1384,27 +1421,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Voeg kommentaar by DocType: DocField,Mandatory,Verpligtend apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module vir Uitvoer -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0}: Geen basiese toestemmings ingestel nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0}: Geen basiese toestemmings ingestel nie apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,Jou intekening sal verval op {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},Aflaai skakel vir u rugsteun sal per e-pos op die volgende e-pos adres gestuur word: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Betekenis van Inskryf, Kanselleer, Verander" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Om te doen DocType: Test Runner,Module Path,Module Pad DocType: Social Login Key,Identity Details,Identiteitsbesonderhede +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),Dan deur (opsioneel) DocType: File,Preview HTML,Voorskou HTML DocType: Desktop Icon,query-report,navraag-verslag -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Toegewys aan {0}: {1} DocType: DocField,Percent,persent apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,Gekoppel met apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,Wysig outomatiese e-pos verslaginstellings DocType: Chat Room,Message Count,Boodskap Telling DocType: Workflow State,book,boek +DocType: Communication,Read by Recipient,Lees deur Ontvanger DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Fout in persoonlike skrif apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} Naam apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,Geen toestemmings vir hierdie kriteria gestel nie. DocType: Auto Email Report,Auto Email Report,Outo-e-posverslag -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,Vee kommentaar uit? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,Vee kommentaar uit? DocType: Address Template,This format is used if country specific format is not found,Hierdie formaat word gebruik as land spesifieke formaat nie gevind word nie DocType: System Settings,Allow Login using Mobile Number,Laat aanmelding toe met mobiele nommer apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,Jy het nie genoeg permitte om toegang tot hierdie bron te kry nie. Kontak asseblief u bestuurder om toegang te verkry. @@ -1421,7 +1459,7 @@ DocType: Letter Head,Printing,druk DocType: Workflow State,thumbs-up,duime op DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,fonts -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,Presisie moet tussen 1 en 6 wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,Presisie moet tussen 1 en 6 wees apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,en apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},Hierdie verslag is gegenereer op {0} @@ -1433,16 +1471,16 @@ DocType: Auto Email Report,Report Filters,Rapporteer filters apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,nou DocType: Workflow State,step-backward,stap-agtertoe apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{APP_TITLE} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,Stel asseblief die Dropbox-toegangsleutels in u webtuiste konfigureer +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,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 +16,Delete this record to allow sending to this email address,Vee hierdie rekord uit om toe te laat na hierdie e-pos adres apps/frappe/frappe/core/doctype/data_import/exporter.py +67,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/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,Kan nie gebeurtenis bywerk nie -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,Betaling voltooi +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,Kan nie gebeurtenis bywerk nie +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,Betaling voltooi apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,Bevestigingskode is gestuur na u geregistreerde e-posadres. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,gewurg -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter moet 4 waardes hê (doktipe, veldnaam, operateur, waarde): {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,gewurg +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter moet 4 waardes hê (doktipe, veldnaam, operateur, waarde): {0}" apps/frappe/frappe/utils/bot.py +89,show,Wys -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},Ongeldige veldnaam {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},Ongeldige veldnaam {0} DocType: Address Template,Address Template,Adres Sjabloon DocType: Workflow State,text-height,teks-hoogte DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Data Migrasie Plan Mapping @@ -1452,13 +1490,14 @@ DocType: Workflow State,map-marker,kaart-merker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Dien 'n uitgawe in DocType: Event,Repeat this Event,Herhaal hierdie gebeurtenis DocType: Address,Maintenance User,Instandhoudingsgebruiker +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,Sorteer voorkeure apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,Vermy datums en jare wat met u geassosieer word. DocType: Custom DocPerm,Amend,wysig DocType: Data Import,Generated File,Gegenereerde lêer DocType: Transaction Log,Previous Hash,Vorige Hash DocType: File,Is Attachments Folder,Is aanhangsels gids apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,Brei alles uit -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,Kies 'n klets om boodskappe te begin. +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,Kies 'n klets om boodskappe te begin. apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,Kies asseblief eers Entiteitstipe apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,Geldige login ID vereis. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,Kies asseblief 'n geldige CSV-lêer met data @@ -1471,26 +1510,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,Rekord bestaan n apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Oorspronklike waarde DocType: Help Category,Help Category,Hulpkategorie apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,Gebruiker {0} is gedeaktiveer -apps/frappe/frappe/www/404.html +20,Page missing or moved,Bladsy ontbreek of verskuif +apps/frappe/frappe/www/404.html +21,Page missing or moved,Bladsy ontbreek of verskuif DocType: DocType,Route,roete apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Betaling gateway instellings +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,Haal aangehegte beelde van dokument af DocType: Chat Room,Name,naam DocType: Contact Us Settings,Skype,Skype apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,U het die maksimum spasie van {0} vir u plan oorskry. {1}. DocType: Chat Profile,Notification Tones,Kennisgewing Tone -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Soek die dokumente +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,Soek die dokumente DocType: OAuth Authorization Code,Valid,geldig apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,Jou taal apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,Voeg ry by DocType: Tag Category,Doctypes,Doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,Navraag moet 'n SELECT wees -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,Heg asseblief 'n lêer aan om te invoer -DocType: Auto Repeat,Completed,voltooi +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,Navraag moet 'n SELECT wees +DocType: Prepared Report,Completed,voltooi DocType: File,Is Private,Is Privaat DocType: Data Export,Select DocType,Kies DocType apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,Lêergrootte het die maksimum toegelate grootte van {0} MB oorskry -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,Geskep op +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,Geskep op DocType: Workflow State,align-center,in lyn-sentrum DocType: Feedback Request,Is Feedback request triggered manually ?,Word terugvoerversoek handmatig geaktiveer? DocType: Address,Lakshadweep Islands,Lakshadweep Eilande @@ -1498,7 +1537,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Sekere dokumente, soos 'n faktuur, moet nie eenmalig verander word nie. Die finale staat vir sulke dokumente word Ingedien. U kan beperk watter rolle kan stuur." DocType: Newsletter,Test Email Address,Toets e-pos adres DocType: ToDo,Sender,sender -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,Fout tydens evaluering van kennisgewing {0}. Maak asseblief jou sjabloon reg. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,Fout tydens evaluering van kennisgewing {0}. Maak asseblief jou sjabloon reg. DocType: GSuite Settings,Google Apps Script,Google Apps Script apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Los kommentaar DocType: Web Page,Description for search engine optimization.,Beskrywing vir soekenjin optimalisering. @@ -1508,7 +1547,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,hang DocType: System Settings,Allow only one session per user,Laat slegs een sessie per gebruiker toe apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Tuisblad / Toetsmap 1 / Toetsmap 3 DocType: Website Settings,<head> HTML,<head> HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,Kies of sleep oor tydgleuwe om 'n nuwe gebeurtenis te skep. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,Kies of sleep oor tydgleuwe om 'n nuwe gebeurtenis te skep. DocType: DocField,In Filter,In Filter apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Wys in Module-afdeling @@ -1520,17 +1559,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",Bladsy om op die webwerf te wys DocType: Note,Seen By Table,Gesien per tabel -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,Kies sjabloon +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,Kies sjabloon apps/frappe/frappe/www/third_party_apps.html +47,Logged in,Aangemeld apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,Verkeerde UserId of Wagwoord apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,Verken apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Verstek stuur en inkassie DocType: System Settings,OTP App,OTP App +DocType: Dropbox Settings,Send Email for Successful Backup,Stuur e-pos vir suksesvolle rugsteun apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Dokument ID DocType: Print Settings,Letter,brief -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,Beeldveld moet van die tipe Heg Beeld wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,Beeldveld moet van die tipe Heg Beeld wees DocType: DocField,Columns,kolomme -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,Gedeel met gebruiker {0} met lees toegang +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,Gedeel met gebruiker {0} met lees toegang DocType: Async Task,Succeeded,daarin geslaag om apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},Verpligte velde vereis in {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,Stel toestemmings vir {0} terug? @@ -1548,14 +1588,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,belyn links DocType: User,Defaults,standaard DocType: Feedback Request,Feedback Submitted,Terugvoer ingedien -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,Voeg saam met bestaande +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,Voeg saam met bestaande DocType: User,Birth Date,Geboortedatum DocType: Dynamic Link,Link Title,Skakel Titel DocType: Workflow State,fast-backward,vinnig agteruit DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,docs eiendom DocType: Event,Friday,Vrydag -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,Wysig in volle bladsy +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,Wysig in volle bladsy DocType: Report,Add Total Row,Voeg totale ry by apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,"Gaan asseblief jou geregistreerde e-pos adres na vir instruksies oor hoe om voort te gaan. Moenie hierdie venster toemaak nie, want jy sal daarheen moet terugkeer." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,"Byvoorbeeld, as u INV004 kanselleer en wysig, sal dit 'n nuwe dokument INV004-1 word. Dit help jou om tred te hou met elke wysiging." @@ -1576,11 +1616,10 @@ apps/frappe/frappe/www/feedback.html +96,Please give a detailed feebdack.,Gee as DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent",1 Geld = [?] Fraksie Vir bv. 1 USD = 100 Cent DocType: Data Import,Partially Successful,Gedeeltelik Suksesvol -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Te veel gebruikers het onlangs ingeteken, dus die registrasie is gedeaktiveer. Probeer asseblief oor 'n uur terug" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Te veel gebruikers het onlangs ingeteken, dus die registrasie is gedeaktiveer. Probeer asseblief oor 'n uur terug" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,Voeg nuwe toestemmingsreël by apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Jy kan wildcard% gebruik DocType: Chat Message Attachment,Chat Message Attachment,Klets Boodskap Aanhegsel -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Stel asseblief die standaard e-pos rekening op van Setup> Email> Email Account apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Slegs beelduitbreidings (.gif, .jpg, .jpeg, .tiff, .png, .svg) toegelaat" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,Databasis motor @@ -1601,7 +1640,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,filiaal DocType: System Settings,In Hours,In ure apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,Met briefhoof -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,Ongeldige uitgaande posbediener of poort +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,Ongeldige uitgaande posbediener of poort DocType: Custom DocPerm,Write,Skryf apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed to create Query / Script Reports,Slegs Administrateur mag Query / Script Reports maak apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,opdatering @@ -1610,28 +1649,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i 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 +13,Import Email From,Voer e-pos vanaf apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,Nooi as gebruiker -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,Tuisadres is nodig +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,Tuisadres is nodig DocType: Data Migration Run,Started,begin +DocType: Data Migration Run,End Time,Eindtyd apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,Kies aanhangsels apps/frappe/frappe/model/naming.py +113, for {0},vir {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,Daar was foute. Meld asb. Aan. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,Daar was foute. Meld asb. Aan. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,U mag nie hierdie dokument druk nie apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},Opdateer tans {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,Stel asseblief die waarde van die filters in die verslag filter tabel. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,Laai verslag +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,Stel asseblief die waarde van die filters in die verslag filter tabel. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,Laai verslag apps/frappe/frappe/limits.py +74,Your subscription will expire today.,Jou intekening sal verval vandag. DocType: Page,Standard,Standard -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Heg leër aan +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,Heg leër aan +DocType: Data Migration Plan,Preprocess Method,Voorproses Metode apps/frappe/frappe/desk/page/backups/backups.html +13,Size,grootte apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Opdrag Voltooi DocType: Desktop Icon,Idx,Idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

Geen resultate gevind vir '

DocType: Address,Madhya Pradesh,Madhya Pradesh DocType: Deleted Document,New Name,Nuwe naam DocType: System Settings,Is First Startup,Is eerste opstart DocType: Communication,Email Status,E-pos status apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,Stoor asseblief die dokument voordat u die opdrag verwyder apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,Voeg hierbo in -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,Kommentaar kan slegs deur die eienaar geredigeer word +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,Kommentaar kan slegs deur die eienaar geredigeer word DocType: Data Import,Do not send Emails,Moenie e-posse stuur nie apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,Gewone name en vanne is maklik om te raai. DocType: Auto Repeat,Draft,Konsep @@ -1643,14 +1685,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,Herroep DocType: Contact,Replied,antwoord DocType: Newsletter,Test,toets DocType: Custom Field,Default Value,Standaard waarde -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,verifieer +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,verifieer DocType: Workflow Document State,Update Field,Update Field DocType: Chat Profile,Enable Chat,Aktiveer chat DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,Los hierdie gesprek -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},Opsies nie ingestel vir skakelveld {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},Opsies nie ingestel vir skakelveld {0} DocType: Customize Form,"Must be of type ""Attach Image""",Moet van tipe wees "Heg beeld aan" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,Ontkies alles +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,Ontkies alles apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},Jy kan nie 'Slegs lees' vir veld {0} DocType: Auto Email Report,Zero means send records updated at anytime,Nul beteken stuur rekords op enige tyd bygewerk apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,Voltooi instellings @@ -1666,7 +1708,7 @@ DocType: Social Login Key,Google,Google DocType: Email Domain,Example Email Address,Voorbeeld e-pos adres apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Mees gebruikte apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,Teken af van Nuusbrief -apps/frappe/frappe/www/login.html +83,Forgot Password,Wagwoord vergeet +apps/frappe/frappe/www/login.html +84,Forgot Password,Wagwoord vergeet DocType: Dropbox Settings,Backup Frequency,Rugsteunfrekwensie DocType: Workflow State,Inverse,Omgekeerde DocType: DocField,User permissions should not apply for this Link,Gebruikers toestemmings moet nie vir hierdie skakel aansoek doen nie @@ -1683,6 +1725,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Lys van tem apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,Suksesvol opgedateer DocType: Activity Log,Logout,Teken uit apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,"Toestemmings op hoër vlakke is veldvlak toestemmings. Alle velde het 'n Toestemmingsvlak ingestel teen hulle en die reëls wat by daardie toestemmings gedefinieer is, is van toepassing op die veld. Dit is handig as jy sekere veldlees vir sekere rolle wil versteek of maak." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Setup> Aanpas vorm DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Voer statiese url parameters hier in (Bv. Sender = ERPNext, gebruikersnaam = ERPNext, wagwoord = 1234 ens.)." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","As hierdie instruksies nie nuttig is nie, voeg asseblief jou voorstelle by oor GitHub-probleme." DocType: Workflow State,bookmark,Bookmark @@ -1694,12 +1737,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,"Ve apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} bestaan reeds. Kies 'n ander naam apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,Terugvoervoorwaardes stem nie ooreen nie DocType: S3 Backup Settings,None,Geen -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,Tydlyn veld moet 'n geldige veldnaam wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,Tydlyn veld moet 'n geldige veldnaam wees DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,simbool -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,Ry # {0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,Ry # {0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,Nuwe wagwoord per e-pos gestuur -apps/frappe/frappe/auth.py +272,Login not allowed at this time,Inloggen is nie toegelaat nie +apps/frappe/frappe/auth.py +286,Login not allowed at this time,Inloggen is nie toegelaat nie DocType: Data Migration Run,Current Mapping Action,Huidige kaarte-aksie DocType: Email Account,Email Sync Option,E-pos Sync Opsie apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,Ry nr @@ -1715,12 +1758,12 @@ DocType: Address,Fax,Faks apps/frappe/frappe/config/setup.py +263,Custom Tags,Gepasmaakte Tags DocType: Communication,Submitted,voorgelê DocType: System Settings,Email Footer Address,E-pos voet adres -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,Tabel opgedateer +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,Tabel opgedateer DocType: Activity Log,Timeline DocType,Tydlyn DocType DocType: DocField,Text,teks apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Verstek stuur DocType: Workflow State,volume-off,volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},Opgeneem deur {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},Opgeneem deur {0} DocType: Footer Item,Footer Item,Footer Item ,Download Backups,Laai rugsteun af apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Tuisblad / Toetsmap 1 @@ -1728,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me,T DocType: DocField,Dynamic Link,Dinamiese skakel apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,Tot op hede apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Wys mislukte werksgeleenthede -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,besonderhede +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,besonderhede DocType: Property Setter,DocType or Field,DocType of Field DocType: Communication,Soft-Bounced,Sagte-Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","As dit geaktiveer is, kan alle gebruikers aanmeld vanaf enige IP-adres met behulp van Two Factor Auth. Dit kan ook slegs vir spesifieke gebruikers in User Page gestel word" @@ -1739,7 +1782,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,E-pos is na die asblik geskuif DocType: Report,Report Builder,Rapport Bouer DocType: Async Task,Task Name,Taaknaam -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","Jou sessie het verval, teken asseblief weer aan om voort te gaan." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","Jou sessie het verval, teken asseblief weer aan om voort te gaan." DocType: Communication,Workflow,Workflow DocType: Website Settings,Welcome Message,Welkom Boodskap DocType: Webhook,Webhook Headers,Webhook Headers @@ -1756,10 +1799,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,Druk dokumente DocType: Contact Us Settings,Forward To Email Address,Stuur na e-pos adres apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Wys alle data -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,Titelveld moet 'n geldige veldnaam wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,Titelveld moet 'n geldige veldnaam wees apps/frappe/frappe/config/core.py +7,Documents,dokumente DocType: Social Login Key,Custom Base URL,Aangepaste basis-URL DocType: Email Flag Queue,Is Completed,Is voltooi +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,Kry velde apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} het jou in 'n opmerking genoem apps/frappe/frappe/www/me.html +22,Edit Profile,Wysig profiel DocType: Kanban Board Column,Archived,argief @@ -1769,17 +1813,18 @@ myfield 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/form/controls/date.js +49,Today,vandag +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,vandag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"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: Error Log,Log of Scheduler Errors,Teken van skeduler foute DocType: User,Bio,bio DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,indiening +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,Ouer is die naam van die dokument waaraan die data bygevoeg sal word. apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,Wys Likes DocType: DocType,UPPER CASE,HOOFLETTERS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,Gepasmaakte HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,Voer die naam van die gids in -apps/frappe/frappe/auth.py +228,Unknown User,Onbekende gebruiker +apps/frappe/frappe/auth.py +233,Unknown User,Onbekende gebruiker apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,Kies rol DocType: Communication,Deleted,geskrap DocType: Workflow State,adjust,verstel @@ -1801,21 +1846,21 @@ DocType: Data Migration Connector,Database Name,Databasis Naam apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Herlaai vorm DocType: DocField,Select,Kies apps/frappe/frappe/utils/csvutils.py +29,File not attached,Lêer nie aangeheg nie -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,Konneksie verlore. Sommige funksies kan dalk nie werk nie. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,Konneksie verlore. Sommige funksies kan dalk nie werk nie. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess",Herhalings soos "aaa" is maklik om te raai -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,Nuwe klets +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,Nuwe klets DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","As u dit stel, sal hierdie item in 'n aftrekking onder die gekose ouer kom." DocType: Print Format,Show Section Headings,Wys afdelingopskrifte DocType: Bulk Update,Limit,limiet -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},Geen sjabloon gevind op pad nie: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,Logout uit alle sessies +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,Voeg 'n nuwe afdeling by +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},Geen sjabloon gevind op pad nie: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,Geen e-pos rekening DocType: Communication,Cancelled,gekanselleer DocType: Chat Room,Avatar,op die regte pad DocType: Blogger,Posts,poste DocType: Social Login Key,Salesforce,Verkoopspan DocType: DocType,Has Web View,Het Web View -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType se naam moet begin met 'n brief en dit kan slegs bestaan uit letters, syfers, spasies en onderstrepe" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType se naam moet begin met 'n brief en dit kan slegs bestaan uit letters, syfers, spasies en onderstrepe" DocType: Communication,Spam,Gemorspos DocType: Integration Request,Integration Request,Integrasie Versoek apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,Geagte @@ -1831,16 +1876,18 @@ DocType: Communication,Assigned,opgedra DocType: Print Format,Js,JS apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,Kies Drukformaat apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,Kort sleutelbordpatrone is maklik om te raai +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,Genereer nuwe verslag DocType: Portal Settings,Portal Menu,Portaal Menu apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,Lengte van {0} moet tussen 1 en 1000 wees -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Soek vir enigiets +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,Soek vir enigiets DocType: Data Migration Connector,Hostname,gasheernaam DocType: Data Migration Mapping,Condition Detail,Toestanddetail apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}","Vir geldeenheid {0}, moet die minimum transaksie bedrag {1} wees" DocType: DocField,Print Hide,Druk versteek -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Voer waarde in +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,Voer waarde in DocType: Workflow State,tint,tint DocType: Web Page,Style,styl +DocType: Prepared Report,Report End Time,Rapporteer eindtyd apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,bv: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} kommentaar apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,Weergawe opgedateer @@ -1853,10 +1900,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,Skakel diagramme DocType: Website Settings,Sub-domain provided by erpnext.com,Sub-domein verskaf deur erpnext.com apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,Stel jou stelsel op +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,Afstammelinge van DocType: System Settings,dd-mm-yyyy,dd-mm-yyyy -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,Moet rapporteer toestemming om toegang tot hierdie verslag te hê. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,Moet rapporteer toestemming om toegang tot hierdie verslag te hê. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,Kies asseblief minimum wagwoord telling -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,bygevoeg +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,bygevoeg apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,Jy het ingeteken vir een gebruiker gratis plan DocType: Auto Repeat,Half-yearly,Halfjaarlikse apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,Daily Event Digest word gestuur vir kalendergebeure waaraan herinnerings gestel word. @@ -1867,7 +1915,7 @@ DocType: Workflow State,remove,verwyder DocType: Email Domain,If non standard port (e.g. 587),As nie-standaard-poort (bv. 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,Reload apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,Voeg jou eie Tag-kategorieë by -apps/frappe/frappe/desk/query_report.py +227,Total,totale +apps/frappe/frappe/desk/query_report.py +312,Total,totale DocType: Event,Participants,deelnemers DocType: Integration Request,Reference DocName,Verwysings DocName DocType: Web Form,Success Message,Suksesboodskap @@ -1881,7 +1929,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,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/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge","{0} {1} bestaan nie, kies 'n nuwe teiken om saam te voeg" -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",Soekresultate vir "{0}" DocType: Data Migration Connector,Python Module,Python Module DocType: GSuite Settings,Google Credentials,Google-geloofsbriewe apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,QR-kode vir inlogverifikasie @@ -1890,8 +1937,8 @@ DocType: Footer Item,Company,maatskappy apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Toegewys aan my apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Google GSuite Templates vir integrasie met DocTypes DocType: User,Logout from all devices while changing Password,Logout uit alle toestelle terwyl jy wagwoord verander -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,verifieer wagwoord -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Daar was foute +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,verifieer wagwoord +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,Daar was foute apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Naby apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,Kan docstatus nie verander van 0 tot 2 DocType: File,Attached To Field,Aangeheg aan die veld @@ -1901,7 +1948,7 @@ DocType: Transaction Log,Transaction Hash,Transaksie Hash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,Slaan asseblief die Nuusbrief op voordat u dit stuur apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Stel rekeninge vir Google-kalender op -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},Opsies moet 'n geldige DocType vir veld {0} in ry {1} wees. +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},Opsies moet 'n geldige DocType vir veld {0} in ry {1} wees. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Wysig eienskappe DocType: Patch Log,List of patches executed,Lys van kolle uitgevoer apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} reeds uitgeteken @@ -1920,8 +1967,8 @@ DocType: Data Migration Connector,Authentication Credentials,Verifikasiebewyse DocType: Role,Two Factor Authentication,Twee faktor verifikasie apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,betaal DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL -apps/frappe/frappe/model/base_document.py +508,"{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/utils/data.py +638,{0} or {1},{0} of {1} +apps/frappe/frappe/model/base_document.py +517,"{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/utils/data.py +640,{0} or {1},{0} of {1} apps/frappe/frappe/core/doctype/user/user.py +250,Password Update,Wagwoordopdatering DocType: Workflow State,trash,asblik DocType: System Settings,Older backups will be automatically deleted,Ouer rugsteun sal outomaties verwyder word @@ -1937,16 +1984,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,terugval apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Item kan nie by sy eie afstammelinge bygevoeg word nie DocType: System Settings,Expiry time of QR Code Image Page,Vervaldatum van QR-kode Image Page -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,Toon totale +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,Toon totale DocType: Error Snapshot,Relapses,terugvalle DocType: Address,Preferred Shipping Address,Gewenste Posadres -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,Met briefhoof +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,Met briefhoof apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} het hierdie {1} geskep +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 +38,Document is only editable by users of role,Dokument is slegs redigeerbaar deur gebruikers van rol -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.","Die taak {0}, wat jy toegewys het aan {1}, is gesluit deur {2}." +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.","Die taak {0}, wat jy toegewys het aan {1}, is gesluit deur {2}." DocType: Print Format,Show Line Breaks after Sections,Toon lynbreuke na afdelings +DocType: Communication,Read by Recipient On,Lees deur Ontvanger aan DocType: Blogger,Short Name,Kort naam -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},Bladsy {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},Bladsy {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},Gekoppel met {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1973,20 +2022,20 @@ DocType: Communication,Feedback,terugvoer apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,Oop Vertaling apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,Hierdie e-pos is outogenerated DocType: Workflow State,Icon will appear on the button,Ikoon sal op die knoppie verskyn -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Socketio is nie verbind nie. Kan nie oplaai nie +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Socketio is nie verbind nie. Kan nie oplaai nie DocType: Website Settings,Website Settings,Webwerf-instellings apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,maand DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Voeg Reference: {{ reference_doctype }} {{ reference_name }} om dokumentverwysing te stuur DocType: DocField,Fetch From,Haal Van apps/frappe/frappe/modules/utils.py +205,App not found,Program nie gevind nie -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Kan nie 'n {0} teen 'n kinderdokument skep nie: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},Kan nie 'n {0} teen 'n kinderdokument skep nie: {1} DocType: Social Login Key,Social Login Key,Sosiale aanmeld sleutel DocType: Portal Settings,Custom Sidebar Menu,Aangepaste Zijbalk-menu DocType: Workflow State,pencil,potlood apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Kletsboodskappe en ander kennisgewings. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},Insert Na kan nie gestel word as {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Deel {0} met -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,E-pos rekening instellings vul asb jou wagwoord in vir: +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,E-pos rekening instellings vul asb jou wagwoord in vir: DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,Skrywers Inleiding DocType: Address,Phone,Foon @@ -1994,18 +2043,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,passiewe DocType: Contact,Accounts Manager,Rekeningbestuurder apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Jou betaling is gekanselleer. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,Kies Lêertipe +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,Kies Lêertipe apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,Sien alles DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,bladsy nie gevind nie DocType: DocField,Precision,presisie DocType: Website Slideshow,Slideshow Items,Diashow Items apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,Probeer om herhaalde woorde en karakters te vermy -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,Daar is mislukte lopies met dieselfde data-migrasieplan DocType: Event,Groups,groepe DocType: Workflow Action,Workflow State,Workflow State apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,Rye bygevoeg -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,Sukses! Jy is goed om te gaan 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,Sukses! Jy is goed om te gaan 👍 apps/frappe/frappe/www/me.html +3,My Account,My rekening DocType: ToDo,Allocated To,Toegewys aan apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,Klik asseblief op die volgende skakel om u nuwe wagwoord te stel @@ -2013,36 +2061,39 @@ DocType: Notification,Days After,Dae Na DocType: Newsletter,Receipient,RECEIPIENT DocType: Contact Us Settings,Settings for Contact Us Page,Stellings vir Kontak Ons Page DocType: Custom Script,Script Type,Skrif tipe +DocType: Print Settings,Enable Print Server,Aktiveer Print Server apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,{0} weke gelede DocType: Auto Repeat,Auto Repeat Schedule,Outo Herhaal Skedule DocType: Email Account,Footer,Footer apps/frappe/frappe/config/integrations.py +48,Authentication,verifikasie apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,Ongeldige skakel +DocType: Web Form,Client Script,Klient Script DocType: Web Page,Show Title,Wys Titel DocType: Chat Message,Direct,direkte DocType: Property Setter,Property Type,Eiendomsoort DocType: Workflow State,screenshot,kiekie apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Slegs administrateur kan 'n standaardverslag stoor. Hersien en stoor asseblief. DocType: System Settings,Background Workers,Agtergrondwerkers -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,Veldnaam {0} strydig met meta-objek +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,Veldnaam {0} strydig met meta-objek DocType: Deleted Document,Data,data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokument Status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Jy het {0} van {1} gemaak DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Authorization Code -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,Nie toegelaat om in te voer nie +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,Nie toegelaat om in te voer nie DocType: Deleted Document,Deleted DocType,Doktipe verwyder apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Toestemmingsvlakke DocType: Workflow State,Warning,waarskuwing DocType: Data Migration Run,Percent Complete,Persent Voltooi DocType: Tag Category,Tag Category,Tag Kategorie -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!",Ignoreer item {0} omdat 'n groep met dieselfde naam bestaan! -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,help +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!",Ignoreer item {0} omdat 'n groep met dieselfde naam bestaan! +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,help DocType: User,Login Before,Login voor DocType: Web Page,Insert Style,Voeg styl in apps/frappe/frappe/config/setup.py +276,Application Installer,Aansoek Installer -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,Nuwe verslag naam +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,Nuwe verslag naam +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,Versteek naweke DocType: Workflow State,info-sign,Info-teken -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Waarde vir {0} kan nie 'n lys wees nie +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,Waarde vir {0} kan nie 'n lys wees nie DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hoe moet hierdie geldeenheid geformateer word? As dit nie ingestel is nie, sal die stelsel standaard gebruik word" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,Dien {0} dokumente in apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,Jy moet ingeteken wees en het die stelselbestuurderrol om back-ups te kan kry. @@ -2053,6 +2104,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,Rol Toestemmings DocType: Help Article,Intermediate,Intermediêre apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Gekanselleer dokument herstel as konsep +DocType: Data Migration Run,Start Time,Begin Tyd apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Kan nie uitvee of kanselleer nie omdat {0} {1} gekoppel is aan {2} {3} {4} apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Kan lees apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} Grafiek @@ -2063,6 +2115,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Kan deel apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Ongeldige ontvanger adres DocType: Workflow State,step-forward,tree vorentoe +DocType: System Settings,Allow Login After Fail,Laat aanmelding ná mislukking toe apps/frappe/frappe/limits.py +69,Your subscription has expired.,Jou intekening het verval. DocType: Role Permission for Page and Report,Set Role For,Stel rol vir DocType: GCalendar Account,The name that will appear in Google Calendar,Die naam wat in Google Kalender verskyn @@ -2071,7 +2124,7 @@ DocType: Event,Starts on,Begin met DocType: System Settings,System Settings,Stelselinstellings DocType: GCalendar Settings,Google API Credentials,Google API-geloofsbriewe apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,Sessie begin misluk -apps/frappe/frappe/email/queue.py +499,This email was sent to {0} and copied to {1},Hierdie e-pos is gestuur na {0} en gekopieer na {1} +apps/frappe/frappe/email/queue.py +511,This email was sent to {0} and copied to {1},Hierdie e-pos is gestuur na {0} en gekopieer na {1} DocType: Workflow State,th,ste DocType: Social Login Key,Provider Name,Verskaffer Naam apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},Skep 'n nuwe {0} @@ -2085,35 +2138,38 @@ DocType: System Settings,Choose authentication method to be used by all users,Ki apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Doktipe benodig DocType: Workflow State,ok-sign,ok-teken apps/frappe/frappe/config/setup.py +146,Deleted Documents,Dokumente verwyder -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,Die CSV-formaat is hooflettergevoelig +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,Die CSV-formaat is hooflettergevoelig apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,Desktop-ikoon bestaan reeds apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,Dupliseer DocType: Newsletter,Create and Send Newsletters,Skep en stuur nuusbriewe -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,Vanaf datum moet voor datum wees +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,Vanaf datum moet voor datum wees DocType: Address,Andaman and Nicobar Islands,Andaman en Nicobar-eilande -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,GSuite Dokument -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,Spesifiseer asseblief watter waarde veld moet nagegaan word +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,GSuite Dokument +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,Spesifiseer asseblief watter waarde veld moet nagegaan word apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","Ouer" beteken die ouertafel waarin hierdie ry bygevoeg moet word apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Kan nie hierdie e-pos stuur nie. U het die stuurlimiet van {0} e-posse vir hierdie dag oorgesteek. DocType: Website Theme,Apply Style,Pas styl toe DocType: Feedback Request,Feedback Rating,Terugvoer Waardering apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Gedeel met +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,Heg lêers / URL's aan en voeg in tabel by. DocType: Help Category,Help Articles,Hulpartikels apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,tipe: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Jou betaling het misluk. DocType: Communication,Unshared,ongedeelde DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Module nie gevind nie -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} is ingestel om te sê {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} is ingestel om te sê {2} DocType: User,Location,plek ,Permitted Documents For User,Toegelate dokumente vir gebruiker apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",Jy moet toestemming hê om te deel DocType: Communication,Assignment Completed,Opdrag voltooi -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},Grootmaat wysig {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},Grootmaat wysig {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,Laai verslag af apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Nie aktief nie DocType: About Us Settings,Settings for the About Us Page,Stellings vir die oor ons bladsy apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,Strook betaling gateway instellings DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,bv. pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,Genereer sleutels apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Gebruik die veld om rekords te filter DocType: DocType,View Settings,Bekyk instellings DocType: Email Account,Outlook.com,Outlook.com @@ -2123,12 +2179,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,Stuur vir my 'n afskrif van uitgaande e-posse DocType: System Settings,Scheduler Last Event,Skeduler Laaste Event DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Voeg Google Analytics ID by: bv. UA-89XXX57-1. Soek asseblief hulp op Google Analytics vir meer inligting. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,Wagwoord kan nie meer as 100 karakters lank wees nie +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,Wagwoord kan nie meer as 100 karakters lank wees nie DocType: OAuth Client,App Client ID,App Client ID DocType: Kanban Board,Kanban Board Name,Kanban Raad Naam DocType: Notification Recipient,"Expression, Optional","Uitdrukking, Opsioneel" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopieer en plak hierdie kode in en leë Code.gs in jou projek by script.google.com -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},Hierdie e-pos is gestuur na {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},Hierdie e-pos is gestuur na {0} DocType: System Settings,Hide footer in auto email reports,Versteek voetskrif in outomatiese e-pos verslae DocType: DocField,Remember Last Selected Value,Onthou laas geselekteerde waarde DocType: Email Account,Check this to pull emails from your mailbox,Kontroleer dit om e-posse uit u posbus te trek @@ -2144,15 +2200,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",Dokumentasie resultate vir "{0}" DocType: Workflow State,envelope,koevert apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opsie 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,Druk misluk DocType: Feedback Trigger,Email Field,E-pos veld -apps/frappe/frappe/www/update-password.html +68,New Password Required.,Nuwe wagwoord vereis. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,Nuwe wagwoord vereis. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} het hierdie dokument met {1} gedeel -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,Voeg jou resensie by +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,Voeg jou resensie by DocType: Website Settings,Brand Image,Brand Image DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Opstel van die top navigasie balk, footer en logo." DocType: Web Form Field,Max Value,Maksimum waarde -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},Vir {0} op vlak {1} in {2} in ry {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},Vir {0} op vlak {1} in {2} in ry {3} DocType: User Social Login,User Social Login,Gebruikers Sosiale aanmelding DocType: Contact,All,Almal DocType: Email Queue,Recipient,ontvanger @@ -2161,27 +2218,27 @@ DocType: Address,Sales User,Verkope gebruiker apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,Sleep-en-Drop-instrument om Print Formats te bou en aan te pas. DocType: Address,Sikkim,Sikkim apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,stel -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,Hierdie navraagstyl word gestaak +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,Hierdie navraagstyl word gestaak DocType: Notification,Trigger Method,Trigger Metode -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},Operateur moet een van {0} wees. +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},Operateur moet een van {0} wees. DocType: Dropbox Settings,Dropbox Access Token,Dropbox Access Token DocType: Workflow State,align-right,in lyn regs DocType: Auto Email Report,Email To,E-pos aan apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,Vouer {0} is nie leeg nie DocType: Page,Roles,rolle -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Fout: Waarde ontbreek vir {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,Veld {0} kan nie gekies word nie. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},Fout: Waarde ontbreek vir {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,Veld {0} kan nie gekies word nie. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,Sessie Vervaldatum DocType: Workflow State,ban-circle,verbod-sirkel apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,Slack Webhook Error DocType: Email Flag Queue,Unread,ongelees DocType: Auto Repeat,Desk,lessenaar -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),Filter moet 'n tupel of lys wees (in 'n lys) +apps/frappe/frappe/utils/data.py +805,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 +8,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) DocType: Address,Arunachal Pradesh,Arunachal Pradesh -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,Opstel Auto E-pos +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Opstel Auto E-pos apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + Down DocType: Chat Profile,Message Preview,Boodskap Voorskou apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,Dit is 'n algemene 10-wagwoord. @@ -2215,6 +2272,7 @@ DocType: DocField,Signature,Handtekening apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Deel met apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,laai apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","Sleutel sleutels in om aan te teken via Facebook, Google, GitHub." +DocType: Data Import,Insert new records,Voeg nuwe rekords in apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},Kan nie lêerformaat vir {0} lees nie. DocType: Auto Email Report,Filter Data,Filter data apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Heg asseblief eers 'n lêer aan. @@ -2231,7 +2289,7 @@ DocType: DocType,Title Case,Titel Saak DocType: Data Migration Run,Data Migration Run,Data Migrasie Begin DocType: Blog Post,Email Sent,E-pos is gestuur DocType: DocField,Ignore XSS Filter,Ignoreer XSS Filter -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,verwyder +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,verwyder apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,Dropbox Friends instellings apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,Stuur as e-pos DocType: Website Theme,Link Color,Skakel Kleur @@ -2247,22 +2305,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,LDAP-instellings apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,Entiteit Naam apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,wysiging apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal-betaling gateway instellings -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) sal afgeknip word, aangesien maksimum karakters toegelaat word {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) sal afgeknip word, aangesien maksimum karakters toegelaat word {2}" DocType: OAuth Client,Response Type,Reaksie Tipe DocType: Contact Us Settings,Send enquiries to this email address,Stuur navrae na hierdie e-pos adres DocType: Letter Head,Letter Head Name,Letter Hoof Naam DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Aantal kolomme vir 'n veld in 'n lys of 'n rooster (totale kolomme moet minder as 11 wees) apps/frappe/frappe/config/website.py +18,User editable form on Website.,Gebruiker redigeerbare vorm op die webwerf. DocType: Workflow State,file,lêer -apps/frappe/frappe/www/login.html +90,Back to Login,Terug na Inloggen +apps/frappe/frappe/www/login.html +91,Back to Login,Terug na Inloggen DocType: Data Migration Mapping,Local DocType,Plaaslike DocType apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,Jy benodig skryfreg om hernoem te word +DocType: Email Account,Use ASCII encoding for password,Gebruik ASCII-enkodering vir wagwoord DocType: User,Karma,karma DocType: DocField,Table,tafel DocType: File,File Size,Lêergrootte -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Jy moet inloggen om hierdie vorm in te dien +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,Jy moet inloggen om hierdie vorm in te dien DocType: User,Background Image,Agtergrond prentjie -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},Kan nie kennisgewing op dokumenttipe stel nie {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},Kan nie kennisgewing op dokumenttipe stel nie {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","Kies jou land, tydsone en geldeenheid" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,tussen @@ -2271,7 +2330,7 @@ DocType: Braintree Settings,Use Sandbox,Gebruik Sandbox apps/frappe/frappe/utils/goal.py +101,This month,Hierdie maand apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,Nuwe persoonlike drukformaat DocType: Custom DocPerm,Create,Skep -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},Ongeldige filter: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},Ongeldige filter: {0} DocType: Email Account,no failed attempts,geen mislukte pogings nie DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App toegang sleutel @@ -2280,7 +2339,7 @@ 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/page/usage_info/usage_info.html +66,Backup Size:,Rugsteun Grootte: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},Outo-herhaling is {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},Outo-herhaling is {0} 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 @@ -2291,7 +2350,7 @@ DocType: Webhook,Doc Events,Doc Aktiwiteite DocType: Auto Email Report,Based on Permissions For User,Gebaseer op Toestemmings vir Gebruiker DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Reëls vir hoe lande is oorgange, soos die volgende staat en watter rol mag die staat verander, ens." apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} bestaan reeds -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},Voeg by om een van {0} te wees +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},Voeg by om een van {0} te wees DocType: DocType,Image View,Beeld vertoning apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Dit lyk of iets verkeerd gegaan het tydens die transaksie. Aangesien ons nie die betaling bevestig het nie, sal Paypal u outomaties hierdie bedrag terugbetaal. Indien nie, stuur vir ons 'n e-pos en meld die Korrelasie ID: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Sluit simbole, nommers en hoofletters in die wagwoord in" @@ -2301,7 +2360,6 @@ DocType: List Filter,List Filter,Lys filter DocType: Workflow State,signal,sein apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,Het Aanhegsels DocType: DocType,Show Print First,Wys eers druk -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Gebruiker apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Maak 'n nuwe {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,Nuwe e-pos rekening apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Dokument herstel @@ -2327,7 +2385,7 @@ DocType: Web Form,Web Form Fields,Web vorm velde DocType: Website Theme,Top Bar Text Color,Bovenste balk teks kleur DocType: Auto Repeat,Amended From,Gewysig Van apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},Waarskuwing: Kan nie {0} vind in enige tabel wat verband hou met {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,Hierdie dokument is tans in die ry vir uitvoering. Probeer asseblief weer +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,Hierdie dokument is tans in die ry vir uitvoering. Probeer asseblief weer apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,Lêer '{0}' nie gevind nie apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Verwyder Afdeling DocType: User,Change Password,Verander wagwoord @@ -2337,19 +2395,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,Hello! apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,Braintree betaal gateway instellings apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Gebeurtenis einde moet wees na die begin apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Dit sal uit {0} uit alle ander toestelle afmeld -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Jy het nie toestemming om 'n verslag te kry nie: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},Jy het nie toestemming om 'n verslag te kry nie: {0} DocType: System Settings,Apply Strict User Permissions,Pas streng gebruiker toestemmings toe DocType: DocField,Allow Bulk Edit,Laat grootmaat wysig toe DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,Gevorderde soek +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,Gevorderde soek apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,U mag nie die nuusbrief sien nie. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,Wagwoordherstelinstruksies is na u e-pos gestuur +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,Wagwoordherstelinstruksies is na u e-pos gestuur apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"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." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,Kan nie die vorm stoor as data-invoer aan die gang is nie. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,Sorteer Volgens DocType: Workflow,States,State DocType: Notification,Attach Print,Heg druk aan -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},Voorgestelde gebruikersnaam: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Voorgestelde gebruikersnaam: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,dag ,Modules,modules apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Stel lessenaar ikone @@ -2361,7 +2420,7 @@ DocType: Web Page,Sidebar and Comments,Zijbalk en kommentaar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wanneer u 'n dokument verander na Kanselleer en dit stoor, sal dit 'n nuwe nommer kry wat 'n weergawe van die ou nommer is." apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,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 +68,Start Import,Begin invoer +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,Begin invoer DocType: Workflow State,circle-arrow-left,sirkel-pyl-links apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,Redis kas bediener word nie uitgevoer nie. Kontak asseblief Administrator / Tegniese ondersteuning apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Maak 'n nuwe rekord @@ -2369,7 +2428,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,s DocType: Currency,Fraction,breuk DocType: LDAP Settings,LDAP First Name Field,LDAP Voornaam Veld apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,vir die outomatiese skep van die herhalende dokument om voort te gaan. -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,Kies uit bestaande aanhangsels +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,Kies uit bestaande aanhangsels DocType: Custom Field,Field Description,Veld Beskrywing apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,Naam nie ingestel via Prompt 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"".","Voer verstekwaarde velde (sleutels) en waardes in. As u verskeie waardes vir 'n veld byvoeg, sal die eerste een gekies word. Hierdie standaard word ook gebruik om toestemmingsreëls te pas. Om 'n lys met velde te sien, gaan na 'Formule aanpas'." @@ -2389,6 +2448,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Kry items DocType: Contact,Image,Image DocType: Workflow State,remove-sign,verwyder-teken +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,Kon nie aan bediener koppel apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,Daar is geen data wat uitgevoer moet word nie DocType: Domain Settings,Domains HTML,Domains HTML apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,Tik iets in die soekkassie om te soek @@ -2416,33 +2476,34 @@ DocType: Address,Address Line 2,Adreslyn 2 DocType: Address,Reference,verwysing apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Toevertrou aan DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migrasie Mapping Detail -DocType: Email Flag Queue,Action,aksie +DocType: Data Import,Action,aksie DocType: GSuite Settings,Script URL,Skrip URL -apps/frappe/frappe/www/update-password.html +119,Please enter the password,Voer asseblief die wagwoord in -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,Nie toegelaat om gekanselleerde dokumente te druk nie +apps/frappe/frappe/www/update-password.html +111,Please enter the password,Voer asseblief die wagwoord in +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Nie toegelaat om gekanselleerde dokumente te druk nie apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,U mag nie kolomme skep nie DocType: Data Import,If you don't want to create any new records while updating the older records.,As u nie nuwe rekords wil skep tydens die opdatering van die ouer rekords nie. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,info: DocType: Custom Field,Permission Level,Toestemmingsvlak DocType: User,Send Notifications for Transactions I Follow,Stuur kennisgewings vir transaksies wat ek volg -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan nie Stel, Kanselleer, Wysig sonder Skryf, stel nie" -DocType: Google Maps,Client Key,Kliënt Sleutel -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Is jy seker jy wil die aanhangsel uitvee? -apps/frappe/frappe/__init__.py +1097,Thank you,Dankie +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan nie Stel, Kanselleer, Wysig sonder Skryf, stel nie" +DocType: Google Maps Settings,Client Key,Kliënt Sleutel +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,Is jy seker jy wil die aanhangsel uitvee? +apps/frappe/frappe/__init__.py +1178,Thank you,Dankie apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,spaar DocType: Print Settings,Print Style Preview,Druk Styl Voorskou apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,ikone -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,U mag nie hierdie webvorm dokument opdateer nie +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,U mag nie hierdie webvorm dokument opdateer nie apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,e-pos apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Kies asseblief Dokumenttipe eerste apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Stel asseblief basiese URL in die sosiale aanmeld sleutel vir Frappe DocType: About Us Settings,About Us Settings,Oor ons instellings DocType: Website Settings,Website Theme,Webwerf Tema +DocType: User,Api Access,Api Access DocType: DocField,In List View,In die lys skerm DocType: Email Account,Use TLS,Gebruik TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ongeldige aanmelding of wagwoord -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,Laai sjabloon af +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,Laai sjabloon af apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,Voeg pasgemaakte javascript by vorms. ,Role Permissions Manager,Rol Toestemmings Bestuurder apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Naam van die nuwe drukformaat @@ -2461,7 +2522,6 @@ DocType: Website Settings,HTML Header & Robots,HTML Header & Robots DocType: User Permission,User Permission,Gebruiker Toestemming apps/frappe/frappe/config/website.py +32,Blog,blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,LDAP nie geïnstalleer nie -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,Laai af met data DocType: Workflow State,hand-right,hand-reg DocType: Website Settings,Subdomain,subdomein apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,Instellings vir OAuth Verskaffer @@ -2473,6 +2533,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,E-pos Inteken ID apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,Betaling gekanselleer ,Addresses And Contacts,Adresse en kontakte +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,Kies asseblief dokumenttipe eerste. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Vee foutlêers uit apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Kies asseblief 'n gradering apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,Herstel OTP-geheime @@ -2481,19 +2542,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,2 dae apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategoriseer blogposte. DocType: Workflow State,Time,tyd DocType: DocField,Attach,heg -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} is nie 'n geldige veldnaampatroon nie. Dit moet {{field_name}} wees. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} is nie 'n geldige veldnaampatroon nie. Dit moet {{field_name}} wees. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Stuur terugvoerversoek slegs as daar ten minste een kommunikasie beskikbaar is vir die dokument. DocType: Custom Role,Permission Rules,Toestemming Reëls DocType: Braintree Settings,Public Key,Publieke sleutel DocType: GSuite Settings,GSuite Settings,GSuite instellings DocType: Address,Links,Links apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,Kies asseblief die dokumenttipe. -apps/frappe/frappe/model/base_document.py +396,Value missing for,Waarde ontbreek vir +apps/frappe/frappe/model/base_document.py +405,Value missing for,Waarde ontbreek vir apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,Voeg kind by apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Indiening van Rekord kan nie uitgevee word nie. DocType: GSuite Templates,Template Name,Sjabloon Naam apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nuwe tipe dokument -DocType: Custom DocPerm,Read,Lees +DocType: Communication,Read,Lees DocType: Address,Chhattisgarh,Chhattisgarh DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rol Toestemming vir Bladsy en Verslag apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Rig waarde @@ -2503,9 +2564,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,Direkte kamer met {ander} bestaan reeds. DocType: Has Domain,Has Domain,Het Domein apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Steek -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,Het jy nie 'n rekening? Teken aan +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,Het jy nie 'n rekening? Teken aan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,Kan nie ID-veld verwyder nie -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan nie Toewys Wys stel indien nie Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan nie Toewys Wys stel indien nie Submittable DocType: Address,Bihar,Bihar DocType: Activity Log,Link DocType,Skakel DocType apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,Jy het nog geen boodskappe nie. @@ -2520,14 +2581,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Kindertafels word as 'n rooster in ander DocTypes aangedui. DocType: Chat Room User,Chat Room User,Kletskamergebruiker apps/frappe/frappe/model/workflow.py +38,Workflow State not set,Werkstroomstaat nie gestel nie -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},Fout Kode: {0} +apps/frappe/frappe/www/404.html +23,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 +26,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)" DocType: Workflow,Allow Self Approval,Laat selfgoedkeuring toe apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,John Doe DocType: DocType,Name Case,Naam Saak apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,Gedeel met almal -apps/frappe/frappe/model/base_document.py +392,Data missing in table,Data ontbreek in tabel +apps/frappe/frappe/model/base_document.py +401,Data missing in table,Data ontbreek in tabel DocType: Web Form,Success URL,Sukses-URL DocType: Email Account,Append To,Voeg by apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,Vaste hoogte @@ -2548,29 +2609,30 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,Jammer! Deel met webwerf gebruiker is verbode. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,Voeg alle rolle by +DocType: Website Theme,Bootstrap Theme,Bootstrap Tema apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!",Voer asseblief beide u e-pos en boodskap in sodat ons terugkom na u. Dankie! -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,Kon nie aan uitgaande e-pos bediener koppel nie +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,Kon nie aan uitgaande e-pos bediener koppel nie apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Dankie vir u belangstelling om in te teken op ons opdaterings DocType: Braintree Settings,Payment Gateway Name,Betaling Gateway Naam -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,Aangepaste kolom +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,Aangepaste kolom DocType: Workflow State,resize-full,grootte-vol DocType: Workflow State,off,af apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,terugneem -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Verslag {0} is gedeaktiveer +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,Verslag {0} is gedeaktiveer DocType: Activity Log,Core,Core apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Stel toestemmings DocType: DocField,Set non-standard precision for a Float or Currency field,Stel nie-standaard presisie vir 'n Vlot- of Geldveld DocType: Email Account,Ignore attachments over this size,Ignoreer aanhangsels oor hierdie grootte DocType: Address,Preferred Billing Address,Gewenste faktuuradres -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,Te veel skryf in een versoek. Stuur asseblief kleiner versoeke +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,Te veel skryf in een versoek. Stuur asseblief kleiner versoeke apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Waardes verander DocType: Workflow State,arrow-up,pyl-up DocType: OAuth Bearer Token,Expires In,Verval In DocType: DocField,Allow on Submit,Laat toe op Submit DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Uitsondering Tipe -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,Kies Kolomme +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Kies Kolomme DocType: Web Page,Add code as <script>,Voeg kode by as <script> DocType: Webhook,Headers,kop apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,Voer asseblief waardes in vir die Toegangsleutel vir Toegang en App Geheime Sleutel @@ -2589,6 +2651,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,Geen aktiewe sessies DocType: Top Bar Item,Right,reg DocType: User,User Type,Gebruiker Tipe +DocType: Prepared Report,Ref Report DocType,Ref Report DocType apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,Klik tabel om te wysig DocType: GCalendar Settings,Client ID,Kliënt-ID DocType: Async Task,Reference Doc,Verwysingsdokument @@ -2607,18 +2670,18 @@ DocType: Workflow State,Edit,wysig apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Magtigings kan bestuur word via Setup> Roltoestemmingsbestuurder DocType: Website Settings,Chat Operators,Chat Operateurs DocType: Contact Us Settings,Pincode,PIN-kode -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,Maak asseblief seker dat daar nie leë kolomme in die lêer is nie. +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,Maak asseblief seker dat daar nie leë kolomme in die lêer is nie. apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,Maak asseblief seker dat u profiel 'n e-pos adres het apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,U het ongestoorde veranderinge in hierdie vorm. Slaan asseblief voor jy verder gaan. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,Standaard vir {0} moet 'n opsie wees +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,Standaard vir {0} moet 'n opsie wees DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie DocType: User,User Image,Gebruikersbeeld -apps/frappe/frappe/email/queue.py +338,Emails are muted,E-posse is gedemp +apps/frappe/frappe/email/queue.py +341,Emails are muted,E-posse is gedemp apps/frappe/frappe/config/integrations.py +88,Google Services,Google Services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Ctrl + Up DocType: Website Theme,Heading Style,Opskrif Styl -apps/frappe/frappe/utils/data.py +625,1 weeks ago,1 weke gelede +apps/frappe/frappe/utils/data.py +627,1 weeks ago,1 weke gelede DocType: Communication,Error,fout DocType: Auto Repeat,End Date,Einddatum DocType: Data Import,Ignore encoding errors,Ignoreer kodering foute @@ -2626,6 +2689,7 @@ DocType: Chat Profile,Notifications,Kennisgewings DocType: DocField,Column Break,Kolombreuk DocType: Event,Thursday,Donderdag apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,Jy het nie toestemming om toegang tot hierdie lêer te kry nie +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,Stoor API-geheime: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},Kan nie gekanselleerde dokument skakel nie: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,Kan nie 'n standaardverslag wysig nie. Dupliseer asseblief en skep 'n nuwe verslag apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","Maatskappy is verpligtend, aangesien dit jou maatskappy se adres is" @@ -2642,9 +2706,9 @@ DocType: Custom Field,Label Help,Etikethulp DocType: Workflow State,star-empty,ster-leë apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,Data is dikwels maklik om te raai. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,Volgende aksies -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Kan nie standaard kennisgewing wysig nie. Om dit te redigeer, skakel dit asseblief af en dupliseer dit" +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Kan nie standaard kennisgewing wysig nie. Om dit te redigeer, skakel dit asseblief af en dupliseer dit" DocType: Workflow State,ok,ok -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,Dien oorsig in +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,Dien oorsig in DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Hierdie waardes word outomaties bygewerk in transaksies en sal ook nuttig wees om toestemmings vir hierdie gebruiker te beperk op transaksies wat hierdie waardes bevat. apps/frappe/frappe/twofactor.py +312,Verfication Code,Verfication Code apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,vir die herhaling van die herhalende @@ -2662,12 +2726,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,Herstel wagwoord apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Gradeer asseblief op om meer as {0} intekenare by te voeg DocType: Workflow State,hand-left,-Hand verlaat DocType: Data Import,If you are updating/overwriting already created records.,As u alreeds rekords opdateer / oorskryf. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,Veldtipe {0} vir {1} kan nie uniek wees nie +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,Veldtipe {0} vir {1} kan nie uniek wees nie apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,Is Global DocType: Email Account,Use SSL,Gebruik SSL DocType: Workflow State,play-circle,play-sirkel apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",Ongeldige "depends_on" uitdrukking -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,Groep Naam +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,Groep Naam apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Kies Drukformaat om te wysig DocType: Address,Shipping,Gestuur DocType: Workflow State,circle-arrow-down,sirkel-pyl-down @@ -2685,22 +2749,22 @@ DocType: SMS Settings,SMS Settings,SMS instellings DocType: Company History,Highlight,hoogtepunt DocType: OAuth Provider Settings,Force,Force DocType: DocField,Fold,Vou +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,stygende apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standaarddrukformaat kan nie opgedateer word nie apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Miss -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,Spesifiseer asseblief +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,Spesifiseer asseblief DocType: Communication,Bot,Bot DocType: Help Article,Help Article,Help artikel DocType: Page,Page Name,Naam van die bladsy apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Hulp: Veld Eienskappe apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},Voeg ook die afhanklike valuta veld {0} by apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,unzip -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},Onjuiste waarde in ry {0}: {1} moet {2} {3} wees -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Geen resultate gevind vir '

+apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},Onjuiste waarde in ry {0}: {1} moet {2} {3} wees apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,Stel jou Google-kalender-integrasie op -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},Skrap {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},Skrap {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Kies 'n bestaande formaat om 'n nuwe formaat te wysig of te begin. DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,Omseil beperkte IP-adres tjek as twee faktore geaktiveer word -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},Het aangepaste veld {0} in {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},Het aangepaste veld {0} in {1} DocType: System Settings,Time Zone,Tydsone apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Spesiale karakters word nie toegelaat nie DocType: Communication,Relinked,weer geskakel @@ -2716,7 +2780,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",Veld "roete" is verpligtend vir Web Views +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"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 +205,Insert Column Before {0},Voeg kolom voor {0} DocType: Email Account,Add Signature,Voeg handtekening by apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Verlaat hierdie gesprek @@ -2726,9 +2790,9 @@ DocType: DocField,No Copy,Geen kopie DocType: Workflow State,qrcode,QRCode DocType: Chat Token,IP Address,IP adres DocType: Data Import,Submit after importing,Dien na invoer in -apps/frappe/frappe/www/login.html +32,Login with LDAP,Teken in met LDAP +apps/frappe/frappe/www/login.html +33,Login with LDAP,Teken in met LDAP DocType: Web Form,Breadcrumbs,Broodkrummels -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,As Eienaar +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,As Eienaar DocType: Data Migration Mapping,Push,druk DocType: OAuth Authorization Code,Expiration time,Vervaldatum DocType: Web Page,Website Sidebar,Website Zijbalk @@ -2739,12 +2803,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} de apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,Algehele hoofletters is amper so maklik om te raai as kleinletters. DocType: Feedback Trigger,Email Fieldname,E-pos Veldnaam DocType: Website Settings,Top Bar Items,Top balkitems -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","E-pos ID moet uniek wees, E-posrekening bestaan reeds \ vir {0}" DocType: Notification,Print Settings,Druk instellings DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Maksimum Aanhegsels -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Kliënt sleutel is nodig +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,Kliënt sleutel is nodig DocType: Calendar View,End Date Field,Einddatum Veld DocType: Desktop Icon,Page,Page apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Kon nie {0} in {1} vind nie @@ -2753,21 +2815,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,Kennis basis DocType: Workflow State,briefcase,aktetas apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},Waarde kan nie verander word vir {0} DocType: Feedback Request,Is Manual,Is Handleiding -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},Bevestig asseblief aangehegte {0} # {1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},Bevestig asseblief aangehegte {0} # {1} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Styl verteenwoordig die knoppie kleur: Sukses - Groen, Gevaar - Rooi, Inverse - Swart, Primêr - Donkerblou, Inligting - Ligblou, Waarskuwing - Oranje" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Ry Status DocType: Workflow Transition,Workflow Transition,Workflow Transition apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,{0} maande gelede apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Gemaak deur -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,Dropbox Setup +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,Dropbox Setup DocType: Workflow State,resize-horizontal,grootte-horisontale DocType: Chat Message,Content,inhoud DocType: Data Migration Run,Push Insert,Druk Voeg apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,Groepknooppunt DocType: Communication,Notification,kennisgewing DocType: DocType,Document,dokument -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},Reeks {0} wat reeds in {1} gebruik word -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,Nie-ondersteunde lêerformaat +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},Reeks {0} wat reeds in {1} gebruik word +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,Nie-ondersteunde lêerformaat DocType: DocField,Code,kode DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Alle moontlike Workflow State en rolle van die workflow. Docstatus Opsies: 0 is "gestoor", 1 is "ingedien" en 2 is "gekanselleer"" DocType: Website Theme,Footer Text Color,Voet Tekst Kleur @@ -2778,13 +2840,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Ongeldige betaling gateway credentials DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Dit is die sjabloon lêer wat gegenereer word met slegs die rye wat fout het. U moet hierdie lêer gebruik vir korreksie en invoer. apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Stel toestemmings op dokumentsoorte en -rolle -apps/frappe/frappe/model/meta.py +160,No Label,Geen etiket +DocType: Data Migration Run,Remote ID,Eksterne ID +apps/frappe/frappe/model/meta.py +205,No Label,Geen etiket +DocType: System Settings,Use socketio to upload file,Gebruik socketio om die lêer op te laai apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,Indeksering gebreek apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,verfrissende apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,CV apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,Gewysig deur DocType: Address,Tripura,Tripura DocType: About Us Settings,"""Company History""","Maatskappygeskiedenis" +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,Hierdie dokument is verander nadat die e-pos gestuur is. +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,Wys verslag DocType: Address,Tamil Nadu,Tamil Nadu DocType: Email Rule,Email Rule,E-posreël apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document","Om te keer dat u herhalende foutboodskappe vanaf die stelsel stuur, het ons die Geblokkeerde veld in die Outo-herhaal dokument nagegaan" @@ -2798,7 +2864,7 @@ DocType: Notification,Send alert if this field's value changes,Stuur wakker as d apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Kies 'n DocType om 'n nuwe formaat te maak apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,'Ontvangers' is nie gespesifiseer nie apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,net nou -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,aansoek doen +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,aansoek doen DocType: Footer Item,Policy,beleid apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} Stellings nie gevind nie DocType: Module Def,Module Def,Module Def @@ -2812,7 +2878,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,deu DocType: Print Settings,Allow page break inside tables,Laat bladsybreek binne-in tabelle toe DocType: Email Account,SMTP Server,SMTP-bediener DocType: Print Format,Print Format Help,Drukformaathulp -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,Met groepe +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,Met groepe DocType: DocType,Beta,Beta apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,Beperk ikoon keuses vir alle gebruikers. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},herstel {0} as {1} @@ -2821,8 +2887,9 @@ DocType: DocField,Translatable,vertaalbaar DocType: Event,Every Month,Elke maand DocType: Letter Head,Letter Head in HTML,Briefkop in HTML DocType: Web Form,Web Form,Web vorm +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},Datum {0} moet in formaat wees: {1} DocType: About Us Settings,Org History Heading,Org Geskiedenis Opskrif -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Jammer. U het die maksimum gebruikerslimiet vir u intekening bereik. U kan ook 'n bestaande gebruiker uitskakel of 'n hoër intekeningplan koop. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Jammer. U het die maksimum gebruikerslimiet vir u intekening bereik. U kan ook 'n bestaande gebruiker uitskakel of 'n hoër intekeningplan koop. DocType: Print Settings,Allow Print for Cancelled,Laat Print vir gekanselleer toe DocType: Communication,Integrations can use this field to set email delivery status,Integrasies kan hierdie veld gebruik om e-pos afleweringstatus te stel DocType: Web Form,Web Page Link Text,Webblad skakel teks @@ -2835,13 +2902,12 @@ DocType: GSuite Settings,Allow GSuite access,Laat GSuite toegang toe DocType: DocType,DESC,Latere DocType: DocType,Naming,benaming DocType: Event,Every Year,Elke jaar -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,Kies Alles +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,Kies Alles apps/frappe/frappe/config/setup.py +247,Custom Translations,Aangepaste vertalings apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,vordering apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,per rol apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,Ontbrekende velde -apps/frappe/frappe/email/smtp.py +188,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posrekening nie opstelling nie. Skep asseblief 'n nuwe e-posrekening uit Instellings> E-pos> E-posrekening -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,Ongeldige veldnaam '{0}' in outoname +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,Ongeldige veldnaam '{0}' in outoname apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Soek in 'n dokument tipe apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,"Laat veld toe om redigeerbaar te bly, selfs nadat dit ingedien is" DocType: Custom DocPerm,Role and Level,Rol en Vlak @@ -2850,13 +2916,13 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Aangepaste verslae DocType: Website Script,Website Script,Webwerf skrif DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"As jy nie 'n eie publiseer Google Apps Script-webapparaat gebruik nie, kan jy die standaard https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec gebruik" apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,Gepasmaakte HTML Templates vir druk transaksies. -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,geaardheid +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,geaardheid DocType: Workflow,Is Active,Is aktief -apps/frappe/frappe/desk/form/utils.py +111,No further records,Geen verdere rekords +apps/frappe/frappe/desk/form/utils.py +114,No further records,Geen verdere rekords DocType: DocField,Long Text,Lang teks DocType: Workflow State,Primary,primêre DocType: Web Form,Go to this URL after completing the form (only for Guest users),Gaan na hierdie URL na voltooiing van die vorm (slegs vir gasgebruikers) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Ctrl + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Meer inligting DocType: Data Migration Mapping,Field Maps,Veldkaarte DocType: Desktop Icon,Desktop Icon,Desktop-ikoon @@ -2877,13 +2943,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,Streep Stellings DocType: Data Migration Mapping,Data Migration Mapping,Data Migrasie Mapping apps/frappe/frappe/www/login.py +89,Invalid Login Token,Ongeldige aanmeldingstoken -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,Gooi +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,Gooi apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,1 uur gelede DocType: Website Settings,Home Page,Tuisblad DocType: Error Snapshot,Parent Error Snapshot,Ouer Fout momentopname -DocType: Kanban Board,Filters,filters +DocType: Prepared Report,Filters,filters DocType: Workflow State,share-alt,aandeel-alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},Waglys moet een van {0} wees +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},Waglys moet een van {0} wees DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2902,12 +2968,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,Skripsies of navraagverslae
 DocType: Workflow Document State,Workflow Document State,Werkstroom Dokumentstaat
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,Lêer te groot
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,E-posrekening is verskeie kere bygevoeg
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,E-posrekening is verskeie kere bygevoeg
 DocType: Payment Gateway,Payment Gateway,Betaling Gateway
 DocType: Portal Settings,Hide Standard Menu,Versteek Standaard Menu
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,Voeg / Bestuur e-posdomeine.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},Kan nie kansellasie voor indiening nie. Sien Oorgang {0}
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,Drukformaat {0} is gedeaktiveer
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},Kan nie kansellasie voor indiening nie. Sien Oorgang {0}
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Drukformaat {0} is gedeaktiveer
 ,Address and Contacts,Adres en Kontakte
 DocType: Notification,Send days before or after the reference date,Stuur dae voor of na die verwysingsdatum
 DocType: User,Allow user to login only after this hour (0-24),Laat gebruiker toe om eers na hierdie uur in te teken (0-24)
@@ -2917,7 +2983,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,Voorspelbare vervangings soos '@' in plaas van 'a' help nie baie nie.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Toegewys deur my
 apps/frappe/frappe/utils/data.py +528,Zero,zero
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nie in ontwikkelaar af! Stel in site_config.json of maak 'Custom' DocType.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nie in ontwikkelaar af! Stel in site_config.json of maak 'Custom' DocType.
 DocType: Workflow State,globe,wêreld
 DocType: System Settings,dd.mm.yyyy,dd.mm.jjjj
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,Versteek veld in Standaarddrukformaat
@@ -2930,19 +2996,21 @@ DocType: DocType,Allow Import (via Data Import Tool),Laat invoer toe (via data i
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,Sr
 DocType: DocField,Float,float
 DocType: Print Settings,Page Settings,Bladsy instellings
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,Spaar ...
 DocType: Auto Repeat,Submit on creation,Dien op die skepping in
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,Ongeldige Wagwoord
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,Ongeldige Wagwoord
 DocType: Contact,Purchase Master Manager,Aankoop Meester Bestuurder
 DocType: Module Def,Module Name,Module Naam
 DocType: DocType,DocType is a Table / Form in the application.,DocType is 'n tabel / vorm in die aansoek.
 DocType: Social Login Key,Authorize URL,Gee URL aan
 DocType: Email Account,GMail,GMail
 DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} Verslag
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Verslag
 DocType: SMS Settings,Use POST,Gebruik POST
 DocType: Communication,SMS,SMS
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,Haal beelde
 DocType: DocType,Web View,Web View
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,Waarskuwing: Hierdie drukformaat is in ou styl en kan nie gegenereer word via die API nie.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,Waarskuwing: Hierdie drukformaat is in ou styl en kan nie gegenereer word via die API nie.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,totale
 DocType: DocField,Print Width,Drukbreedte
 ,Setup Wizard,Opstelassistent
@@ -2951,6 +3019,7 @@ DocType: Chat Message,Visitor,besoeker
 DocType: User,Allow user to login only before this hour (0-24),Laat gebruiker toe om eers voor hierdie uur in te teken (0-24)
 DocType: Social Login Key,Access Token URL,Toegangspunt URL
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,Vouer is verpligtend
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} toegeken {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,Nuwe boodskap van die webwerf van die webwerf
 DocType: Notification,Reference Date,Verwysingsdatum
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,Voer asseblief geldige mobiele nos in
@@ -2977,21 +3046,22 @@ DocType: DocField,Small Text,Klein teks
 DocType: Workflow,Allow approval for creator of the document,Laat goedkeuring vir die skepper van die dokument toe
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,API Endpoint Args
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,Administrateur het toegang verkry op {0} op {1} via IP-adres {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,Administrateur het toegang verkry op {0} op {1} via IP-adres {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,Gelykes
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Die opsie 'Dynamic Link' tipe veld moet na 'n ander skakelveld verwys met opsies as 'DocType'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Die opsie 'Dynamic Link' tipe veld moet na 'n ander skakelveld verwys met opsies as 'DocType'
 DocType: About Us Settings,Team Members Heading,Span Lede Opskrif
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,Ongeldige CSV-formaat
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Stel aantal rugsteun
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,Korrigeer asseblief die
 DocType: DocField,Do not allow user to change after set the first time,Moenie toelaat dat die gebruiker die eerste keer na die stel verander nie
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privaat of Publiek?
-apps/frappe/frappe/utils/data.py +633,1 year ago,1 jaar gelede
+apps/frappe/frappe/utils/data.py +635,1 year ago,1 jaar gelede
 DocType: Contact,Contact,Kontak
 DocType: User,Third Party Authentication,Derdeparty-verifikasie
 DocType: Website Settings,Banner is above the Top Menu Bar.,Banner is bokant die boonste spyskaart.
-DocType: Razorpay Settings,API Secret,API geheime
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,Uitvoerverslag:
+DocType: User,API Secret,API geheime
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} Kalender
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,Uitvoerverslag:
 DocType: Data Migration Run,Push Update,Druk Update
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,in die outomatiese herhaal dokument
 DocType: Email Account,Port,Port
@@ -3002,7 +3072,7 @@ DocType: Website Slideshow,Slideshow like display for the website,Skyfievertonin
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,Opstel Kennisgewings gebaseer op verskeie kriteria.
 DocType: Communication,Updated,Opgedateer
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,Kies Module
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,Soek of skep 'n nuwe klets
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,Soek of skep 'n nuwe klets
 apps/frappe/frappe/sessions.py +29,Cache Cleared,Cache skoon gemaak
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,nuwe epos
@@ -3018,7 +3088,7 @@ DocType: Print Settings,PDF Settings,PDF-instellings
 DocType: Kanban Board Column,Column Name,Kolom Naam
 DocType: Language,Based On,Gebaseer op
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Maak dit die terugval-opsie
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,Veldtipe {0} vir {1} kan nie geïndekseer word nie
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,Veldtipe {0} vir {1} kan nie geïndekseer word nie
 DocType: Communication,Email Account,E-pos rekening
 DocType: Workflow State,Download,Aflaai
 DocType: Blog Post,Blog Intro,Blog Intro
@@ -3032,7 +3102,7 @@ DocType: Web Page,Insert Code,Voeg kode in
 DocType: Data Migration Run,Current Mapping Type,Huidige Mapping Type
 DocType: ToDo,Low,lae
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Jy kan dinamiese eienskappe van die dokument by gebruik van Jinja templating.
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Ongeldige limiet {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},Ongeldige limiet {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Lys 'n dokumenttipe
 DocType: Event,Ref Type,Ref Type
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","As jy nuwe rekords oplaai, laat die kolom "naam" (ID) leeg."
@@ -3054,21 +3124,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N
 DocType: Print Settings,Send Print as PDF,Stuur Druk as PDF
 DocType: Web Form,Amount,bedrag
 DocType: Workflow Transition,Allowed,toegelaat
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,Daar kan net een vou in 'n vorm wees
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,Daar kan net een vou in 'n vorm wees
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},Kan nie lêerformaat skryf vir {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Herstel na verstekinstellings?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ongeldige tuisblad
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,Ongeldige aanmelding. Probeer weer.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},Opsies benodig vir skakel- of tabel tipe veld {0} in ry {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},Opsies benodig vir skakel- of tabel tipe veld {0} in ry {1}
 DocType: Auto Email Report,Send only if there is any data,Stuur slegs indien daar enige data is
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,Herstel filters
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0}: Toestemming op vlak 0 moet ingestel word voordat hoër vlakke ingestel is
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,Herstel filters
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0}: Toestemming op vlak 0 moet ingestel word voordat hoër vlakke ingestel is
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Opdrag gesluit deur {0}
 DocType: Integration Request,Remote,Afgeleë
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,bereken
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Kies asseblief eers DocType
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,Bevestig jou e-pos
-apps/frappe/frappe/www/login.html +40,Or login with,Of log in met
+apps/frappe/frappe/www/login.html +41,Or login with,Of log in met
 DocType: Error Snapshot,Locals,locals
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommunikeer via {0} op {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} het jou genoem in 'n opmerking in {1}
@@ -3078,23 +3148,24 @@ DocType: Integration Request,Integration Type,Integrasietipe
 DocType: Newsletter,Send Attachements,Stuur Aanhegsels
 DocType: Transaction Log,Transaction Log,Transaksie Log
 DocType: Contact Us Settings,City,Stad
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,Ctrl + Enter om in te dien
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,Ctrl + Enter om in te dien
 DocType: DocField,Perm Level,Permvlak
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,Bekyk dokument
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Gebeurtenisse In Vandag se Kalender
 DocType: Web Page,Web Page,Webblad
 DocType: Workflow Document State,Next Action Email Template,Volgende Aksie E-pos Sjabloon
 DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},'In Global Search' word nie toegelaat vir tipe {0} in ry {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},'In Global Search' word nie toegelaat vir tipe {0} in ry {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,Kyk lys
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},Datum moet in formaat wees: {0}
 DocType: Workflow,Don't Override Status,Moenie die status oorheers nie
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Gee asseblief 'n gradering.
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Terugvoerversoek
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Soekterm
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,Die eerste gebruiker: jy
 DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
+DocType: Prepared Report,Report Start Time,Rapporteer begin tyd
 apps/frappe/frappe/config/setup.py +112,Export Data,Uitvoer data
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,Kies Kolomme
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,Kies Kolomme
 DocType: Translation,Source Text,Bron teks
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,Ontbrekende parameters vir aanmelding
 DocType: Workflow State,folder-open,gids oop
@@ -3107,7 +3178,7 @@ DocType: Property Setter,Set Value,Stel waarde
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Versteek veld in vorm
 DocType: Webhook,Webhook Data,Webhook Data
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},Skep {0}
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,Onwettige toegangspunt. Probeer asseblief weer
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,Onwettige toegangspunt. Probeer asseblief weer
 apps/frappe/frappe/public/js/frappe/desk.js +92,"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/core/doctype/communication/communication.js +35,Resend,Stuur weer
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Opsioneel: Die waarskuwing sal gestuur word as hierdie uitdrukking waar is
@@ -3121,8 +3192,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,vlak
 DocType: Custom DocPerm,Report,verslag
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Bedrag moet groter as 0 wees.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} is gestoor
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,Gebruiker {0} kan nie hernoem word nie
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} is gestoor
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,Gebruiker {0} kan nie hernoem word nie
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),Veldnaam is beperk tot 64 karakters ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,E-posgroeplys
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],'N ikoonlêer met .ico uitbreiding. Moet 16 x 16 px wees. Genereer met behulp van 'n favicon generator. [Favicon-generator.org]
@@ -3135,23 +3206,22 @@ DocType: Website Theme,Background,agtergrond
 DocType: Report,Ref DocType,Ref DocType
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,Voer asseblief die kliënt ID in voordat sosiale aanmelding aangeskakel is
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,Voeg asseblief 'n gradering by
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0}: Kan nie verander sonder Kanselleer nie
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{0}: Cannot set Amend without Cancel,{0}: Kan nie verander sonder Kanselleer nie
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Volle bladsy
 DocType: DocType,Is Child Table,Is kindertafel
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} jaar gelede
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} moet een van {1} wees
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} moet een van {1} wees
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} bekyk tans hierdie dokument
 apps/frappe/frappe/config/core.py +52,Background Email Queue,Agtergrond-e-pos-wagwoord
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,Wagwoord Herstel
 DocType: Communication,Opened,geopen
 DocType: Workflow State,chevron-left,Chevron-links
 DocType: Communication,Sending,Stuur
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,Nie van hierdie IP-adres toegelaat nie
+apps/frappe/frappe/auth.py +272,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.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,Installeer programme.
 DocType: Contact,Last Name,Van
 DocType: Event,Private,Privaat
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,Geen waarskuwings vir vandag nie
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,Geen waarskuwings vir vandag nie
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Stuur e-pos Print Aanhegsels as PDF (Aanbeveel)
 DocType: Web Page,Left,links
 DocType: Event,All Day,Heeldag
@@ -3162,10 +3232,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",Prentveld (Moet v
 apps/frappe/frappe/utils/bot.py +43,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/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevind nie. Maak asseblief 'n nuwe een van Setup> Printing and Branding> Adres Sjabloon.
 DocType: Contact,Gender,geslag
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Verpligte inligting ontbreek:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,Veld '{0}' kan nie as Uniek gestel word nie omdat dit nie-unieke waardes bevat
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,Verpligte inligting ontbreek:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,Veld '{0}' kan nie as Uniek gestel word nie omdat dit nie-unieke waardes bevat
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Gaan versoek URL aan
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,Slegs 200 inserts word toegelaat in een versoek
 DocType: Footer Item,URL,URL
@@ -3181,12 +3250,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Boom
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,U mag nie hierdie verslag druk nie
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Gebruikers toestemmings
 DocType: Workflow State,warning-sign,waarskuwingsteken
+DocType: Prepared Report,Prepared Report,Voorbereide Verslag
 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
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,teks in dokument tipe
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Begin toetse
-apps/frappe/frappe/handler.py +94,Logged Out,Logged Out
+apps/frappe/frappe/handler.py +95,Logged Out,Logged Out
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Meer ...
 DocType: System Settings,User can login using Email id or Mobile number,Gebruiker kan inskakel met e-pos of mobiele nommer
 DocType: Bulk Update,Update Value,Werkwaarde
@@ -3194,12 +3264,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},M
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,Kies asseblief 'n nuwe naam om te hernoem
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,Ongeldige kolom
 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/request.js +167,Something went wrong,Iets het verkeerd geloop
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,Slegs {0} inskrywings getoon. Filter asseblief vir meer spesifieke resultate.
 DocType: System Settings,Number Format,Nommer Formaat
 DocType: Auto Repeat,Frequency,Frekwensie
 DocType: Custom Field,Insert After,Voeg na
-DocType: Report,Report Name,Rapporteer Naam
+DocType: Prepared Report,Report Name,Rapporteer Naam
 DocType: Desktop Icon,Reverse Icon Color,Omgekeerde ikoon Kleur
 DocType: Notification,Save,Save
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,Volgende Geskeduleerde Datum
@@ -3212,13 +3283,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,verstek
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} bygevoeg
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Soek vir '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,Slaan asseblief eers die verslag op
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Slaan asseblief eers die verslag op
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} intekenaars bygevoeg
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,Nie in nie
 DocType: Workflow State,star,ster
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,Hub
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,waardes geskei deur kommas
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,Max width for type Currency is 100px in row {0},Maksimum breedte vir tipe Geld is 100px in ry {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +281,values separated by commas,waardes geskei deur kommas
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Max width for type Currency is 100px in row {0},Maksimum breedte vir tipe Geld is 100px in ry {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Deel asseblief jou terugvoer vir {0}
 apps/frappe/frappe/config/website.py +13,Content web page.,Inhoud webblad.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Voeg 'n nuwe rol by
@@ -3231,15 +3302,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,Rekords vir die volgende doktipes sal gefiltreer word
 DocType: Blog Settings,Blog Introduction,Blog Inleiding
 DocType: Address,Office,kantoor
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,Hierdie Kanbanraad sal privaat wees
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,Hierdie Kanbanraad sal privaat wees
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standaard Verslae
 DocType: User,Email Settings,E-pos instellings
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,Voer asseblief u wagwoord in om voort te gaan
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,Voer asseblief u wagwoord in om voort te gaan
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,Nie 'n geldige LDAP-gebruiker nie
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} nie 'n geldige staat nie
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} nie 'n geldige staat nie
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,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
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,Soekveld {0} is nie geldig nie
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,Soekveld {0} is nie geldig nie
 DocType: Workflow State,ok-circle,ok-sirkel
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Jy kan dinge vind deur te vra om 'oranje in kliënte te vind'
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,Jammer! Gebruiker moet volledige toegang tot hul eie rekord hê.
@@ -3255,21 +3326,21 @@ DocType: DocField,Unique,unieke
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Gedeeltelike sukses
 DocType: Email Account,Service,diens
 DocType: File,File Name,Lêernaam
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),Het nie {0} vir {0} ({1}) gevind nie
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),Het nie {0} vir {0} ({1}) gevind nie
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Oeps, jy mag dit nie weet nie"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,volgende
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,U is suksesvol aangemeld
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,U is suksesvol aangemeld
 DocType: Calendar View,Calendar View,Kalender View
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Redigeer formaat
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,Voltooi Registrasie
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,Voltooi Registrasie
 DocType: GCalendar Settings,Enable,in staat te stel
-DocType: Google Maps,Home Address,Huisadres
+DocType: Google Maps Settings,Home Address,Huisadres
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),Nuut {0} (Ctrl + B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Bovenste balk kleur en teks kleur is dieselfde. Hulle moet goed kontras wees om leesbaar te wees.
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),U kan slegs op een slag maksimum 5000 rekords oplaai. (kan in sommige gevalle minder wees)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},Onvoldoende Toestemming vir {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),Verslag is nie gestoor nie (daar was foute)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,Kan die inhoud van die koptekst nie verander
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),Verslag is nie gestoor nie (daar was foute)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,Kan die inhoud van die koptekst nie verander
 DocType: Print Settings,Print Style,Druk Styl
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Nie gekoppel aan enige rekord nie
 DocType: Custom DocPerm,Import,invoer
@@ -3298,9 +3369,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,Verfris asseblief om die nuutste dokument te kry.
 DocType: User,Security Settings,Sekuriteitsinstellings
 DocType: Website Settings,Operators,operateurs
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,Voeg kolom by
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,Voeg kolom by
 ,Desktop,lessenaar
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},Uitvoerverslag: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},Uitvoerverslag: {0}
 DocType: Auto Email Report,Filter Meta,Filter Meta
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Teks wat vir Link na webbladsy vertoon moet word as hierdie vorm 'n webblad het. Skakelroete sal outomaties gegenereer word gebaseer op `page_name` en` parent_website_route`
 DocType: Feedback Request,Feedback Trigger,Terugvoer Trigger
@@ -3327,6 +3398,6 @@ DocType: Bulk Update,Max 500 records at a time,Maksimum 500 rekords op 'n sl
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","As u data in HTML is, kopieer asseblief die presiese HTML-kode met die etikette."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,Kan nie aangehegte lêer oopmaak nie. Het jy dit as CSV uitgevoer?
 DocType: DocField,Ignore User Permissions,Ignoreer gebruikertoestemmings
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,Vra asseblief u administrateur om u aanmelding te verifieer
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,Vra asseblief u administrateur om u aanmelding te verifieer
 DocType: Domain Settings,Active Domains,Aktiewe domeine
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,Wys log
diff --git a/frappe/translations/am.csv b/frappe/translations/am.csv
index ddd5f4e2fa..f2bd57895f 100644
--- a/frappe/translations/am.csv
+++ b/frappe/translations/am.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,አንድ መጠን መስክ እባክዎ ይምረጡ.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Esc ይጫኑ ለመዝጋት
-apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","አዲስ ተግባር, {0}: {1} የተሰጠህ ተደርጓል. {2}"
+apps/frappe/frappe/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}","አዲስ ተግባር, {0}: {1} የተሰጠህ ተደርጓል. {2}"
 DocType: Email Queue,Email Queue records.,የኢሜይል ወረፋ መዝገቦች.
 DocType: Address,Punjab,ፑንጃብ
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,አንድ .csv ፋይል በመስቀል ብዙ ንጥሎችን ዳግም ሰይም.
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,ድህረገፅ
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,ይህን ገጽ ለመድረስ መግባት አለብዎት
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ማስታወሻ: በርካታ ክፍለ ጊዜዎች ተንቀሳቃሽ መሣሪያ ሁኔታ ውስጥ የሚፈቀደው ይሆናል
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},ተጠቃሚ ነቅቷል የኢሜይል ገቢ መልዕክት ሳጥንዎ {ተጠቃሚዎች}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},ተጠቃሚ ነቅቷል የኢሜይል ገቢ መልዕክት ሳጥንዎ {ተጠቃሚዎች}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ይህ ኢሜይል መላክ አልተቻለም. በዚህ ወር ለ {0} ኢሜይሎች መላክ ገደብ ተሻገረ ነው.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,እስከመጨረሻው {0} አስገባ?
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,የፋይል መጠባበቂያውን አውርድ
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} ዛፍ
 DocType: User,User Emails,የተጠቃሚ ኢሜይሎች
 DocType: User,Username,የተጠቃሚ ስም
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,ዚፕ ያስመጡ
-apps/frappe/frappe/model/base_document.py +554,Value too big,ዋጋ በጣም ትልቅ ነው
+apps/frappe/frappe/model/base_document.py +563,Value too big,ዋጋ በጣም ትልቅ ነው
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,አሂድ ስክሪፕት ሙከራ
 DocType: Data Import,Total Rows,ጠቅላላ ረድፎች
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,ምዝግብ ማስታወሻዎች
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,ዛሬም ይህንን እርምጃ እራሱ ከላይ ከተጠቀሰበት ጊዜ መውሰድ አስፈላጊ ነው
 DocType: Custom DocPerm,This role update User Permissions for a user,አንድ ተጠቃሚ ይህን ሚና ዝማኔ የተጠቃሚ ፍቃዶች
-apps/frappe/frappe/public/js/frappe/model/model.js +539,Rename {0},ሰይም {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},ሰይም {0}
 DocType: Workflow State,zoom-out,አጉላ-ውጭ
 apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,መክፈት አይቻልም {0} በውስጡ ለምሳሌ ያህል ክፍት ነው ጊዜ
-apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,ሠንጠረዥ {0} ባዶ ሊሆን አይችልም
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,ሠንጠረዥ {0} ባዶ ሊሆን አይችልም
 DocType: SMS Parameter,Parameter,የልኬት
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,Ledgers ጋር
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,ሰነዱ ተቀይሯል!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,Ledgers ጋር
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,ሥዕሎች
 DocType: Activity Log,Reference Owner,የማጣቀሻ ባለቤት
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","ከነቃ ተጠቃሚው ከሁለት የማረጋገጫ አካል በመጠቀም በመለያ መግባት ይችላል, ይሄ ለሁሉም የስርዓት ቅንብሮች ውስጥ ለሁሉም ተጠቃሚዎች ሊቀናጅ ይችላል"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,ትንሹ ሲናፈስ ክፍልፋይ አሀድ (ሳንቲም). ይህ 0.01 እንደ መግባት ያለበት ሲሆን ዶላር ለማግኘት ለምሳሌ 1 በመቶ ለ
 DocType: Social Login Key,GitHub,የፊልሙ
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, የረድፍ {1}"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, የረድፍ {1}"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,አንድ FULLNAME መስጠት እባክህ.
-apps/frappe/frappe/model/document.py +1057,Beginning with,ጀምሮ
+apps/frappe/frappe/model/document.py +1058,Beginning with,ጀምሮ
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,የውሂብ አስመጣ አብነት
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,ወላጅ
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","የነቃ ከሆነ, የይለፍ ቃል ጥንካሬ ዝቅተኛ የይለፍ ውጤት ዋጋ ላይ ተመስርቶ ተፈጻሚ ይሆናል. 2 አንድ እሴት በመካከለኛ ጠንካራ መሆን እና 4 በጣም ጠንካራ መሆን."
 DocType: About Us Settings,"""Team Members"" or ""Management""","ቡድን አባላት" ወይም "አስተዳደር"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',መስክ ላይ 'ይመልከቱ »አይነት ነባሪ ወይ' 0 'ወይም' 1 'መሆን አለበት
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',መስክ ላይ 'ይመልከቱ »አይነት ነባሪ ወይ' 0 'ወይም' 1 'መሆን አለበት
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,ትናንትና
 DocType: Contact,Designation,ስያሜ
 DocType: Test Runner,Test Runner,የሙከራ Runner
@@ -66,10 +65,11 @@ DocType: Auto Repeat,Monthly,ወርሃዊ
 DocType: Address,Uttarakhand,Uttarakhand
 DocType: Email Account,Enable Incoming,ገቢ አንቃ
 apps/frappe/frappe/core/doctype/version/version_view.html +47,Danger,አደጋ
-apps/frappe/frappe/www/login.html +20,Email Address,የ ኢሜል አድራሻ
+apps/frappe/frappe/www/login.html +21,Email Address,የ ኢሜል አድራሻ
 DocType: Workflow State,th-large,ኛ-ትልቅ
 DocType: Communication,Unread Notification Sent,የተላከ ያልተነበበ ማሳወቂያ
 apps/frappe/frappe/public/js/frappe/misc/tools.js +10,Export not allowed. You need {0} role to export.,ወደ ውጪ ላክ አይፈቀድም. እርስዎ ወደ ውጪ ወደ {0} ሚና ያስፈልገናል.
+DocType: System Settings,In seconds,በሰከንዶች ውስጥ
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,ሰነዶች {0} ይሰረዝ?
 DocType: DocType,Is Published Field,መስክ የታተመ ነው
 DocType: GCalendar Settings,GCalendar Settings,የ GCalendar ቅንብሮች
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,የኢሜይል ቡድን
 DocType: Note,Seen By,በ ተመልክቻለሁ
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,በርካታ ያክሉ
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,የሚሰራ የተጠቃሚ ምስል አይደለም.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,አዘጋጅ> ተጠቃሚ
 DocType: Success Action,First Success Message,የመጀመሪያው የስኬት መልዕክት
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,አይደለም
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,በመስክ የማሳያ መለያ አዘጋጅ
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},ትክክል ያልሆነ እሴት: {0} መሆን አለበት {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},ትክክል ያልሆነ እሴት: {0} መሆን አለበት {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","ለውጥ መስክ ንብረቶች (ደብቅ, ተነባቢ ብቻ, ፈቃድ ወዘተ)"
 DocType: Workflow State,lock,ቁልፍ
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ያግኙን ገጽ ቅንብሮች.
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,አስተዳዳሪ የወጡ
+apps/frappe/frappe/core/doctype/user/user.py +917,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 +34,Add a tag ...,መለያ አክል ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},አዲስ {0}: # {1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},አዲስ {0}: # {1}
 DocType: Data Migration Run,Insert,አስገባ
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ይምረጡ {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,እባክዎን መነሻ ዩ አር ኤል ያስገቡ
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,የሰነድ አይነቶች
 DocType: Address,Jammu and Kashmir,ጃሙ እና ካሽሚር
 DocType: Workflow,Workflow State Field,የስራ ፍሰት ስቴት መስክ
-apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,-እስከ ይግቡ ወይም ለመጀመር እባክህ ግባ
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,-እስከ ይግቡ ወይም ለመጀመር እባክህ ግባ
 DocType: Blog Post,Guest,እንግዳ
 DocType: DocType,Title Field,የርእስ መስክ
 DocType: Error Log,Error Log,ስህተት ምዝግብ ማስታወሻ
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"If you think this is unauthorized, please change the Administrator password.","ይህ ያልተፈቀደለት ነው ብለው የሚያስቡ ከሆነ, የ አስተዳዳሪ የይለፍ ቃል መለወጥ እባክዎ."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} የግዴታ ነው
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} የግዴታ ነው
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","የአማራጭ አማራጮች:
  1. መስክ: [የመስክ ስም] - በመስክ
  2. የስምሪት ስሞች: - ስሞችን («Naming_series» የሚባል መስክ መሆን አለባቸው)
  3. አስገቢ - ለተመሳሳይ ስም የሚጠቅስ ተጠቃሚ
  4. [ተከታታይ] - ተከታታይ በቅድመ-ቃላት (በነጥብ የተለያየ); ለምሳሌ PRE. #####
  5. [fieldname1], [fieldname2], ... [fieldnameX] - በመስክ ስም ማስያዣ (እንደ ብዙ መስኮቶች እርስዎን ማጣመር ይችላሉ) የዘፈቀደ አማራጭም ይሠራል)
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,ባለቤት DocType: Communication,Visit,ጉብኝት DocType: LDAP Settings,LDAP Search String,ኤልዲኤፒ ፍለጋ ገመድ DocType: Translation,Translation,ትርጉም -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,ማዋቀር> ፎርሙን ያበጁ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,አቶ DocType: Custom Script,Client,ደምበኛ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,አምድ ይምረጡ @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,አስመጣ ምዝግብ ማስታወሻ apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,ድረ-ገጾች ላይ ክተት ምስል ተንሸራታች. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,ላክ DocType: Workflow Action Master,Workflow Action Name,የስራ ፍሰት የእርምጃ ስም -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,DocType ሊዋሃዱ አይችሉም +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,DocType can not be merged,DocType ሊዋሃዱ አይችሉም DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py +270,Not a zip file,አይደለም ዚፕ ፋይል DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,የሰነድ ክስተት apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,አንተ DocType: Braintree Settings,Braintree Settings,Braintree Settings DocType: Website Theme,lowercase,ፊደሎች -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,እባክዎ አምዶች ከስራ ላይ ይውላሉ apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,ማጣሪያን አስቀምጥ DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},{0} መሰረዝ አይቻልም +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,የቀድሞ አባቶች አይደሉም DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,ጋዚጣ አስቀድሞ ተልኳል apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","የመግቢያ ክፍለ ጊዜው ጊዜ አልፎበታል, እንደገና ለመሞከር ገጽን አድስ" @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,ኢሜይል ከደንበኝነት DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ምርጥ ውጤቶች በሚያሳይ ዳራ ጋር ገደማ ስፋት 150px የሆነ ምስል ይምረጡ. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,የሶስተኛ ወገን መተግበሪያዎች apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,የ የስርዓት አስተዳዳሪ ይሆናል የመጀመሪያው ተጠቃሚ (ይህንን በኋላ ላይ መቀየር ይችላሉ). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም. እባክዎ ከስር አዘጋጅ> የታተመ እና ስምሪት> የአድራሻ አብነት አዲስ አንድ ያድርጉ. apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,DocType ለተመረጠው የ Docc ክስተት ማስገባት አለበት ,App Installer,የመተግበሪያ ጫኝ DocType: Workflow State,circle-arrow-up,ክበብ-ቀስት-ምትኬ DocType: Email Domain,Email Domain,የኢሜይል ጎራ DocType: Workflow State,italic,ሰያፍ -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0}: ይፍጠሩ ያለ አስመጣ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0}: ይፍጠሩ ያለ አስመጣ ማዘጋጀት አይቻልም DocType: SMS Settings,Enter url parameter for message,መልዕክት ዩአርኤል መስፈርት አስገባ apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,ሪፖርትዎን በአሳሽዎ ውስጥ ይመልከቱ apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ክስተት እና ሌሎች የቀን መቁጠሪያዎች. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,ሁሉም መስኮች አስተያየት ለማስገባት አስፈላጊ ናቸው. +DocType: Print Settings,Printer Name,የአታሚ ስም +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,አምዶች ለመደርደር ይጎትቱ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,ስፋቶችን ፒክስል ወይም በ% ማስተካከል ይቻላል. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,መጀመሪያ DocType: Contact,First Name,የመጀመሪያ ስም @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,ፋይሎች apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,ፍቃዶች እነርሱ የተመደቡት እነዚህን ነገሮች ሚናዎች ላይ የተመሠረቱ ተጠቃሚዎች ላይ ተግባራዊ ያግኙ. apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,በዚህ ሰነድ ጋር የተዛመዱ ኢሜይሎችን መላክ አይፈቀዱም -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,{0} ለመደርደር / ቡድን ከ atleast 1 አምድ ይምረጡ +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,{0} ለመደርደር / ቡድን ከ atleast 1 አምድ ይምረጡ DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,የ ማጠሪያ ኤ ፒ አይን በመጠቀም ክፍያዎን በመሞከር ከሆነ ይህንን ያረጋግጡ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,አንድ መደበኛ ድረ-ገጽታ መሰረዝ አይፈቀድም DocType: Data Import,Log Details,የምዝግብ ማስታወሻዎች DocType: Feedback Trigger,Example,ለምሳሌ DocType: Webhook Header,Webhook Header,Webhook ራስጌ +DocType: Print Settings,Print Server,አታሚ አትም DocType: Workflow State,gift,ስጦታ DocType: Workflow Action,Completed By,ተጠናቅቋል apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Reqd @@ -223,12 +227,13 @@ 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/ui/toolbar/navbar.html +64,Documentation,ስነዳ +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,ስነዳ DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,እስከመጨረሻው {0} ንጥሎች ይሰረዙ? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,አይፈቀድም DocType: DocShare,Internal record of document shares,ሰነድ ማጋራቶች የውስጥ ዘገባ DocType: Workflow State,Comment,አስተያየት +DocType: Data Migration Plan,Postprocess Method,የድህረ-ዘርፍ ዘዴ apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,ፎቶ አንሳ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","ከእነርሱ ፈርመውበት, ከዚያም በመሰረዝ እና በ ገብቷል ሰነዶችን መቀየር ይችላሉ." DocType: Data Import,Update records,መዝገቦችን አዘምን @@ -236,20 +241,20 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,አሳይ DocType: Email Group,Total Subscribers,ጠቅላላ ተመዝጋቢዎች apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,አስቀምጥ እንደ +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,አስቀምጥ እንደ DocType: Communication,Seen,የታየው apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,ተጨማሪ ዝርዝሮችን አሳይ DocType: System Settings,Run scheduled jobs only if checked,መርጠነው ከሆነ ብቻ ነው መርሐግብር ስራዎችን አሂድ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,ክፍል ርዕሶች የነቃ ከሆነ ብቻ ነው ይታያሉ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,ማህደር -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,ፋይል ስቀል +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,ፋይል ስቀል DocType: Activity Log,Message,መልእክት DocType: Communication,Rating,ደረጃ አሰጣጥ DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","በመስክ ጠረጴዛ ላይ አንድ አምድ ከሆነ, በሜዳ ስፋት አትም" DocType: Dropbox Settings,Dropbox Access Key,መሸወጃ መዳረሻ ቁልፍ -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,በብጁ እስክሪፕት ውስጥ የ «_ < የተሳሳተ ቅጥያ» {0} +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,በብጁ እስክሪፕት ውስጥ የ «_ < የተሳሳተ ቅጥያ» {0} DocType: Workflow State,headphones,ማዳመጫዎች -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,የይለፍ ቃል ያስፈልጋል ወይም በመጠባበቅ ላይ የይለፍ ቃል መምረጥ ነው +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,የይለፍ ቃል ያስፈልጋል ወይም በመጠባበቅ ላይ የይለፍ ቃል መምረጥ ነው DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ለምሳሌ replies@yourcomany.com. ሁሉንም ምላሾች ይህን ገቢ መልዕክት ሳጥን ይመጣል. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook ዩ አር ኤል DocType: Data Migration Run,Current Mapping,የአሁኑ ካርታ @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes ቡድኖች apps/frappe/frappe/config/integrations.py +93,Google Maps integration,የ Google ካርታዎች ውህደት DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,የይለፍ ቃልዎን ዳግም ያስጀምሩ +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,የሳምንት እረፍት ቀናት አሳይ DocType: Workflow State,remove-circle,አስወግድ-ክበብ DocType: Help Article,Beginner,ጀማሪ DocType: Contact,Is Primary Contact,ዋና የእውቂያ ነው apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,ጃቫስክሪፕት ገጽ ራስ ክፍል ለማያያዝ. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,አይደለም ረቂቅ ሰነድ ማተም አይፈቀድም +apps/frappe/frappe/www/printview.py +80,Not allowed to print draft documents,አይደለም ረቂቅ ሰነድ ማተም አይፈቀድም apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +12,Reset to defaults,ወደ ነባሪዎች ዳግም አስጀምር DocType: Workflow,Transition Rules,የሽግግር ደንቦች apps/frappe/frappe/core/doctype/report/report.js +11,Example:,ለምሳሌ: -DocType: Google Maps,Google Maps,የጉግል ካርታዎች DocType: Workflow,Defines workflow states and rules for a document.,አንድ ሰነድ የስራ ፍሰት ስቴቶች እና ደንቦች ይገልፃል. DocType: Workflow State,Filter,ማጣሪያ apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},Fieldname {0} እንደ ልዩ ቁምፊዎችን ሊኖረው አይችልም {1} @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,በአ apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,ስህተት: እናንተ ከፍተዋል በኋላ ሰነድ ተቀይሯል apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} ዘግተው የወጡ: {1} DocType: Address,West Bengal,የምዕራብ ቤንጋል -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0}: መድብ Submittable አይደለም ከሆነ አስገባ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0}: መድብ Submittable አይደለም ከሆነ አስገባ ማዘጋጀት አይቻልም DocType: Transaction Log,Row Index,የረድፍ ማውጫ DocType: Social Login Key,Facebook,ፌስቡክ -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",በ የተጣራ "{0}» +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",በ የተጣራ "{0}» DocType: Salutation,Administrator,አስተዳዳሪ DocType: Activity Log,Closed,ዝግ DocType: Blog Settings,Blog Title,የጦማር ርዕስ apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,መደበኛ ሚና ተሰናክሏል አይችልም -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,የውይይት ዓይነት +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,የውይይት ዓይነት DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,በራሪ ጽሑፍ -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,በ ቅደም ንዑስ-መጠይቅ መጠቀም አይቻልም +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,በ ቅደም ንዑስ-መጠይቅ መጠቀም አይቻልም DocType: Web Form,Button Help,የአዝራር እገዛ DocType: Kanban Board Column,purple,ሐምራዊ DocType: About Us Settings,Team Members,ቡድን አባላት @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",የ SQL ሁኔ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com ከ በዓለም አቀፍ ደረጃ እውቅና አምሳያ ያግኙ apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","የእርስዎ የደንበኝነት ምዝገባ {0} ላይ ጊዜው አልፎበታል. ማደስ, {1}." DocType: Workflow State,plus-sign,የመደመር-ምልክት -apps/frappe/frappe/__init__.py +918,App {0} is not installed,የመተግበሪያ {0} አልተጫነም +apps/frappe/frappe/__init__.py +994,App {0} is not installed,የመተግበሪያ {0} አልተጫነም DocType: Data Migration Plan,Mappings,ማሻሻያዎች DocType: Notification Recipient,Notification Recipient,የማሳወቂያ ተቀባይ DocType: Workflow State,Refresh,አዝናና DocType: Event,Public,ሕዝባዊ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,ምንም የሚታይ የለም +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,ምንም የሚታይ የለም DocType: System Settings,Enable Two Factor Auth,የሁለት ዐይነት ሁነታዎችን አንቃ -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[አስቸኳይ] ለ% s ተደጋጋሚ% s በመፍጠር ላይ ሳለ ስህተት +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[አስቸኳይ] ለ% s ተደጋጋሚ% s በመፍጠር ላይ ሳለ ስህተት apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,በ የተወደደ DocType: DocField,Print Hide If No Value,የህትመት ደብቅ ከሆነ ምንም ዋጋ DocType: Kanban Board Column,yellow,ቢጫ -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,የመስክ አለበት የታተመ ነው ትክክለኛ fieldname መሆን +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,የመስክ አለበት የታተመ ነው ትክክለኛ fieldname መሆን apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,ስቀል አባሪ DocType: Block Module,Block Module,አግድ ሞዱል apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,አዲስ እሴት +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,ፈቃድ የለም አርትዕ ለማድረግ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,አንድ አምድ ያክሉ apps/frappe/frappe/www/contact.html +34,Your email address,የእርስዎ ኢሜይል አድራሻ DocType: Desktop Icon,Module,ሞዱል DocType: Notification,Send Alert On,ማንቂያ ላይ ላክ DocType: Customize Form,"Customize Label, Print Hide, Default etc.","መሰየሚያ, የህትመት ደብቅ ያብጁ, ነባሪ ወዘተ" -apps/frappe/frappe/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,እባክዎ የማጣቀሻ ግንኙነቶች ሰነዶች አማካይነት አልተገናኙም. +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,እባክዎ የማጣቀሻ ግንኙነቶች ሰነዶች አማካይነት አልተገናኙም. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,አዲስ ቅርጸት ፍጠር apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,ባዶ ለመፍጠር አልተቻለም: {0}. ወደ ልዩ ስም ይቀይሩት. DocType: Webhook,Request URL,ዩአርኤል ጥያቄ @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,ማውጫ ነው apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,የሚከተለውን DocTypes ለመጠቀም የተጠቃሚ ፈቃድን ተጠቀም DocType: Email Account,Total number of emails to sync in initial sync process ,ኢሜይሎች ጠቅላላ ብዛት የመጀመሪያ ማመሳሰል ሂደት ውስጥ ለማመሳሰል DocType: Website Settings,Set Banner from Image,ምስል ከ አዘጋጅ ሰንደቅ -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,ግሎባል ፍለጋ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,ግሎባል ፍለጋ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},አዲስ መለያ ላይ ለእርስዎ ተፈጥሯል {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,መመሪያዎች ኢሜይል የተደረገለት @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,ቨረንዳ DocType: Email Flag Queue,Email Flag Queue,የኢሜይል ይጠቁሙ ወረፋ apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,የቅርጫት ቅርጸቶች ለህትመት ቅርጸቶች apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ክፍት መለየት አይቻልም {0}. ሌላ ነገር ይሞክሩ. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,የእርስዎ መረጃ ገብቷል -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,{0} ተጠቃሚ ሊሰረዝ አይችልም +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,የእርስዎ መረጃ ገብቷል +apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,{0} ተጠቃሚ ሊሰረዝ አይችልም DocType: System Settings,Currency Precision,የምንዛሬ ዝንፍ የማይሉ apps/frappe/frappe/public/js/frappe/request.js +143,Another transaction is blocking this one. Please try again in a few seconds.,ሌላው ግብይት ይህን ሰው ማገድ ነው. በጥቂት ሰከንዶች ውስጥ እንደገና ሞክር. DocType: DocType,App,የመተግበሪያ @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,ሁሉ DocType: Workflow State,Print,እትም DocType: User,Restrict IP,የ IP ገድብ apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,ዳሽቦርድ -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,በዚህ ጊዜ ኢሜይሎችን መላክ አልተቻለም -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,ይፈልጉ ወይም ትእዛዝ ይተይቡ +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,በዚህ ጊዜ ኢሜይሎችን መላክ አልተቻለም +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,ይፈልጉ ወይም ትእዛዝ ይተይቡ DocType: Activity Log,Timeline Name,የጊዜ መስመር ስም DocType: Email Account,e.g. smtp.gmail.com,ለምሳሌ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,አዲስ ደንብ አክል @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,የወላጅ መለያ ስም apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","ጥያቄዎ ደርሶናል ተደርጓል. በቅርቡ ምላሽ ይሆናል. ማንኛውም ተጨማሪ መረጃ ያላቸው ከሆነ, ይህን መልዕክት ምላሽ ይስጡ." DocType: GCalendar Account,Allow GCalendar Access,የ GCalendar መዳረሻን ፍቀድ -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} አስገዳጅ መስክ ነው +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} አስገዳጅ መስክ ነው apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,የመግቢያ ማስመሰያ ይጠየቃል DocType: Event,Repeat Till,ድረስ ድገም apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,አዲስ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Gsuite ቅንብሮች ላይ ስክሪፕት ዩ አር ኤል ማዘጋጀት እባክዎ +DocType: Google Maps Settings,Google Maps Settings,የ Google ካርታዎች ቅንብሮች apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,በመጫን ላይ ... DocType: DocField,Password,የይለፍ ቃል apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,የእርስዎ ስርዓት ዘምኗል ነው. ከጥቂት ጊዜ በኋላ እንደገና ለማደስ እባክዎ @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,ምንም ተዛማጅ ሰነዶች. አዲስ ነገር ፈልግ DocType: Chat Profile,Away,ውጪ DocType: Currency,Fraction Units,ክፍልፋይ አሃዶች -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} ከ {1} ወደ {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} ከ {1} ወደ {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,እንደተከናወነ ምልክት አድርግበት DocType: Chat Message,Type,ዓይነት DocType: Activity Log,Subject,ትምህርት @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,የገንዘብ መጠን መስክ ላ apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,የተጠቃሚ አጋራ ግዴታ ነው DocType: DocField,Hidden,የተደበቀ DocType: Web Form,Allow Incomplete Forms,ያልተሟላ ቅጾች ፍቀድ -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} አስቀድሞ መዘጋጀት አለበት +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,ፒዲኤፍ ማመንጨት አልተሳካም +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} አስቀድሞ መዘጋጀት አለበት apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","የጋራ ሐረጎች ለማስቀረት, ጥቂት ቃላትን ይጠቀሙ." DocType: Workflow State,plane,አውሮፕላን apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ በአሁኑ ጊዜ ከሆነ, "ተከታታይ መሰየምን", የግዴታ ይሆናል." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,በዛሬው ጊዜ ማንቂያዎች ያግኙ -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DocType ብቻ አስተዳዳሪ ተሰይሟል ይችላል +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,በዛሬው ጊዜ ማንቂያዎች ያግኙ +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DocType ብቻ አስተዳዳሪ ተሰይሟል ይችላል DocType: Chat Message,Chat Message,የውይይት መልእክት apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},ኢሜል በ {0} አልተረጋገጠም -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},ሊቀየር እሴት {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},ሊቀየር እሴት {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","ተጠቃሚው ማንኛውም ሚና ከተመረጠ, ተጠቃሚው "የስርዓት ተጠቃሚ" ይሆናል. "የስርዓት ተጠቃሚ" ወደ ዴስክቶፕ መዳረሻ አለው" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,ማረጋገጫ ለማግኘት እባክዎ ኢሜይልዎን ያረጋግጡ -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,ከዚህም በረት ያልሆኑ ቅጽ መጨረሻ ላይ መሆን አይችልም +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,ማረጋገጫ ለማግኘት እባክዎ ኢሜይልዎን ያረጋግጡ +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,ከዚህም በረት ያልሆኑ ቅጽ መጨረሻ ላይ መሆን አይችልም DocType: Communication,Bounced,ካረፈ DocType: Deleted Document,Deleted Name,ተሰርዟል ስም apps/frappe/frappe/config/setup.py +14,System and Website Users,ሥርዓት እና የድር ጣቢያ ተጠቃሚዎች @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,doc ሁኔታ DocType: Data Migration Run,Pull Update,ዝማኔን ጎትት DocType: Auto Email Report,No of Rows (Max 500),ረድፎች አይ (ከፍተኛው 500) DocType: Language,Language Code,የቋንቋ ኮድ +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ማሳሰቢያ: በነባር ኢሜይሎች ለተሳኩ ምትኬዎች በነባሪነት ይላካሉ. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","የእርስዎ ውርድ እየተገነባ ነው, ይሄ ጥቂት ጊዜ ሊወስድ ይችላል ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,ማጣሪያ አክል apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},ኤስ ኤም ኤስ የሚከተሉትን ቁጥሮች ላከ: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,የእርስዎ ደረጃ: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} እና {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,አንድ ውይይት ይጀምሩ. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,የእርስዎ ደረጃ: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ አልተዋቀረም. እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ አዲስ የኢሜይል አድራሻ ይፍጠሩ +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} እና {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,Start a conversation.,አንድ ውይይት ይጀምሩ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ሁልጊዜ የሕትመት ረቂቅ ሰነዶች ርዕስ "ረቂቅ" ለማከል DocType: Data Migration Run,Current Mapping Start,የአሁኑ የካርታ ጀምር apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,የኢሜይል እንደ አይፈለጌ መልዕክት ምልክት ተደርጎበታል DocType: About Us Settings,Website Manager,የድር ጣቢያ አስተዳዳሪ -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,የፋይል ሰቀላ አልተያያዘም. እባክዎ ዳግም ይሞክሩ. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,ልክ ያልሆነ የፍለጋ መስክ +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,የፋይል ሰቀላ አልተያያዘም. እባክዎ ዳግም ይሞክሩ. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,ትርጉሞች apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,የመረጡት ረቂቅ ወይም የተሰረዙ ሰነዶችን -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},ሰነድ {0} {1} በ {2} ውስጥ እንዲገለጽ ተዘጋጅቷል -apps/frappe/frappe/model/document.py +1211,Document Queued,የሰነድ ወረፋ +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},ሰነድ {0} {1} በ {2} ውስጥ እንዲገለጽ ተዘጋጅቷል +apps/frappe/frappe/model/document.py +1212,Document Queued,የሰነድ ወረፋ DocType: GSuite Templates,Destination ID,መድረሻ መታወቂያ DocType: Desktop Icon,List,ዝርዝር DocType: Activity Log,Link Name,አገናኝ ስም -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,"የመስክ {0} ረድፍ ውስጥ {1} ሊደበቅ አይችልም, እና ነባሪ ያለ የግዴታ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,"የመስክ {0} ረድፍ ውስጥ {1} ሊደበቅ አይችልም, እና ነባሪ ያለ የግዴታ" DocType: System Settings,mm/dd/yyyy,ወር / ቀን / ዓመት -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,የተሳሳተ የሚስጥርቃል: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,የተሳሳተ የሚስጥርቃል: DocType: Print Settings,Send document web view link in email,በኢሜይል ውስጥ ሰነድ የድር እይታ አገናኝ ላክ apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ሰነድ የእርስዎ ግብረ {0} በተሳካ ሁኔታ ተቀምጧል ነው apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,ቀዳሚ -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,ጉዳዩ: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} ለ ረድፎች {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,ጉዳዩ: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} ለ ረድፎች {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",ንዑስ-ምንዛሬ. ለምሳሌ "ሳንቲም" ለ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,የግንኙነት ስም -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,የተሰቀለ ፋይል ይምረጡ +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,የተሰቀለ ፋይል ይምረጡ DocType: Letter Head,Check this to make this the default letter head in all prints,ሁሉም ህትመቶች ውስጥ ይህን የነባሪ ደብዳቤ ራስ ለማድረግ ይህንን ምልክት ያድርጉ DocType: Print Format,Server,አገልጋይ -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,አዲስ Kanban ቦርድ +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,አዲስ Kanban ቦርድ DocType: Desktop Icon,Link,ማያያዣ apps/frappe/frappe/utils/file_manager.py +122,No file attached,የተያያዘው ምንም ፋይል DocType: Version,Version,ትርጉም +DocType: S3 Backup Settings,Endpoint URL,የመጨረሻ ነጥብ ዩአርኤል apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,ሰንጠረዦች DocType: User,Fill Screen,ማያ ገጽ ሙላ apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,የውይይት መገለጫ ለተጠቃሚ {ተጠቃሚ} አለ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,ፍቃዶች በራስ ሰር ወደ መደበኛ ዘገባዎች እና ፍለጋዎች ይተገበራሉ. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,ሰቀላ አልተሳካም -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,ስቀል በኩል አርትዕ +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,ስቀል በኩል አርትዕ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","የሰነድ ዓይነት ..., ለምሳሌ የደንበኛ" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,ሁኔታ «{0}» ልክ ያልሆነ ነው DocType: Workflow State,barcode,የአሞሌ @@ -486,22 +496,24 @@ DocType: Country,Country Name,የአገር ስም DocType: About Us Team Member,About Us Team Member,እኛ ቡድን አባል ስለ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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,እሮብ -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,የምስል መስክ ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,የምስል መስክ ልክ የሆነ fieldname መሆን አለበት DocType: Chat Token,Token,ማስመሰያ DocType: Property Setter,ID (name) of the entity whose property is to be set,የማን ንብረት ህጋዊ አካል መታወቂያ (ስም) ሊዘጋጅ ነው apps/frappe/frappe/limits.py +84,"To renew, {0}.","ማደስ, {0}." DocType: Website Settings,Website Theme Image Link,የድር ጣቢያ ገጽታ ምስል አገናኝ DocType: Web Form,Sidebar Items,የጎን ንጥሎች +DocType: Web Form,Show as Grid,እንደ ፍርግርግ አሳይ apps/frappe/frappe/installer.py +129,App {0} already installed,የመተግበሪያ {0} አስቀድሞ ተጭኗል -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,ምንም ቅድመ-እይታ የለም +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,ምንም ቅድመ-እይታ የለም DocType: Workflow State,exclamation-sign,ቃለ አጋኖ-ምልክት apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,ፍቃዶችን አሳይ -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,የጊዜ ሂደት መስክ አንድ አገናኝ ወይም ተለዋዋጭ አገናኝ መሆን አለበት +DocType: Data Import,New data will be inserted.,አዲስ ውሂብ ይካተታል. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,የጊዜ ሂደት መስክ አንድ አገናኝ ወይም ተለዋዋጭ አገናኝ መሆን አለበት apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,ቀን ክልል apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},ገጽ {0} ከ {1} DocType: About Us Settings,Introduce your company to the website visitor.,ድር ጎብኚ የእርስዎን ኩባንያ ማስተዋወቅ. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json","የኢንክሪፕሽን ቁልፍ ልክ ያልሆነ ነው, site_config.json ያረጋግጡ" +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json","የኢንክሪፕሽን ቁልፍ ልክ ያልሆነ ነው, site_config.json ያረጋግጡ" DocType: SMS Settings,Receiver Parameter,ተቀባይ መለኪያ DocType: Data Migration Mapping Detail,Remote Fieldname,የርቀት ክልል ስም DocType: Communication,To,ወደ @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,የፊደል መጠን DocType: System Settings,Disable Standard Email Footer,መደበኛ የኢሜይል ግርጌ አሰናክል DocType: Workflow State,facetime-video,FaceTime-ቪዲዮ apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 አስተያየት -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,ታይቷል +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,ታይቷል DocType: Notification,Days Before,ቀናት በፊት DocType: Workflow State,volume-down,ድምጽ-ታች -apps/frappe/frappe/desk/reportview.py +268,No Tags,ምንም መለያዎች +apps/frappe/frappe/desk/reportview.py +270,No Tags,ምንም መለያዎች DocType: DocType,List View Settings,ዝርዝር እይታ ቅንብሮች DocType: Email Account,Send Notification to,ወደ ማሳወቂያ ላክ DocType: DocField,Collapsible,ሊሰበሰቡ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,ተቀምጧል -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,ምን ጋር እርዳታ የሚያስፈልጋቸው ለምንድን ነው? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,ምን ጋር እርዳታ የሚያስፈልጋቸው ለምንድን ነው? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ይምረጡ አማራጮች. አዲስ መስመር ላይ እያንዳንዱ አማራጭ. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,እስከመጨረሻው ሰርዝ {0}? DocType: Workflow State,music,ሙዚቃ +DocType: Website Theme,Text Styles,የጽሑፍ ቅጦች apps/frappe/frappe/www/qrcode.html +3,QR Code,QR ኮድ -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,መጨረሻ የተሻሻለው ቀን +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,መጨረሻ የተሻሻለው ቀን DocType: Chat Profile,Settings,ቅንብሮች DocType: Print Format,Style Settings,ቅጥ ቅንብሮች apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,የ Axis መስኮች -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,ደርድር መስክ {0} ልክ የሆነ fieldname መሆን አለበት -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,ይበልጥ +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,ደርድር መስክ {0} ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,ይበልጥ DocType: Contact,Sales Manager,የሽያጭ ሃላፊ -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,ዳግም ሰይም +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,ዳግም ሰይም DocType: Print Format,Format Data,ቅርጸት ውሂብ DocType: List Filter,Filter Name,የማጣሪያ ስም apps/frappe/frappe/utils/bot.py +91,Like,እንደ @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,የውይይት ክፍል ስም DocType: OAuth Client,Grant Type,ፍቃድ ስጥ አይነት apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,አንድ ተጠቃሚ የማበጀት ናቸው ሰነዶች ይመልከቱ DocType: Deleted Document,Hub Sync ID,የሃብ ማመሳሰል መታወቂያ -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,እንደ ልዩ ምልክት% መጠቀም +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,እንደ ልዩ ምልክት% መጠቀም DocType: Auto Repeat,Quarterly,የሩብ ዓመት apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",የኢሜይል ጎራ አንድ ፍጠር: ለዚህ መለያ አልተዋቀረም? DocType: User,Reset Password Key,ዳግም አስጀምር የይለፍ ቁልፍ @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,ዝቅተኛ የይለፍ ውጤት DocType: DocType,Fields,መስኮች DocType: System Settings,Your organization name and address for the email footer.,የኢሜይል ግርጌ የእርስዎ ድርጅት ስም እና አድራሻ. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,ወላጅ ማውጫ +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,ወላጅ ማውጫ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 ምትኬ ተጠናቅቋል! apps/frappe/frappe/config/desktop.py +60,Developer,ገንቢ -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,የተፈጠረ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,የተፈጠረ apps/frappe/frappe/client.py +101,No permission for {doctype},ለ {doctype} ፈቃድ የለም apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{0} in row {1} cannot have both URL and child items,{0} ረድፍ ውስጥ {1} ሁለቱም ዩአርኤል እና ልጅ ንጥሎች ሊኖሩት አይችልም +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,የቀድሞ አባቶች apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,{0} ሥር ሊሰረዝ አይችልም apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,እስካሁን ምንም አስተያየቶች የሉም apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings",እባክዎ በኤስ.ኤም.ኤስ. ቅንብሮች በኩል እንደ አረጋጋጭ ስልት ከማዘጋጀቱ በፊት እባክዎ ኤስኤምኤስን ያዋቅሩ @@ -576,6 +590,7 @@ DocType: Contact,Open,ክፈት DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,ግዛቶች ላይ እርምጃዎች እና ወደ ቀጣዩ ደረጃ እና ፈቀደ ሚናዎች ይገልፃል. DocType: Data Migration Mapping,Remote Objectname,የርቀት የጠቀሜታ ስም apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","አንድ ምርጥ ልምድ, የተለያዩ ሚናዎች ፍቃድ አገዛዝ ተመሳሳይ ስብስብ ለሌላ አይደለም. ከዚህ ይልቅ, ተመሳሳይ ተጠቃሚ በርካታ ሚናዎች ተዘጋጅቷል." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,እባክዎ ይህን ሰነድ በ {0} ይህን ያረጋግጡ. DocType: Success Action,Next Actions HTML,ቀጣይ እርምጃዎች HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,ብቻ {0} ሪፖርቶች በተጠቃሚ ይፈቀዳሉ ኢሜይል DocType: Address,Address Title,አድራሻ ርዕስ @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,በየቀኑ apps/frappe/frappe/config/setup.py +19,User Roles,የተጠቃሚ ሚናዎችን DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ንብረት አቀናጅ መደበኛ DocType ወይም የመስክ ንብረት ይሽራል -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,አዘምን አይቻልም: ትክክል ያልሆነ / ጊዜው አገናኝ. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,አዘምን አይቻልም: ትክክል ያልሆነ / ጊዜው አገናኝ. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,የተሻለ ጥቂት ተጨማሪ ፊደላት ወይም ሌላ ቃል አክል apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},አንድ ጊዜ የይለፍ ቃል (OTP) የምዝገባ ኮድ ከ {} DocType: DocField,Set Only Once,ብቻ አንዴ አዘጋጅ DocType: Email Queue Recipient,Email Queue Recipient,የኢሜይል ወረፋ ተቀባይ DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,የድርhook ዩአርኤል -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,የተጠቃሚ ስም {0} አስቀድሞ አለ -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,{0}: {1} importable አይደለም እንደ ከውጪ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,የተጠቃሚ ስም {0} አስቀድሞ አለ +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,{0}: {1} importable አይደለም እንደ ከውጪ ማዘጋጀት አይቻልም apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},ከእርስዎ አድራሻ መለጠፊያ ውስጥ አንድ ስህተት አለ {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} በ 'ተቀባዮች' ውስጥ ልክ ያልሆነ የኢሜይል አድራሻ ነው. DocType: User,Allow Desktop Icon,የዴስክቶፕ አዶ ፍቀድ DocType: Footer Item,"target = ""_blank""",target = "ባዶን" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,አስተናጋጅ -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,አምድ {0} አስቀድመው አሉ. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,አምድ {0} አስቀድመው አሉ. DocType: ToDo,High,ከፍ ያለ DocType: S3 Backup Settings,Secret Access Key,የምስጢር ቁልፍ ቁልፍ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,ተባዕት -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,የ OTP ሚስጥር ዳግም ተጀምሯል. ዳግም ምዝገባ በሚቀጥለው መግቢያ ላይ ያስፈልጋል. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,የ OTP ሚስጥር ዳግም ተጀምሯል. ዳግም ምዝገባ በሚቀጥለው መግቢያ ላይ ያስፈልጋል. DocType: Communication,From Full Name,ሙሉ ስም ከ -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},እርስዎ ሪፖርት መዳረሻ የለህም: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},እርስዎ ሪፖርት መዳረሻ የለህም: {0} DocType: User,Send Welcome Email,እንኳን ደህና መጡ ኢሜይል ላክ -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,ማጣሪያ አስወግድ +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,ማጣሪያ አስወግድ +DocType: Web Form Field,Show in filter,በማጣሪያ ውስጥ አሳይ DocType: Address,Daman and Diu,Daman እና Diu -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,ፕሮጀክት +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,ፕሮጀክት DocType: Address,Personal,የግል apps/frappe/frappe/config/setup.py +125,Bulk Rename,የጅምላ ይቀየር DocType: Email Queue,Show as cc,ካርቦን እንደ አሳይ @@ -625,12 +641,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,ፕሮፌ apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,አይደለም የገንቢ ሁነታ ላይ apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,የፋይል መጠባበቂያ ዝግጁ ነው DocType: DocField,In Global Search,* Global Search ውስጥ +DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,ገብ-ግራ apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,ይህ ፋይል መሰረዝ አደገኛ ነው: {0}. እባክዎ የስርዓት አስተዳዳሪዎን ያግኙ. DocType: Currency,Currency Name,የምንዛሬ ስም apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,ምንም ኢሜይሎች -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,አገናኝ ጊዜ አልፎበታል -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,የፋይል ቅርጸት ይምረጡ +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} ዓመቱ (ዓመታት) በፊት +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,አገናኝ ጊዜ አልፎበታል +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,የፋይል ቅርጸት ይምረጡ DocType: Report,Javascript,ጃቫስክሪፕት DocType: File,Content Hash,የይዘት Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,መደብሮች የተለያዩ የተጫኑ መተግበሪያዎች የመጨረሻ የታወቀ ስሪቶች መካከል በ JSON. ይህ መግለጫ ለማሳየት ጥቅም ላይ ይውላል. @@ -642,16 +660,15 @@ DocType: Auto Repeat,Stopped,አቁሟል apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,ማስወገድ አይችሉም ነበር apps/frappe/frappe/desk/like.py +89,Liked,የተወደደ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,አሁን ላክ -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","መደበኛ DocType አብጅ ቅጽ መጠቀም, ነባሪ ህትመት ቅርጸት ሊኖረው አይችልም" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","መደበኛ DocType አብጅ ቅጽ መጠቀም, ነባሪ ህትመት ቅርጸት ሊኖረው አይችልም" DocType: Report,Query,ጥያቄ DocType: DocType,Sort Order,የድርድር ቅደም ተከተል -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},'ዝርዝር ይመልከቱ ውስጥ' ረድፍ ውስጥ አይነት {0} አይፈቀድም {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},'ዝርዝር ይመልከቱ ውስጥ' ረድፍ ውስጥ አይነት {0} አይፈቀድም {1} DocType: Custom Field,Select the label after which you want to insert new field.,አዲስ መስክ ማስገባት ይፈልጋሉ በኋላ ያለውን መለያ ይምረጡ. ,Document Share Report,የሰነድ አጋራ ሪፖርት DocType: Social Login Key,Base URL,መነሻ URL DocType: User,Last Login,የመጨረሻው መግቢያ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},ለትርጉም << ትራንስክሪፕት >> ማስተካከል አይችሉም {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},Fieldname ረድፍ ውስጥ ያስፈልጋል {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,አምድ DocType: Chat Profile,Chat Profile,የውይይት መገለጫ DocType: Custom Field,Adds a custom field to a DocType,አንድ DocType ወደ ብጁ መስክ ያክላል @@ -660,6 +677,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,የህትመት atleast 1 መዝገብ ይምረጡ apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,በመጀመሪያ ስም አስቀምጠው መዝገቡን ያስቀምጡ. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},ጋር ተጋርቷል {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,ከደንበኝነት DocType: View log,Reference Name,የማጣቀሻ ስም @@ -681,17 +699,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,አ apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} ወደ {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,ጥያቄዎች ወቅት ስህተት ይግቡ. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} በተሳካ ሁኔታ የኢሜይል ቡድን ታክሏል. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,በአብነት ውስጥ ዝግጁ የሆኑ ራስጌዎችን አታርትዑ +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,በአብነት ውስጥ ዝግጁ የሆኑ ራስጌዎችን አታርትዑ apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},የመግቢያ ማረጋገጫ ኮድ ከ {} DocType: Address,Uttar Pradesh,ኡታር ፕራዴሽ +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,ማስታወሻ: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,ሁኔታን አስገባ -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,የግል ወይም የሕዝብ ፋይል (ሎች) ያድርጉት? +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,የግል ወይም የሕዝብ ፋይል (ሎች) ያድርጉት? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},ለመላክ የተያዘለት {0} DocType: Kanban Board Column,Indicator,አመልካች DocType: DocShare,Everyone,ሁሉም ሰው DocType: Workflow State,backward,ወደኋላ -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ተመሳሳይ ሚና, Level እና ጋር ብቻ ይፈቀዳል አንድ አገዛዝ {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ተመሳሳይ ሚና, Level እና ጋር ብቻ ይፈቀዳል አንድ አገዛዝ {1}" DocType: Email Queue,Add Unsubscribe Link,ከደንበኝነት አገናኝ አክል apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ገና ምንም አስተያየቶች የሉም. አዲስ ውይይት ይጀምሩ. DocType: Workflow State,share,ያጋሩ @@ -703,6 +722,7 @@ DocType: User,Last IP,የመጨረሻው የ IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,/ አሻሽል ያድሱ apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,አዲስ ሰነድ {0} ከእርስዎ ጋር የተጋራ {1} ሆኗል. DocType: Data Migration Connector,Data Migration Connector,የውሂብ ስደት ማገናኛ +DocType: Email Account,Track Email Status,የኢሜይል ሁኔታን ተከታተል DocType: Note,Notify Users On Every Login,እያንዳንዱ መግቢያው ላይ ተጠቃሚዎችን አሳውቅ DocType: PayPal Settings,API Password,የኤ ፒ አይ የይለፍ ቃል apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,የ Python ሞጁል ወይም የግንኙነት አይነት ይምረጡ @@ -711,6 +731,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,ለመጨ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,ይመልከቱ ተመዝጋቢዎች DocType: Webhook,after_insert,ከ-ገብ apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,እንደ ፍቃድ የሌለዎት በ {0} {1} ላይ የሆነ ፋይልን መሰረዝ አይችሉም +DocType: Website Theme,Custom JS,ብጁ JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,ወይዘሪት DocType: Website Theme,Background Color,የጀርባ ቀለም apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,ኢሜይል በመላክ ላይ ሳለ ስህተቶች ነበሩ. እባክዎ ዳግም ይሞክሩ. @@ -719,21 +740,22 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,ካርታ DocType: Web Page,0 is highest,0 ከፍተኛ ነው apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,እናንተ ወደ {0} ይህን የሐሳብ ልውውጥ ዳግም ያገናኟቸው እንደሚፈልጉ እርግጠኛ ነዎት? -apps/frappe/frappe/www/login.html +86,Send Password,የይለፍ ቃል ላክ +apps/frappe/frappe/www/login.html +87,Send Password,የይለፍ ቃል ላክ +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ ነባሪ የኢሜይል መለያ ያዋቅሩ +DocType: Print Settings,Server IP,የአገልጋይ አይፒ DocType: Email Queue,Attachments,አባሪዎች apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,ይህን ሰነድ ለመዳረስ ፍቃዶች የለዎትም DocType: Language,Language Name,የቋንቋ ስም DocType: Email Group Member,Email Group Member,የቡድን አባል ኢሜይል apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,User Permissions are used to limit users to specific records.,የተጠቃሚ ፈቃዶች ተጠቃሚዎችን የተወሰኑ መዝገቦችን ለመገደብ ጥቅም ላይ ይውላሉ. DocType: Notification,Value Changed,ዋጋ ተቀይሯል -apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},አባዛ ስም {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},አባዛ ስም {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,እንደገና ሞክር DocType: Web Form Field,Web Form Field,የድር ቅጽ መስክ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,ሪፖርት ገንቢ ውስጥ ደብቅ መስክ apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,ከሚከተለው አዲስ መልዕክት አለዎት: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,HTML አርትዕ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,እባክዎ ድጋሚ ዩ አር ኤል ያስገቡ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,ማዋቀር> የተጠቃሚ ፈቃዶች apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","እንዲፈጠር. ዘግይቶ ከሆነ, «በወር ቀን ውስጥ ይድገሙት» የሚለውን መስክ እራስዎ መቀየር አለብዎት" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,የመጀመሪያው ፍቃዶችን እነበረበት መልስ @@ -758,23 +780,25 @@ DocType: Address,Rajasthan,ራጃስታን DocType: Email Template,Email Reply Help,የኢሜል መልስ እገዛ apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,ሪፖርት ገንቢ ሪፖርቶች ሪፖርቱ የአናጺ በቀጥታ የሚተዳደሩ ናቸው. ምንም የማደርገው የለም. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,የእርስዎ ኢሜይል አድራሻ ያረጋግጡ -apps/frappe/frappe/model/document.py +1056,none of,ማንም +apps/frappe/frappe/model/document.py +1057,none of,ማንም apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,እኔ አንድ ቅጂ ላክ DocType: Dropbox Settings,App Secret Key,የመተግበሪያ ሚስጥር ቁልፍ DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,ድህረገፅ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ምልክት የተደረገባቸው ንጥሎች ዴስክቶፕ ላይ ይታያል -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} ነጠላ አይነቶች ሊዘጋጁ አይችሉም +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} ነጠላ አይነቶች ሊዘጋጁ አይችሉም DocType: Data Import,Data Import,የውሂብ ማስገባት apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,ንድፍ አዋቅር apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} በአሁኑ ጊዜ ይህን ሰነዱን እያዩት ነው DocType: ToDo,Assigned By Full Name,ሙሉ ስም በ ተመድቧል apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} ዘምኗል -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,ሪፖርት ነጠላ አይነቶች ሊዘጋጁ አይችሉም +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,ሪፖርት ነጠላ አይነቶች ሊዘጋጁ አይችሉም +DocType: System Settings,Allow Consecutive Login Attempts ,ተከታታይ መግቢያ ትግባሮችን ፍቀድ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,በክፍያ ሂደቱ ወቅት ስህተት ተከስቷል. እባክዎ ያነጋግሩን. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,{0} ቀናት በፊት DocType: Email Account,Awaiting Password,በመጠባበቅ ላይ የይለፍ ቃል DocType: Address,Address Line 1,አድራሻ መስመር 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,የዝርያዎች አይደለም DocType: Custom DocPerm,Role,ሚና apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,ቅንብሮች ... apps/frappe/frappe/utils/data.py +507,Cent,በመቶ @@ -794,10 +818,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,ተወ DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,አንተ መክፈት ይፈልጋሉ ገጽ ጋር አገናኝ. እርስዎ አንድ ቡድን ወላጅ ማድረግ ከፈለጉ ባዶውን ይተዉት. DocType: DocType,Is Single,ነጠላ ነው? -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,ወደላይ ግባ ተሰናክሏል -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} ውስጥ ውይይቱን ለቆ ወጥቷል {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,ወደላይ ግባ ተሰናክሏል +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} ውስጥ ውይይቱን ለቆ ወጥቷል {1} {2} DocType: Blogger,User ID of a Blogger,የ Blogger ተጠቃሚ መታወቂያ -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,ቢያንስ አንድ የስርዓት አስተዳዳሪ በዚያ መቆየት አለበት +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,ቢያንስ አንድ የስርዓት አስተዳዳሪ በዚያ መቆየት አለበት DocType: GCalendar Account,Authorization Code,ፈቀዳ ኮድ DocType: PayPal Settings,Mention transaction completion page URL,የግብይት ማጠናቀቂያ ገጽ ዩ አር ኤል ጥቀስ DocType: Help Article,Expert,አዋቂ @@ -818,8 +842,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","ተለዋዋጭ ርዕሰ ለማከል, እንደ ጂንጃ መለያዎች ይጠቀሙ
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,የተጠቃሚ ፍቃዶችን ተግብር +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},ልክ ያልኾነ የፍለጋ መስክ {0} DocType: User,Modules HTML,ሞዱሎች ኤችቲኤምኤል +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","የእርስዎ ኢሜይል በተቀባዩ ከተከፈተ ተከታተል.
ማሳሰቢያ: ወደ ብዙ ተቀባዮች እየላኩ ከሆነ, ምንም እንኳን አንድ ተቀባይ ኢሜይሉን ቢያነብ እንኳ «እንደከፈተ» ይቆጠራል." apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,የሚጎድሉ እሴቶች የሚያስፈልግ DocType: DocType,Other Settings,ሌሎች ቅንብሮች DocType: Data Migration Connector,Frappe,Frappe @@ -829,15 +856,13 @@ DocType: Customize Form,Change Label (via Custom Translation),(ብጁ ትርጉ apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},ምንም ፈቃድ {0} {1} {2} DocType: Address,Permanent,ቋሚ apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,ማስታወሻ: ሌላ ፈቃድ ደንቦች ደግሞ ማመልከት ይችላሉ -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/templates/emails/print_link.html +2,View this in your browser,በአሳሽዎ ውስጥ ይህን ይመልከቱ DocType: DocType,Search Fields,የፍለጋ መስኮች DocType: System Settings,OTP Issuer Name,የ OTP ስም አጽዳ ስም DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ተሸካሚ ማስመሰያ apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,ምንም የተመረጠ ሰነድ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ዶ -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,ወደ በይነመረብ ተገናኝተሃል. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,ወደ በይነመረብ ተገናኝተሃል. DocType: Social Login Key,Enable Social Login,ማህበራዊ መግቢያን አንቃ DocType: Event,Event,ድርጊት apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:",{0} ላይ: {1} እንዲህ ሲል ጽፏል: @@ -852,7 +877,7 @@ DocType: Print Settings,In points. Default is 9.,ነጥቦች ውስጥ. ነባ DocType: OAuth Client,Redirect URIs,ዩአርአይዎች አዘዋውር apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},በማስገባት ላይ {0} DocType: Workflow State,heart,ልብ -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,የድሮ የይለፍ ቃል ያስፈልጋል. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,የድሮ የይለፍ ቃል ያስፈልጋል. DocType: Role,Desk Access,ዴስክ መዳረሻ DocType: Workflow State,minus,ያለ DocType: S3 Backup Settings,Bucket,ዳቦ @@ -860,8 +885,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,ካሜራን መጫን አልተቻለም. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,እንኳን ደህና መጡ ኢሜይል ተልኳል apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,የመጀመሪያው አጠቃቀም ሥርዓት ለማዘጋጀት እንመልከት. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,ቀድሞውኑ የተመዘገበ +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,ቀድሞውኑ የተመዘገበ DocType: System Settings,Float Precision,ተንሳፈፈ ፕሪስሽን +DocType: Notification,Sender Email,የላኪ ኢሜይል apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,ብቻ አስተዳዳሪ ማርትዕ ይችላሉ apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,የመዝገብ ስም DocType: DocType,Editable Grid,ሊደረግበት ፍርግርግ @@ -872,17 +898,19 @@ DocType: Communication,Clicked,ጠቅ ተደርጓል apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},ምንም ፈቃድ «{0}» {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ለመላክ የተያዘለት DocType: DocType,Track Seen,ትራክ አይቼዋለሁ -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,ይህ ዘዴ ብቻ አስተያየት ለመፍጠር ጥቅም ላይ ሊውል ይችላል +DocType: Dropbox Settings,File Backup,የፋይል መጠባበቂያ +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,ይህ ዘዴ ብቻ አስተያየት ለመፍጠር ጥቅም ላይ ሊውል ይችላል DocType: Kanban Board Column,orange,ብርቱካናማ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,ምንም {0} አልተገኙም apps/frappe/frappe/config/setup.py +259,Add custom forms.,ብጁ ቅጾች ያክሉ. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} ውስጥ ከ {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,ይህ ሰነድ ገብቷል +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,ይህ ሰነድ ገብቷል apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ስርዓቱ ብዙ ቀድሞ የተበየነ ሚና ያቀርባል. እርስዎ በመረጡት ፍቃዶችን ማዘጋጀት አዲስ ሚና ማከል ይችላሉ. DocType: Communication,CC,ዝግ መግለጫ DocType: Country,Geo,የጂኦ +DocType: Data Migration Run,Trigger Name,የጉዞ ስም DocType: Blog Category,Blog Category,የጦማር ምድብ -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,የሚከተሉት ሁኔታ ካልተሳካ ምክንያቱም ካርታ አልተቻለም: +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,የሚከተሉት ሁኔታ ካልተሳካ ምክንያቱም ካርታ አልተቻለም: DocType: Role Permission for Page and Report,Roles HTML,ሚናዎችን ኤችቲኤምኤል apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,በመጀመሪያ አንድ ብራንድ ምስል ይምረጡ. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,ገቢር @@ -906,16 +934,17 @@ DocType: Address,Other Territory,ሌላ ተሪቶሪ ,Messages,መልዕክቶች apps/frappe/frappe/config/website.py +83,Portal,ፖርታል DocType: Email Account,Use Different Email Login ID,የተለያዩ የኢሜይል መግቢያ መታወቂያ ይጠቀሙ -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,እንዲሰራ አንድ መጠይቅ መጥቀስ አለበት +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,እንዲሰራ አንድ መጠይቅ መጥቀስ አለበት apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","በአገልጋዩ የብዝነት ውቅር ላይ ችግር ያለ ይመስላል. አትጨነቅ, ካልተሳካ, ገንዘቡ ወደ ሂሳብህ ተመላሽ ይደረጋል." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,የሶስተኛ ወገን መተግበሪያዎችን ያቀናብሩ apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","ቋንቋ, ቀን እና ሰዓት ቅንብሮች" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,ማዋቀር> የተጠቃሚ ፈቃዶች DocType: User Email,User Email,የተጠቃሚ ኢሜይል DocType: Event,Saturday,ቅዳሜ DocType: User,Represents a User in the system.,በስርዓቱ ውስጥ አንድ ተጠቃሚ ይወክላል. DocType: Communication,Label,ምልክት -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","ወደ ተግባር {0} ከ {1}, ዝግ ተደርጓል የተመደበ ነው." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,ይህን መስኮት ዝጋ እባክዎ +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","ወደ ተግባር {0} ከ {1}, ዝግ ተደርጓል የተመደበ ነው." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,ይህን መስኮት ዝጋ እባክዎ DocType: Print Format,Print Format Type,አትም ቅርጸት አይነት DocType: Newsletter,A Lead with this Email Address should exist,በዚህ ኢሜይል አድራሻ ጋር አንድ ሊድ ሊኖር ይገባል apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,የድር ክፈት ምንጭ መተግበሪያዎች @@ -931,8 +960,8 @@ DocType: Data Export,Excel,Excel apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,የይለፍ ቃልህ ዘምኗል. እዚህ አዲስ የይለፍ ቃል ነው DocType: Email Account,Auto Reply Message,ራስ-ምላሽ መልዕክት DocType: Feedback Trigger,Condition,ሁኔታ -apps/frappe/frappe/utils/data.py +619,{0} hours ago,{0} ሰዓታት በፊት -apps/frappe/frappe/utils/data.py +629,1 month ago,1 ወር በፊት +apps/frappe/frappe/utils/data.py +621,{0} hours ago,{0} ሰዓታት በፊት +apps/frappe/frappe/utils/data.py +631,1 month ago,1 ወር በፊት DocType: Contact,User ID,የተጠቃሚው መለያ DocType: Communication,Sent,ተልኳል DocType: Address,Kerala,በኬረለ @@ -951,7 +980,7 @@ DocType: GSuite Templates,Related DocType,ተዛማጅ DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ይዘት ለማከል አርትዕ apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,ይምረጡ ቋንቋዎች apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,የካርድ ዝርዝሮች -apps/frappe/frappe/__init__.py +538,No permission for {0},ምንም ፍቃድ {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},ምንም ፍቃድ {0} DocType: DocType,Advanced,የላቀ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,የኤ ፒ አይ ቁልፍ ይመስላል ወይም ኤ ሚስጥር ስህተት ነው !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ማጣቀሻ: {0} {1} @@ -961,13 +990,13 @@ DocType: Address,Address Type,የአድራሻ አይነት apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,ልክ ያልሆነ የተጠቃሚ ስም ወይም የድጋፍ የይለፍ ቃል. ለማስተካከል እና እንደገና ይሞክሩ. DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,የእርስዎ የደንበኝነት ምዝገባ ነገ ጊዜው ያልፍበታል. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,በማሳወቂያ ውስጥ ስህተት +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,በማሳወቂያ ውስጥ ስህተት apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,እመቤት apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},የተዘመነ {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,ባለቤት DocType: DocType,User Cannot Create,ተጠቃሚ ይፍጠሩ አይቻልም apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,አቃፊ {0} የለም -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,መሸወጃ መዳረሻ ፀድቋል ነው! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,መሸወጃ መዳረሻ ፀድቋል ነው! DocType: Customize Form,Enter Form Type,ቅጽ አይነት ያስገቡ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,የጎደለ መለኪያ የካንቦን ቦርድ ስም apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,ምንም መዛግብት መለያ ሰጥታለች. @@ -976,14 +1005,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,የይለፍ ቃል አዘምን ማሳወቂያ ላክ apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DocType, DocType መፍቀድ. ተጥንቀቅ!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","ማተም, ኢሜይል ብጁ ቅርጸቶች" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,አዲስ ስሪት ወደ ዘምኗል +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,አዲስ ስሪት ወደ ዘምኗል DocType: Custom Field,Depends On,እንደ ሁኔታው DocType: Kanban Board Column,Green,አረንጓዴ DocType: Custom DocPerm,Additional Permissions,ተጨማሪ ፍቃዶች DocType: Email Account,Always use Account's Email Address as Sender,ሁልጊዜ የላኪ እንደ መለያ የኢሜይል አድራሻ ይጠቀሙ apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,አስተያየት ለመስጠት ይግቡ -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,በዚህ መስመር በታች ውሂብ በማስገባት ይጀምሩ -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},ለ ለውጥ እሴቶች {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,በዚህ መስመር በታች ውሂብ በማስገባት ይጀምሩ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},ለ ለውጥ እሴቶች {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","የኢሜይል መታወቂያ ልዩ ነው, የኢሜይል መለያ ቀድሞውንም ነበር \ ለ {0}" DocType: Workflow State,retweet,ትዊት apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,ብጁ አድርግ ... DocType: Print Format,Align Labels to the Right,መለያዎችን ወደ ቀኝ አስምር @@ -1002,39 +1033,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,የአ DocType: Workflow Action Master,Workflow Action Master,የስራ ፍሰት እርምጃ መምህር DocType: Custom Field,Field Type,የመስክ ዓይነት apps/frappe/frappe/utils/data.py +537,only.,ብቻ ነው. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,OTP ሚስጥር በአስተዳዳሪው ብቻ ነው ሊጀምር የሚችለው. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,OTP ሚስጥር በአስተዳዳሪው ብቻ ነው ሊጀምር የሚችለው. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,ከእናንተ ጋር የተዛመዱ ዓመታት ራቅ. apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,ለተወሰነ ሰነድ ተጠቃሚን ገድብ DocType: GSuite Templates,GSuite Templates,GSuite አብነቶች +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,ሲወጡና apps/frappe/frappe/utils/goal.py +110,Goal,ግብ apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,ልክ ያልሆነ ደብዳቤ አገልጋይ. ለማስተካከል እና እንደገና ይሞክሩ. DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","አገናኞች ያህል, ክልል እንደ DocType ያስገቡ. ይምረጡ ያህል, በእያንዳንዱ አዲስ መስመር ላይ, አማራጮች ዝርዝር ያስገቡ." DocType: Workflow State,film,ፊልም -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},ፈቃድ የለም ለማንበብ {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},ፈቃድ የለም ለማንበብ {0} apps/frappe/frappe/config/desktop.py +8,Tools,መሣሪያዎች apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,ከቅርብ ዓመታት ወዲህ ራቅ. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,በርካታ የስር እባጮች አይፈቀድም. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","ከነቃ, ተጠቃሚዎች መግባት ሁሉ ጊዜ እንዲያውቁት ይደረጋል. የነቃ አይደለም ከሆነ, ተጠቃሚዎች አንድ ጊዜ ብቻ እንዲያውቁት ይደረጋል." -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,ልክ ያልሆነ {0} ሁኔታ +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,ልክ ያልሆነ {0} ሁኔታ DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","ከተመረጠ, ተጠቃሚዎች ያረጋግጡ መዳረሻ መገናኛ ማየት አይችሉም." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,መታወቂያ መስክ ሪፖርት በመጠቀም እሴቶች አርትዕ ማድረግ ያስፈልጋል. የ አምድ መራጭ በመጠቀም መታወቂያ መስክ እባክዎ ይምረጡ apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,አስተያየቶች -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,አረጋግጥ -apps/frappe/frappe/www/login.html +58,Forgot Password?,መክፈቻ ቁልፉን ረሳኽው? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,አረጋግጥ +apps/frappe/frappe/www/login.html +59,Forgot Password?,መክፈቻ ቁልፉን ረሳኽው? DocType: System Settings,yyyy-mm-dd,ዓዓዓዓ-ወወ-ቀቀ apps/frappe/frappe/desk/report/todo/todo.py +19,ID,መታወቂያ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,የአገልጋይ ስህተት -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,መግቢያ መታወቂያ ያስፈልጋል +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,መግቢያ መታወቂያ ያስፈልጋል DocType: Website Slideshow,Website Slideshow,የድር ጣቢያ የተንሸራታች ትዕይንት apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,ምንም ውሂብ DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","ድር መነሻ ገጽ ነው አገናኝ. መደበኛ አገናኞች (ኢንዴክስ: የመግቢያ, ምርቶች, ጦማር, ስለ እውቂያ)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},የኢሜይል መለያ {0} ኢሜይሎች መቀበል ላይ ሳለ ማረጋገጥ አልተሳካም. ከአገልጋዩ መልዕክት: {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},የኢሜይል መለያ {0} ኢሜይሎች መቀበል ላይ ሳለ ማረጋገጥ አልተሳካም. ከአገልጋዩ መልዕክት: {1} DocType: Custom Field,Custom Field,ብጁ መስክ -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,ምልክት መደረግ አለበት ይህም ቀን መስክ ይግለጹ +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,ምልክት መደረግ አለበት ይህም ቀን መስክ ይግለጹ DocType: Custom DocPerm,Set User Permissions,አዘጋጅ የተጠቃሚ ፍቃዶች apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},ለ {0} = {1} አይፈቀድም DocType: Email Account,Email Account Name,የኢሜይል መለያ ስም -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,መሸወጃ መዳረሻ ማስመሰያ በማመንጨት ላይ ሳለ የሆነ ችግር ተፈጥሯል. ተጨማሪ ዝርዝሮችን ለማግኘት የስህተት ምዝግብ ይፈትሹ. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,መሸወጃ መዳረሻ ማስመሰያ በማመንጨት ላይ ሳለ የሆነ ችግር ተፈጥሯል. ተጨማሪ ዝርዝሮችን ለማግኘት የስህተት ምዝግብ ይፈትሹ. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","እውቂያዎች ጋዜጣዎች, ይመራል." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","ለምሳሌ "ድጋፍ", "ሽያጭ", "ጄሪ ያንግ"" @@ -1043,19 +1076,20 @@ DocType: DocField,Description,መግለጫ DocType: Print Settings,Repeat Header and Footer in PDF,ፒዲኤፍ ውስጥ ራስጌ እና ግርጌ ድገም DocType: Address Template,Is Default,ነባሪ ነው DocType: Data Migration Connector,Connector Type,የተያያዥ አይነት -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,የአምድ ስም ባዶ መሆን አይችልም -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},ወደ ኢሜይል መለያ እየተገናኘ ሳለ ስህተት ተፈጥሯል {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,የአምድ ስም ባዶ መሆን አይችልም +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},ወደ ኢሜይል መለያ እየተገናኘ ሳለ ስህተት ተፈጥሯል {0} DocType: Workflow State,fast-forward,በፍጥነት ወደፊት DocType: Communication,Communication,መገናኛ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","ትዕዛዝ ማዘጋጀት, ይጎትቱ ለመምረጥ አምዶች ይመልከቱ." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,ይህ ቋሚ ድርጊት ነው እና መቀልበስ አትችልም. ይቀጥሉ? apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,በአሳሽ ውስጥ ይግቡና ይመልከቱ DocType: Event,Every Day,በየቀኑ DocType: LDAP Settings,Password for Base DN,የመሠረት DN ለ የይለፍ ቃል apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,ሠንጠረዥ መስክ -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,አምዶች ላይ የተመሠረተ +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,አምዶች ላይ የተመሠረተ apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,በ Google GSuite ጋር ውህደት ለማንቃት ቁልፎች ያስገቡ DocType: Workflow State,move,ተንቀሳቀሰ -apps/frappe/frappe/model/document.py +1254,Action Failed,እርምጃ አልተሳካም +apps/frappe/frappe/model/document.py +1255,Action Failed,እርምጃ አልተሳካም DocType: List Filter,For User,የተጠቃሚ ለ DocType: View log,View log,ምዝግብ ማስታወሻ ተመልከት apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,መለያዎች ገበታ @@ -1063,11 +1097,11 @@ DocType: Address,Assam,Assam apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,በደንበኝነት ምዝገባዎ ውስጥ የቀሩት {0} ቀኖች አሉዎት apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,የወጪ የኢሜይል መለያ ትክክል አይደለም DocType: Transaction Log,Chaining Hash,ባለነጭራሻ -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Temperorily ተሰናክሏል +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Temperorily ተሰናክሏል apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,የኢሜይል አድራሻ ማዘጋጀት እባክዎ DocType: System Settings,Date and Number Format,ቀን እና የቁጥር ቅርጸት -apps/frappe/frappe/model/document.py +1055,one of,አንዱ -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,አንድ አፍታ በማረጋገጥ ላይ +apps/frappe/frappe/model/document.py +1056,one of,አንዱ +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,አንድ አፍታ በማረጋገጥ ላይ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,አሳይ መለያዎች DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","ተግብር ጥብቅ የተጠቃሚ ፈቃድ መዋቀሩን እና የተጠቃሚ ፍቃድ አንድ ተጠቃሚ አንድ DocType ለ ይገለጻል ከሆነ, ከዚያም አገናኝ ዋጋ ባዶ ቦታ ሁሉ ሰነዶች, ይህ ተጠቃሚ አይታዩም" DocType: Address,Billing,አከፋፈል @@ -1078,7 +1112,7 @@ DocType: User,Middle Name (Optional),የመካከለኛ ስም (አማራጭ) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,አይፈቀድም apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,የሚከተሉት መስኮች የሚጎድሉ እሴቶች አለን: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,የመጀመሪያ ልውውጥ -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,የ እርምጃ ለማጠናቀቅ በቂ ፍቃዶች የለዎትም +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,የ እርምጃ ለማጠናቀቅ በቂ ፍቃዶች የለዎትም apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,ምንም ውጤቶች DocType: System Settings,Security,መያዣ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,{0} ተቀባዮች መላክ የተያዘለት @@ -1099,6 +1133,7 @@ DocType: Kanban Board Column,lightblue,ዉሃ ሰማያዊ apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,ተመሳሳይ መስክ ከአንድ በላይ ጊዜ ተጨምሯል apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ግልጽ apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,እያንዳንዱ ቀን ክስተቶች በአንድ ቀን ላይ መጨረስ አለባቸው. +DocType: Prepared Report,Filter Values,ማጣሪያዎች DocType: Communication,User Tags,የተጠቃሚ መለያዎች DocType: Data Migration Run,Fail,አልተሳካም DocType: Workflow State,download-alt,አውርድ-alt @@ -1106,13 +1141,13 @@ DocType: Data Migration Run,Pull Failed,መሸከም አልተሳካም DocType: Communication,Feedback Request,ግብረ ጥያቄ apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,ውሂብ ከ CSV / Excel ፋይሎች ያስመጡ. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,የሚከተሉት መስኮች ይጎድላሉ: -apps/frappe/frappe/www/login.html +28,Sign in,ስግን እን +apps/frappe/frappe/www/login.html +29,Sign in,ስግን እን apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},በመሰረዝ ላይ {0} DocType: Web Page,Main Section,ዋና ክፍል DocType: Page,Icon,አዶ -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","ፍንጭ: የይለፍ ላይ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","ፍንጭ: የይለፍ ላይ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት" DocType: DocField,Allow in Quick Entry,በፈጣን መግቢያ ውስጥ ፍቀድ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,ፒዲኤፍ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,ፒዲኤፍ DocType: System Settings,dd/mm/yyyy,ቀን / ወር / ዓ.ም apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite ስክሪፕት ፈተና DocType: System Settings,Backups,ምትኬዎች @@ -1129,23 +1164,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,ልክ የ DocType: Footer Item,Target,ዓላማ DocType: System Settings,Number of Backups,ምትኬዎች ብዛት DocType: Website Settings,Copyright,የቅጂ መብት -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,ሂድ +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,ሂድ DocType: OAuth Authorization Code,Invalid,ዋጋ ቢስ DocType: ToDo,Due Date,የመጨረሻ ማስረከቢያ ቀን apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,ሩብ ቀን DocType: Website Settings,Hide Footer Signup,ግርጌ ምዝገባ ደብቅ -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,ይህ ሰነድ ተሰርዟል +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,ይህ ሰነድ ተሰርዟል apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ይህን የተቀመጡ እና አምድ እና ውጤት መመለስ ባለበት ተመሳሳይ አቃፊ ውስጥ ዘንዶ ፋይል ጻፍ. +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,ወደ ሰንጠረዥ አክል DocType: DocType,Sort Field,ደርድር መስክ DocType: Razorpay Settings,Razorpay Settings,Razorpay ቅንብሮች -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,አርትዕ ማጣሪያ -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,የመስክ {0} አይነት {1} የግዴታ ሊሆን አይችልም +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,አርትዕ ማጣሪያ +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,የመስክ {0} አይነት {1} የግዴታ ሊሆን አይችልም apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,አክል ተጨማሪ DocType: System Settings,Session Expiry Mobile,ክፍለ ጊዜ የሚቃጠልበት ሞባይል apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,የተሳሳተ ተጠቃሚ ወይም የይለፍ ቃል apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,የፍለጋ ውጤቶች apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,እባክዎ የመለያ ተለዋጭ ዩአርኤል ያስገቡ -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,አውርድ ወደ ይምረጡ: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,አውርድ ወደ ይምረጡ: DocType: Notification,Slack,Slack DocType: Custom DocPerm,If user is the owner,ተጠቃሚ ባለቤት ከሆነ ,Activity,ሥራ @@ -1154,7 +1190,7 @@ DocType: User Permission,Allow,ፍቀድ apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,የአምላክ በተደጋጋሚ ቃላት እና ቁምፊዎች ለማስወገድ እንመልከት DocType: Communication,Delayed,ዘግይቷል apps/frappe/frappe/config/setup.py +140,List of backups available for download,ለመውረድ የሚገኙ ምትኬዎች ዝርዝር -apps/frappe/frappe/www/login.html +71,Sign up,ተመዝገቢ +apps/frappe/frappe/www/login.html +72,Sign up,ተመዝገቢ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,ረድፍ {0}: መደበኛ መስኮችን ግዴታ ለማሰናከል አልተፈቀደለትም DocType: Test Runner,Output,ዉጤት DocType: Notification,Set Property After Alert,ማንቂያ በኋላ ንብረት አዘጋጅ @@ -1165,7 +1201,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,የፋይል ዓይነት DocType: Workflow State,leaf,ቅጠል DocType: Portal Menu Item,Portal Menu Item,ፖርታል ምናሌ ንጥል -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,የተጠቃሚ ቅንጅቶች አጥራ DocType: Contact Us Settings,Email ID,የኢሜይል መታወቂያ DocType: Activity Log,Keep track of all update feeds,የሁሉም ዝመናዎች ምግቦች ዱካ ይከታተሉ DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,የደንበኛ መተግበሪያ ተጠቃሚው የሚፈቅድ በኋላ መዳረሻ ይኖራቸዋል ይህም ሀብት ዝርዝር.
ለምሳሌ ፕሮጀክት @@ -1175,7 +1210,7 @@ DocType: Error Snapshot,Timestamp,ማህተም DocType: Patch Log,Patch Log,ጠጋኝ ምዝግብ ማስታወሻ DocType: Data Migration Mapping,Local Primary Key,አካባቢያዊ ዋና ቁልፍ apps/frappe/frappe/utils/bot.py +164,Hello {0},ሠላም {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},እንኳን በደህና መጡ {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},እንኳን በደህና መጡ {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,አክል apps/frappe/frappe/www/me.html +40,Profile,ባንድ በኩል የሆነ መልክ DocType: Communication,Sent or Received,የተላከ ወይም ተቀብሏል @@ -1199,7 +1234,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,ለ DocType: Workflow State,minus-sign,ሲቀነስ-ምልክት apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,አልተገኘም -apps/frappe/frappe/www/printview.py +200,No {0} permission,ምንም {0} ፍቃድ +apps/frappe/frappe/www/printview.py +199,No {0} permission,ምንም {0} ፍቃድ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,ወደ ውጪ ላክ ብጁ ፍቃዶች DocType: Data Export,Fields Multicheck,መስኮች የበዙት DocType: Activity Log,Login,ግባ @@ -1207,7 +1242,7 @@ DocType: Web Form,Payments,ክፍያዎች apps/frappe/frappe/www/qrcode.html +9,Hi {0},ሰላም {0} DocType: System Settings,Enable Scheduled Jobs,መርሃግብር የተያዘላቸው ሥራዎችን አንቃ apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,ማስታወሻዎች: -apps/frappe/frappe/www/message.html +65,Status: {0},ሁኔታ: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},ሁኔታ: {0} DocType: DocShare,Document Name,የሰነድ ስም apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,እንደ አይፈለጌ መልዕክት ምልክት DocType: ToDo,Medium,መካከለኛ @@ -1225,7 +1260,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},ስም {0} ሊ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,ቀን ጀምሮ apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,ስኬት apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},{0} ተልኳል ነውና ግብረ ጥያቄ {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,ክፍለ ጊዜ ጊዜው አልፎበታል +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,ክፍለ ጊዜ ጊዜው አልፎበታል DocType: Kanban Board Column,Kanban Board Column,Kanban ቦርድ አምድ apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,ቁልፎች አቅኑ ረድፎች ለመገመት ቀላል ናቸው DocType: Communication,Phone No.,ስልክ ቁጥር @@ -1248,17 +1283,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},ችላ: {0} ወደ {1} DocType: Address,Gujarat,ጉጃራት apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,ሰር ክስተቶች (ቀጠሮ) ላይ ስህተት ይግቡ. -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),ትክክለኛ በኮማ የተለዩ እሴት (የ CSV ፋይል) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),ትክክለኛ በኮማ የተለዩ እሴት (የ CSV ፋይል) DocType: Address,Postal,የፖስታ 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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,ፍለጋ ላይ እገዛ -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,የተመዘገበ ነገር ግን ተሰናክሏል +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,የተመዘገበ ነገር ግን ተሰናክሏል DocType: DocType,Hide Copy,ገልብጥ ደብቅ apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,ሁሉም ሚናዎች አጽዳ -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} ልዩ መሆን አለበት +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} ልዩ መሆን አለበት apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,ረድፍ apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","CC, BCC እና የኢሜል አብነት" DocType: Data Migration Mapping Detail,Local Fieldname,አካባቢያዊ የመስክ ስም @@ -1266,7 +1301,7 @@ DocType: User Permission,Linked Doctypes,የተገናኙ ዶክተፕሶች DocType: DocType,Track Changes,የትራክ ለውጦች DocType: Workflow State,Check,ፈትሽ DocType: Chat Profile,Offline,ከመስመር ውጭ -DocType: Razorpay Settings,API Key,የኤ ፒ አይ ቁልፍ +DocType: User,API Key,የኤ ፒ አይ ቁልፍ DocType: Email Account,Send unsubscribe message in email,በኢሜይል ውስጥ ከአባልነት መልዕክት ይላኩ apps/frappe/frappe/public/js/frappe/form/toolbar.js +82,Edit Title,ርዕስ አርትዕ apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,መተግበሪያዎች ጫን @@ -1274,6 +1309,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,ለአንተም ሆነ እናንተ የተመደበ ሰነዶች. DocType: User,Email Signature,የኢሜይል ፊርማ DocType: Website Settings,Google Analytics ID,የ Google Analytics መታወቂያ +DocType: Web Form,"For help see Client Script API and Examples","እገዛ ለማግኘት የደንበኛ ስክሪፕት ኤ ፒ አይ እና ምሳሌዎችን ይመልከቱ" DocType: Website Theme,Link to your Bootstrap theme,የ የማስነሻ ገጽታ አገናኝ DocType: Custom DocPerm,Delete,ሰርዝ apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},አዲስ {0} @@ -1283,10 +1319,10 @@ DocType: Print Settings,PDF Page Size,የፒዲኤፍ የገጽ መጠን DocType: Data Import,Attach file for Import,ለማስመጣት ፋይል አያይዝ DocType: Communication,Recipient Unsubscribed,ያልተመዘገበ ተቀባይ DocType: Feedback Request,Is Sent,የተላከ ነው -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,ስለ +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,ስለ apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.","ማዘመን ያህል, አንተ ብቻ መራጭ አምዶች ማዘመን ይችላሉ." DocType: Chat Token,Country,አገር -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,አድራሻዎች +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,አድራሻዎች DocType: Communication,Shared,የተጋራ apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,የሰነድ አትም ያያይዙ DocType: Bulk Update,Field,መስክ @@ -1297,12 +1333,12 @@ DocType: Chat Message,URLs,ዩ አር ኤሎች DocType: Data Migration Run,Total Pages,ጠቅላላ ገጾች DocType: DocField,Attach Image,ምስል ያያይዙ DocType: Workflow State,list-alt,ዝርዝር-alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,የይለፍ ቃል ዘምኗል +apps/frappe/frappe/www/update-password.html +79,Password Updated,የይለፍ ቃል ዘምኗል apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,የእርስዎን መግቢያ ለማረጋገጥ የእርምጃዎች ደረጃዎች apps/frappe/frappe/utils/password.py +50,Password not found,የይለፍ ቃል አልተገኘም DocType: Data Migration Mapping,Page Length,የገጽ ርዝመት DocType: Email Queue,Expose Recipients,ተቀባዮች የሚያጋልጡ -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,ወደ ገቢ ኢሜይሎች የግድ አስፈላጊ ነው ጨምር +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,ወደ ገቢ ኢሜይሎች የግድ አስፈላጊ ነው ጨምር DocType: Contact,Salutation,ሰላምታ DocType: Communication,Rejected,ተቀባይነት አላገኘም apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,መለያ አስወግድ @@ -1313,14 +1349,14 @@ DocType: User,Set New Password,አዲስ የይለፍ ቃል አዘጋጅ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},Fieldname {0} ረድፎች ውስጥ ብዙ ጊዜ ይገኛል {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} ከ {1} {2} ውስጥ ረድፍ # ወደ {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},Fieldname {0} ረድፎች ውስጥ ብዙ ጊዜ ይገኛል {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{0} from {1} to {2} in row #{3},{0} ከ {1} {2} ውስጥ ረድፍ # ወደ {3} DocType: Communication,Expired,ጊዜው አልፎበታል apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +32,Seems token you are using is invalid!,እየተጠቀሙት ያለው ማስመሰል ልክ ያልኾነ ነው! DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),አንድ መስመሮች ውስጥ መሬት የአምዶች ቁጥር (ፍርግርግ ውስጥ ጠቅላላ አምዶች ከ 11 መሆን አለበት) DocType: DocType,System,ስርዓት DocType: Web Form,Max Attachment Size (in MB),(ሜባ ውስጥ) ከፍተኛ አባሪ መጠን -apps/frappe/frappe/www/login.html +75,Have an account? Login,አንድ መለያ አለህ? ግባ +apps/frappe/frappe/www/login.html +76,Have an account? Login,አንድ መለያ አለህ? ግባ apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},ያልታወቀ የህትመት ቅርጸት: {0} DocType: Workflow State,arrow-down,ቀስት ወደ ታች apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},ተጠቃሚ መሰረዝ አይፈቀድም {0}: {1} @@ -1332,30 +1368,30 @@ DocType: Help Article,Likes,የተወደዱ DocType: Website Settings,Top Bar,ከፍተኛ አሞሌ DocType: GSuite Settings,Script Code,ስክሪፕት ኮድ apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,የተጠቃሚ ኢሜይል ፍጠር -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,የተጠቀሰ ምንም ፍቃዶች +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,የተጠቀሰ ምንም ፍቃዶች apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} አልተገኘም DocType: Custom Role,Custom Role,ብጁ ሚና apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,መነሻ / የሙከራ አቃፊ 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,ከመስቀልዎ በፊት ሰነዱን ያስቀምጡ. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,የይለፍ ቃልዎን ያስገቡ +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,የይለፍ ቃልዎን ያስገቡ DocType: Dropbox Settings,Dropbox Access Secret,መሸወጃ መዳረሻ ሚስጥር DocType: Social Login Key,Social Login Provider,የማኅበራዊ ድጋፍ አቅራቢ apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,ሌላው አስተያየት ያክሉ -apps/frappe/frappe/core/doctype/data_import/importer.py +81,No data found in the file. Please reattach the new file with data.,በፋይል ውስጥ ምንም ውሂብ አልተገኘም. እባክዎ አዲሱን ፋይል ከውሂብ ጋር ያያይዙት. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,No data found in the file. Please reattach the new file with data.,በፋይል ውስጥ ምንም ውሂብ አልተገኘም. እባክዎ አዲሱን ፋይል ከውሂብ ጋር ያያይዙት. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,አርትዕ DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,ጋዜጣ ከደንበኝነት -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,አንድ ክፍል መግቻ በፊት መምጣት አለበት ማጠፍ +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,አንድ ክፍል መግቻ በፊት መምጣት አለበት ማጠፍ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,በመገንባት ላይ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,ወደዚህ ሰነድ ይሂዱ apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,ለመጨረሻ ጊዜ በ የተቀየረው apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,ብጁነቶች ዳግም ያስጀምሩ DocType: Workflow State,hand-down,እጅ-ታች DocType: Address,GST State,GST ግዛት -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0}: ያለ አስገባ ሰርዝ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0}: ያለ አስገባ ሰርዝ ማዘጋጀት አይቻልም DocType: Website Theme,Theme,ገጽታ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI ማረጋገጫ ኮድ ያመጣቸው አዘዋውር DocType: DocType,Is Submittable,Submittable ነው -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,አዲስ ጭብጥ +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,አዲስ ጭብጥ apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,ቼክ መስክ እሴት 0 ወይም 1 ሊሆን ይችላል apps/frappe/frappe/model/document.py +733,Could not find {0},ማግኘት አልተቻለም {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,አምድ መለያዎች: @@ -1375,7 +1411,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,ቡድን DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ዒላማ ይምረጡ = "ባዶን" አንድ አዲስ ገጽ ውስጥ ለመክፈት. apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,የውሂብ ጎታ መጠን: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,እስከመጨረሻው ሰርዝ {0}? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,እስከመጨረሻው ሰርዝ {0}? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,ተመሳሳይ ፋይል አስቀድሞ መዝገብ ጋር ተያይዞ ተደርጓል apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ትክክለኛ የስራ ፍሰት ሁኔታ አይደለም. እባክዎ የስራ ፍሰትዎን ያዘምኑትና እንደገና ይሞክሩ. DocType: Workflow State,wrench,ጥምዝዝ @@ -1389,27 +1425,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,አስተያየት ያክሉ DocType: DocField,Mandatory,የግዴታ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ሞዱል Export ወደ -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0}: ምንም መሠረታዊ ፍቃዶች ስብስብ +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0}: ምንም መሠረታዊ ፍቃዶች ስብስብ apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,የእርስዎ የደንበኝነት ምዝገባ ላይ ጊዜው {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},የመጠባበቂያ አውርድ አገናኝ በሚከተለው የኢሜይል አድራሻ ላይ ኢሜይል ይሆናል: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","ሰርዝ, አስገባ ትርጉም, አዋጅን" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,ለመስራት DocType: Test Runner,Module Path,የሞጁል ዱካ DocType: Social Login Key,Identity Details,የማንነት ዝርዝሮች +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),ከዚያም በ (አማራጭ) DocType: File,Preview HTML,ቅድመ እይታ ኤችቲኤምኤል DocType: Desktop Icon,query-report,ጥያቄ-ሪፖርት -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},የተመደበ {0}: {1} DocType: DocField,Percent,መቶኛ apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,ጋር የተገናኙ apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,የራስ-ኢሜይል አድራሻ ሪፖርት ቅንብሮችን ያርትዑ DocType: Chat Room,Message Count,መልዕክት ይቆጠራል DocType: Workflow State,book,መጽሐፍ +DocType: Communication,Read by Recipient,በተቀባዩ ያንብቡ DocType: Website Settings,Landing Page,የማረፊያ ገጽ apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,ብጁ ስክሪፕት ላይ ስህተት apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} ስም apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,ምንም ፍቃዶች ይህን መስፈርት የተዘጋጀ ነው. DocType: Auto Email Report,Auto Email Report,ራስ-ኢሜይል ሪፖርት -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,አስተያየት ይሰረዝ? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,አስተያየት ይሰረዝ? DocType: Address Template,This format is used if country specific format is not found,አገር የተወሰነ ቅርጸት አልተገኘም ከሆነ ይህ ቅርጸት ጥቅም ላይ ነው DocType: System Settings,Allow Login using Mobile Number,የመግቢያ ሞባይል ቁጥር መጠቀም ፍቀድ apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,ይህን ሀብት ለመድረስ በቂ ፍቃዶች የለዎትም. መዳረሻ ለማግኘት የእርስዎን አስተዳዳሪ ያነጋግሩ. @@ -1426,7 +1463,7 @@ DocType: Letter Head,Printing,ማተም DocType: Workflow State,thumbs-up,አሪፍ-ባይ DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ቅርጸ ቁምፊዎች -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,ተሰልቶ 1 እና 6 መካከል መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,ተሰልቶ 1 እና 6 መካከል መሆን አለበት apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},ፍሬድሪክ: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,ና apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},ይህ ሪፖርት በ {0} ላይ @@ -1438,16 +1475,16 @@ DocType: Auto Email Report,Report Filters,ሪፖርት ማጣሪያዎች apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,አሁን DocType: Workflow State,step-backward,ደረጃ-ወደኋላ apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{APP_TITLE} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,ጣቢያዎ ውቅር ውስጥ መሸወጃ መዳረሻ ቁልፎች ማዘጋጀት እባክዎ +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,Please set Dropbox access keys in your site config,ጣቢያዎ ውቅር ውስጥ መሸወጃ መዳረሻ ቁልፎች ማዘጋጀት እባክዎ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,በዚህ ኢሜይል አድራሻ መላክ ለመፍቀድ ይህን መዝገብ ይሰርዙ apps/frappe/frappe/core/doctype/data_import/exporter.py +67,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ብቻ የግዴታ መስኮች አዳዲስ መዝገቦች አስፈላጊ ናቸው. ከፈለጉ እርስዎ ያልሆኑ አስገዳጅ ዓምዶች መሰረዝ ይችላሉ. -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,ክስተት ማዘመን አልተቻለም -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,ክፍያ ተጠናቅቋል +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,ክስተት ማዘመን አልተቻለም +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,ክፍያ ተጠናቅቋል apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,የማረጋገጫ ኮድ ወደተመዘገበው የኢሜይል አድራሻ ተልኳል. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,የተቆለፈ -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ማጣሪያ 4 እሴቶች (doctype, fieldname, ከዋኝ, ዋጋ) ሊኖረው ይገባል: {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,የተቆለፈ +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ማጣሪያ 4 እሴቶች (doctype, fieldname, ከዋኝ, ዋጋ) ሊኖረው ይገባል: {0}" apps/frappe/frappe/utils/bot.py +89,show,አሳይ -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},ልክ ያልሆነ የመስክ ስም {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},ልክ ያልሆነ የመስክ ስም {0} DocType: Address Template,Address Template,አድራሻ አብነት DocType: Workflow State,text-height,ጽሑፍ-ቁመት DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,የውሂብ ጎዳና የዕቅድ ካርታ @@ -1457,13 +1494,14 @@ DocType: Workflow State,map-marker,ካርታ-ማድረጊያ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,አንድ ችግር አስገባ DocType: Event,Repeat this Event,ይህን ክስተት ድገም DocType: Address,Maintenance User,ጥገና ተጠቃሚ +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,ምርጫዎች ድርደራ apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,ቀኖች እና ከእናንተ ጋር የተዛመዱ ዓመታት ራቅ. DocType: Custom DocPerm,Amend,አስተካከለ DocType: Data Import,Generated File,የተፈጠረ ፋይል DocType: Transaction Log,Previous Hash,ቀዳሚ እሽግ DocType: File,Is Attachments Folder,አባሪዎች አቃፊ ነው apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,ሁሉንም ዘርጋ -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,መልዕክት ለመጀመር አንድ ውይይት ይምረጡ. +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,መልዕክት ለመጀመር አንድ ውይይት ይምረጡ. apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,እባክህ መጀመሪያ የልዩነት አይነት ምረጥ apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,ልክ የመግቢያ መታወቂያ ያስፈልጋል. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,ውሂብ ጋር ልክ የሆነ የ CSV ፋይል ይምረጡ @@ -1476,26 +1514,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,ዘገባ የለ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,የመጀመሪያው ዋጋ DocType: Help Category,Help Category,የእገዛ ምድብ apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,አባል {0} ተሰናክሏል -apps/frappe/frappe/www/404.html +20,Page missing or moved,የጠፋ ወይም ተንቀሳቅሷል ገጽ +apps/frappe/frappe/www/404.html +21,Page missing or moved,የጠፋ ወይም ተንቀሳቅሷል ገጽ DocType: DocType,Route,መንገድ apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay የክፍያ ፍኖት ቅንብሮች +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,ከማያያዝ የተያያዙ ምስሎችን ከምር DocType: Chat Room,Name,ስም DocType: Contact Us Settings,Skype,ስካይፕ apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,የእርስዎ ዕቅድ {0} ውስጥ ከፍተኛ ቦታ አልፈዋል. {1}. DocType: Chat Profile,Notification Tones,የማሳወቂያ ድምጽ -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ወደ ሰነዶች ፈልግ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,ወደ ሰነዶች ፈልግ DocType: OAuth Authorization Code,Valid,ሕጋዊ apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,አገናኝ ክፈት apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,የእርስዎ ቋንቋ apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,ረድፍ አክል DocType: Tag Category,Doctypes,Doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,መጠይቅ ይምረጡ መሆን አለበት -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,እባክዎ ለማስገባት ፋይል ያያይዙ -DocType: Auto Repeat,Completed,የተጠናቀቁ +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,መጠይቅ ይምረጡ መሆን አለበት +DocType: Prepared Report,Completed,የተጠናቀቁ DocType: File,Is Private,የግል ነው DocType: Data Export,Select DocType,ይምረጡ DocType apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,የፋይል መጠን {0} ሜባ ከፍተኛውን የሚፈቀድ መጠን አልፏል -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,ላይ የተፈጠረ +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,ላይ የተፈጠረ DocType: Workflow State,align-center,አሰልፍ-ማዕከል DocType: Feedback Request,Is Feedback request triggered manually ?,ግብረ ጥያቄ በእጅ ተቀስቅሷል ነው? DocType: Address,Lakshadweep Islands,Lakshadweep ደሴቶች @@ -1503,7 +1541,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","አንዳንድ ሰነዶች, አንድ ደረሰኝ እንደ አንድ የመጨረሻ መለወጥ የለበትም. እንዲህ ዓይነት ሰነዶች የመጨረሻው እርከን ገብቷል ተብሎ ይጠራል. እናንተ ሚና አስገባ ይችላሉ ለመገደብ ይችላሉ." DocType: Newsletter,Test Email Address,የሙከራ ኢሜይል አድራሻ DocType: ToDo,Sender,የላኪ -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,የማሳወቂያ {0} ን በመገምገም ወቅት ስህተት. እባክዎን አብነትዎን ያስተካክሉ. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,የማሳወቂያ {0} ን በመገምገም ወቅት ስህተት. እባክዎን አብነትዎን ያስተካክሉ. DocType: GSuite Settings,Google Apps Script,የ Google መተግበሪያዎች ስክሪፕት apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,አስተያየት ውጣ DocType: Web Page,Description for search engine optimization.,የፍለጋ ፕሮግራም ማመቻቸት የሚሆን መግለጫ. @@ -1513,7 +1551,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,በ DocType: System Settings,Allow only one session per user,ተጠቃሚ ብቻ ነው አንድ ክፍለ ጊዜ ፍቀድ apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,መነሻ / የሙከራ አቃፊ 1 / የሙከራ አቃፊ 3 DocType: Website Settings,<head> HTML,<ራስ> የኤች ቲ ኤም ኤል -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,ይምረጡ ወይም አንድ አዲስ ክስተት ለመፍጠር ጊዜ ቦታዎች ላይ ጎትት. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,ይምረጡ ወይም አንድ አዲስ ክስተት ለመፍጠር ጊዜ ቦታዎች ላይ ጎትት. DocType: DocField,In Filter,ማጣሪያ ውስጥ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,ሞዱል ክፍል ውስጥ አሳይ @@ -1525,17 +1563,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",ገጽ ድር ላይ ለማሳየት DocType: Note,Seen By Table,ሠንጠረዥ በ ተመልክቻለሁ -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,ምረጥ አብነት +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,ምረጥ አብነት apps/frappe/frappe/www/third_party_apps.html +47,Logged in,ገብተዋል apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,ትክክል ያልሆነ የተጠቃሚ መታወቂያው ወይም የይለፍ ቃል apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,ያስሱ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,ነባሪ በመላክ እና ገቢ መልዕክት ሳጥን DocType: System Settings,OTP App,OTP መተግበሪያ +DocType: Dropbox Settings,Send Email for Successful Backup,ለስኬታማ ምትኬ ኢሜይል መላክን apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,የሰነድ መታወቂያ DocType: Print Settings,Letter,ደብዳቤ -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,የምስል መስክ አይነት መሆን አለበት ምስል ያያይዙ +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,የምስል መስክ አይነት መሆን አለበት ምስል ያያይዙ DocType: DocField,Columns,አምዶች -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,ከተጠቃሚ {0} ጋር የተጋራ የንባብ መዳረሻ ያለው +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,ከተጠቃሚ {0} ጋር የተጋራ የንባብ መዳረሻ ያለው DocType: Async Task,Succeeded,ተሳክቷል apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},ውስጥ ያስፈልጋል አስገዳጅ መስኮች {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,ለ ዳግም አስጀምር ፍቃዶች {0}? @@ -1553,14 +1592,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,-አሰልፍ ግራ DocType: User,Defaults,ነባሪዎች DocType: Feedback Request,Feedback Submitted,ግብረ-መልስ ገብቷል -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,ነባር ጋር አዋህድ +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,ነባር ጋር አዋህድ DocType: User,Birth Date,የልደት ቀን DocType: Dynamic Link,Link Title,የአገናኝ ርዕስ DocType: Workflow State,fast-backward,በፍጥነት ወደኋላ DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,አርብ -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,ሙሉ ገጽ ውስጥ አርትዕ +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,ሙሉ ገጽ ውስጥ አርትዕ DocType: Report,Add Total Row,ጠቅላላ ረድፍ አክል apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,እንዴት መቀጠል እንዳለብዎ ለማረጋገጥ የተመዘገቡ የኢሜይል አድራሻዎን ያረጋግጡ. ወደነሱ ለመመለስ ስለሚፈልጉ ይህን መስኮት አይዝጉት. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,እናንተ ይቅር እና INV004 ያስተካክል ለምሳሌ ያህል አንድ አዲስ ሰነድ INV004-1 ይሆናል. ይህ ከእናንተ እያንዳንዱ ማሻሻያ ለመከታተል ይረዳናል. @@ -1581,11 +1620,10 @@ apps/frappe/frappe/www/feedback.html +96,Please give a detailed feebdack.,ዝር DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent",= [?] ለምሳሌ 1 የአሜሪካ ዶላር ያህል ክፍልፋይ = 100 ሳንቲም 1 ምንዛሬ DocType: Data Import,Partially Successful,በከፊል ስኬታማ -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","በጣም ብዙ ተጠቃሚዎች በቅርቡ ተመዝግበዋል, ስለዚህ ምዝገባ ተሰናክሏል. በአንድ ሰዓት ውስጥ ተመልሰው ይሞክሩ" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","በጣም ብዙ ተጠቃሚዎች በቅርቡ ተመዝግበዋል, ስለዚህ ምዝገባ ተሰናክሏል. በአንድ ሰዓት ውስጥ ተመልሰው ይሞክሩ" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,አዲስ ፈቃድ ደንብ ያክሉ apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,እርስዎ ልዩ ምልክት% መጠቀም ይችላሉ DocType: Chat Message Attachment,Chat Message Attachment,የውይይት መልዕክት አባሪ -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ ነባሪ የኢሜይል መለያ ያዋቅሩ apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","(.gif, .jpg, .jpeg, .tiff, .png, .svg) አይፈቀድም ብቻ ምስል ቅጥያዎች" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,የውሂብ ጎታ ፕሮግራም @@ -1606,7 +1644,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,ተጪማሪ DocType: System Settings,In Hours,ሰዓቶች ውስጥ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,የደብዳቤ ጋር -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,ልክ ያልሆነ የወጪ ደብዳቤ አገልጋይ ወይም ወደብ +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,ልክ ያልሆነ የወጪ ደብዳቤ አገልጋይ ወይም ወደብ DocType: Custom DocPerm,Write,ጻፈ apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed to create Query / Script Reports,ብቻ አስተዳዳሪ መጠይቅ / ስክሪፕት ሪፖርቶችን መፍጠር አይፈቀድም apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,በማዘመን ላይ @@ -1615,28 +1653,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,ርዕስ ለማመንጨት ይህን fieldname ይጠቀሙ apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,ከ አስመጣ ኢሜይል apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,የተጠቃሚ እንደ ጋብዝ -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,የቤት አድራሻ ያስፈልጋል +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,የቤት አድራሻ ያስፈልጋል DocType: Data Migration Run,Started,ተጀምሯል +DocType: Data Migration Run,End Time,መጨረሻ ሰዓት apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,ይምረጡ አባሪዎች apps/frappe/frappe/model/naming.py +113, for {0},ለ {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,ስህተቶች ነበሩ. ይህን ሪፖርት ያድርጉ. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,ስህተቶች ነበሩ. ይህን ሪፖርት ያድርጉ. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,እርስዎ ይህን ሰነድ ማተም አይፈቀድም apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},በአሁኑ ጊዜ በማዘመን ላይ {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,ሪፖርት ማጣሪያ ሠንጠረዥ ውስጥ ማጣሪያዎችን ዋጋ ማዘጋጀት እባክህ. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,በመጫን ላይ ሪፖርት +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,ሪፖርት ማጣሪያ ሠንጠረዥ ውስጥ ማጣሪያዎችን ዋጋ ማዘጋጀት እባክህ. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,በመጫን ላይ ሪፖርት apps/frappe/frappe/limits.py +74,Your subscription will expire today.,የእርስዎ የደንበኝነት ምዝገባ ዛሬ ጊዜው ያልፍበታል. DocType: Page,Standard,መለኪያ -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,ፋይል አያይዝ +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,ፋይል አያይዝ +DocType: Data Migration Plan,Preprocess Method,የቅድመ ዝግጅት ዘዴ apps/frappe/frappe/desk/page/backups/backups.html +13,Size,ልክ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,ሙሉ ምደባ DocType: Desktop Icon,Idx,Idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

ምንም ውጤቶች ለ '

DocType: Address,Madhya Pradesh,ማድያ ፕራዴሽ DocType: Deleted Document,New Name,አዲስ ስም DocType: System Settings,Is First Startup,የመጀመሪያው ጅምር ነው DocType: Communication,Email Status,የኢሜይል ሁኔታ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,ኃላፊነት ማስወገድ በፊት ሰነዱን ያስቀምጡ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,አስገባ በላይ -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,አስተያየት በባለቤቱ ብቻ ነው ሊስተካከል የሚችለው +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,አስተያየት በባለቤቱ ብቻ ነው ሊስተካከል የሚችለው DocType: Data Import,Do not send Emails,ኢሜይሎችን አይላኩ apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,የተለመዱ ስሞች እና አይበልጥም. ለመገመት ቀላል ናቸው. DocType: Auto Repeat,Draft,ረቂቅ @@ -1648,14 +1689,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,ሻር DocType: Contact,Replied,ምላሽ ሰጥተዋል DocType: Newsletter,Test,ሙከራ DocType: Custom Field,Default Value,ነባሪ እሴት -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,አረጋግጥ +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,አረጋግጥ DocType: Workflow Document State,Update Field,አዘምን መስክ DocType: Chat Profile,Enable Chat,ውይይት አንቃ DocType: LDAP Settings,Base Distinguished Name (DN),Base ልዩ ስም (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,ይህን ውይይት ውጣ -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},አማራጮች አገናኝ መስክ ካልተዋቀረ {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},አማራጮች አገናኝ መስክ ካልተዋቀረ {0} DocType: Customize Form,"Must be of type ""Attach Image""","ምስል አያይዝ" አይነት መሆን አለበት -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,ሁሉንም አትምረጥ +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,ሁሉንም አትምረጥ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},እርስዎ መስክ እንዳልተዋቀረ አይደለም 'ብቻ አንብብ' ይችላሉ {0} DocType: Auto Email Report,Zero means send records updated at anytime,ዜሮ በማንኛውም ጊዜ የዘመነ መዛግብት መላክ ማለት ነው apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,ተጠናቋል @@ -1671,7 +1712,7 @@ DocType: Social Login Key,Google,ጉግል DocType: Email Domain,Example Email Address,ምሳሌ የኢሜይል አድራሻ apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,በጣም ጥቅም ላይ የዋሉ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,ጋዜጣ ምዝገባ ይውጡ -apps/frappe/frappe/www/login.html +83,Forgot Password,መክፈቻ ቁልፉን ረሳኽው +apps/frappe/frappe/www/login.html +84,Forgot Password,መክፈቻ ቁልፉን ረሳኽው DocType: Dropbox Settings,Backup Frequency,ምትኬ ድግግሞሽ DocType: Workflow State,Inverse,የተገላቢጦሽ DocType: DocField,User permissions should not apply for this Link,የተጠቃሚ ፈቃዶችን ይህን አገናኝ ማመልከት የለባቸውም @@ -1688,6 +1729,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,ድረ-ለ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,በተሳካ ሁኔታ ዘምኗል DocType: Activity Log,Logout,ውጣ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,ከፍተኛ ደረጃ ላይ ፍቃዶች የመስክ ደረጃ ፍቃዶች ናቸው. ሁሉም መስኮች በእነርሱ ላይ ፈቃድ ደረጃ ስብስብ እና ፈቃዶች በመስክ ላይ የሚተገበሩ ላይ በተገለጸው ደንቦች አሏቸው. ይህ መደበቅ ወይም የተወሰኑ መስክ ተነባቢ-ብቻ የተወሰኑ ሚናዎች እንዲሆን እንፈልጋለን ሁኔታ ውስጥ ጠቃሚ ነው. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,ማዋቀር> ፎርሙን ያበጁ DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","እዚህ ላይ ቋሚ ዩአርኤል ፓራሜትሮች ያስገቡ (ለምሳሌ:. ላኪ = ERPNext, የተጠቃሚ ስም = ERPNext, የይለፍ ቃል = 1234 ወዘተ)" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","ጠቃሚ አይደለም, የፊልሙ ጉዳዮች ላይ ጥቆማዎች ላይ ለማከል እባክዎ የት እነዚህን መመሪያዎች ከሆነ." DocType: Workflow State,bookmark,ዕልባት @@ -1699,12 +1741,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,የ apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} አስቀድሞም ይገኛል. ሌላ ስም ይምረጡ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,ግብረ መልስ ሁኔታዎች አይዛመዱም DocType: S3 Backup Settings,None,ምንም -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,የጊዜ ሂደት መስክ ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,የጊዜ ሂደት መስክ ልክ የሆነ fieldname መሆን አለበት DocType: GCalendar Account,Session Token,የክፍለ-ምልክት ማስመሰያ DocType: Currency,Symbol,ምልክት -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,የረድፍ # {0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,የረድፍ # {0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,አዲስ የይለፍ ቃል ኢሜይል -apps/frappe/frappe/auth.py +272,Login not allowed at this time,በዚህ ጊዜ አይፈቀድም ይግቡና +apps/frappe/frappe/auth.py +286,Login not allowed at this time,በዚህ ጊዜ አይፈቀድም ይግቡና DocType: Data Migration Run,Current Mapping Action,የአሁኑ የካርታ ስራ እርምጃ DocType: Email Account,Email Sync Option,ኢሜይል አስምር አማራጭ apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,ረድፍ ቁጥር @@ -1720,12 +1762,12 @@ DocType: Address,Fax,ፋክስ apps/frappe/frappe/config/setup.py +263,Custom Tags,ብጁ መለያዎች DocType: Communication,Submitted,ገብቷል DocType: System Settings,Email Footer Address,የኢሜይል ግርጌ አድራሻ -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,ማውጫ ዘምኗል +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,ማውጫ ዘምኗል DocType: Activity Log,Timeline DocType,የጊዜ መስመር DocType DocType: DocField,Text,ጽሑፍ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,ነባሪ በመላክ ላይ DocType: Workflow State,volume-off,ድምጽ-ጠፍቷል -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},የተወደደ {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},የተወደደ {0} DocType: Footer Item,Footer Item,ግርጌ ንጥል ,Download Backups,አውርድ ምትኬዎች apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,መነሻ / የሙከራ አቃፊ 1 @@ -1733,7 +1775,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me, DocType: DocField,Dynamic Link,ተለዋዋጭ አገናኝ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,ቀን ወደ apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,ያልተሳኩ ሥራዎች አሳይ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,ዝርዝሮች +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,ዝርዝሮች DocType: Property Setter,DocType or Field,DocType ወይም የመስክ DocType: Communication,Soft-Bounced,-ለስላሳ ካረፈ DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",ከነቃ ሁሉም ተጠቃሚዎች የሁለት እቃዎችን ማረጋገጫ በመጠቀም ከማንኛውም የአይ.ፒ. አድራሻ ይግቡ. ይሄ በተጠቃሚ ገጽ ላይ ለተወሰኑ ለተጠቃሚዎች (ዎች) ሊዋቀር ይችላል @@ -1744,7 +1786,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,ኢሜይል ወደ መጣያ ተወስዷል DocType: Report,Report Builder,ሪፖርት ገንቢ DocType: Async Task,Task Name,ተግባር ስም -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","የእርስዎ ክፍለ-ጊዜ አልፎበታል, ለመቀጠል እባክህ እንደገና ግባ." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","የእርስዎ ክፍለ-ጊዜ አልፎበታል, ለመቀጠል እባክህ እንደገና ግባ." DocType: Communication,Workflow,የስራ ፍሰት DocType: Website Settings,Welcome Message,እንኳን ደህና መጡ መልእክት DocType: Webhook,Webhook Headers,የዌብች ራስጌዎች @@ -1761,10 +1803,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,የህትመት ሰነዶች DocType: Contact Us Settings,Forward To Email Address,አስተላልፍ አድራሻ ኢሜይል ወደ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,ሁሉንም ውሂብ አሳይ -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,የርዕስ መስክ ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,የርዕስ መስክ ልክ የሆነ fieldname መሆን አለበት apps/frappe/frappe/config/core.py +7,Documents,ሰነዶች DocType: Social Login Key,Custom Base URL,ብጁ መሰረታዊ URL DocType: Email Flag Queue,Is Completed,የተጠናቀቁ ነው +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,መስኮች ያግኙ apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} በአስተያየት ውስጥ ጠቅሶዎታል apps/frappe/frappe/www/me.html +22,Edit Profile,አርትዕ መገለጫ DocType: Kanban Board Column,Archived,በማህደር @@ -1774,17 +1817,18 @@ myfield 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/form/controls/date.js +49,Today,ዛሬ +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,ዛሬ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ይህን ካዋቀሩት በኋላ, ተጠቃሚዎች ብቻ ነው የሚችል መዳረሻ ሰነዶችን ይሆናል (ለምሳሌ. ልጥፍ ብሎግ) አገናኝ (ለምሳሌ. ብሎገር) አለ ቦታ." DocType: Error Log,Log of Scheduler Errors,መርሐግብር ስህተቶች መካከል መዝገብ DocType: User,Bio,የህይወት ታሪክ DocType: OAuth Client,App Client Secret,የመተግበሪያ የደንበኛ ሚስጥር apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,በማስገባት ላይ +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,ወላጅ መረጃው የሚገባበት የሰነድ ስም ነው. apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,አሳይ የተወደዱ DocType: DocType,UPPER CASE,በትልቁ ሆሄያት apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,ብጁ ኤችቲኤምኤል apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,የአቃፊ ስም ያስገቡ -apps/frappe/frappe/auth.py +228,Unknown User,ያልታወቀ ተጠቃሚ +apps/frappe/frappe/auth.py +233,Unknown User,ያልታወቀ ተጠቃሚ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,ይምረጡ ሚና DocType: Communication,Deleted,ተሰርዟል DocType: Workflow State,adjust,ለማስተካከል @@ -1806,21 +1850,21 @@ DocType: Data Migration Connector,Database Name,የውሂብ ጎታ ስም apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,አድስ ቅጽ DocType: DocField,Select,ይምረጡ apps/frappe/frappe/utils/csvutils.py +29,File not attached,ፋይል አልተያያዘም -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,ግንኙነት ጠፍቷል. አንዳንድ ባህሪያት ላይሰሩ ይችላሉ. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,ግንኙነት ጠፍቷል. አንዳንድ ባህሪያት ላይሰሩ ይችላሉ. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess","AAA" እንደ ይደግማል ለመገመት ቀላል ናቸው -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,አዲስ ውይይት +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,አዲስ ውይይት 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,አሳይ ክፍል አርዕስቶች DocType: Bulk Update,Limit,ወሰን -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},መንገድ ላይ የሚገኘው ምንም አብነት: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,ከሁሉም ክፍለ ጊዜዎች ዘግተው ይውጡ +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,አዲስ ክፍል ያክሉ +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},መንገድ ላይ የሚገኘው ምንም አብነት: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,ምንም የኢሜይል መለያ DocType: Communication,Cancelled,ተሰርዟል DocType: Chat Room,Avatar,አምሳያ DocType: Blogger,Posts,ልጥፎች DocType: Social Login Key,Salesforce,የሽያጭ ኃይል DocType: DocType,Has Web View,የድር እይታ አለው -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType ስም ደብዳቤ ጋር መጀመር አለበት እና ፊደሎችን, ቁጥሮችን, ክፍት ቦታዎችን እና የሥር ሊያካትት ይችላል" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType ስም ደብዳቤ ጋር መጀመር አለበት እና ፊደሎችን, ቁጥሮችን, ክፍት ቦታዎችን እና የሥር ሊያካትት ይችላል" DocType: Communication,Spam,አይፈለጌ መልዕክት DocType: Integration Request,Integration Request,ውህደት ይጠይቁ apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,ውድ @@ -1836,16 +1880,18 @@ DocType: Communication,Assigned,የተመደበ DocType: Print Format,Js,JS apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,ይምረጡ የህትመት ቅርጸት apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,አጭር ሰሌዳ ቅጦችን ለመገመት ቀላል ናቸው +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,አዲስ ሪፖርት ይፍጠሩ DocType: Portal Settings,Portal Menu,ፖርታል ማውጫ apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,{0} ርዝመት በ 1 እና በ 1000 መካከል መሆን አለበት -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,ማንኛውም ነገር ይፈልጉ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,ማንኛውም ነገር ይፈልጉ DocType: Data Migration Connector,Hostname,የአስተናጋጅ ስም DocType: Data Migration Mapping,Condition Detail,የሁኔታዎች ዝርዝር ሁኔታ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}","ለክን {ል {0}, ዝቅተኛው የግብይት መጠን {1} መሆን አለበት" DocType: DocField,Print Hide,አትም ደብቅ -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,እሴት ያስገቡ +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,እሴት ያስገቡ DocType: Workflow State,tint,ቅልም DocType: Web Page,Style,ቅጥ +DocType: Prepared Report,Report End Time,ሪፖርት መጨረሻ ጊዜ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,ለምሳሌ: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} አስተያየቶች apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,ስሪት ተዘምኗል @@ -1858,10 +1904,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,ገበታዎች ቀያይር DocType: Website Settings,Sub-domain provided by erpnext.com,erpnext.com የቀረበው ንዑስ-ጎራ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,ስርዓትዎን ማቀናበር +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,የዝርያዎች DocType: System Settings,dd-mm-yyyy,ክል-ወወ-ዓ.ም -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,ይህንን ሪፖርት ለመድረስ ሪፖርት ፍቃድ ሊኖርዎት ይገባል. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,ይህንን ሪፖርት ለመድረስ ሪፖርት ፍቃድ ሊኖርዎት ይገባል. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,ዝቅተኛው የይለፍ ነጥብ ይምረጡ -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,ታክሏል +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,ታክሏል apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,ለአንድ ተጠቃሚ ነፃ ዕቅድ ደንበኝነት ተመዝግበዋል DocType: Auto Repeat,Half-yearly,ግማሽ-ዓመታዊ apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,ዕለታዊ ክስተት ዳይጀስት ማሳሰቢያዎች ማዘጋጀት ቦታ የቀን መቁጠሪያ ክስተቶች ልኮ ነው. @@ -1872,7 +1919,7 @@ DocType: Workflow State,remove,ማስወገድ DocType: Email Domain,If non standard port (e.g. 587),ያልሆነ መደበኛ ወደብ ከሆነ (ለምሳሌ 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,ዳግም ጫን apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,የራስዎን መለያ ምድቦች አክል -apps/frappe/frappe/desk/query_report.py +227,Total,ሙሉ +apps/frappe/frappe/desk/query_report.py +312,Total,ሙሉ DocType: Event,Participants,ተሳታፊዎች DocType: Integration Request,Reference DocName,የማጣቀሻ DOCNAME DocType: Web Form,Success Message,ስኬት መልዕክት @@ -1886,7 +1933,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,Build Report,ሪፖርት ይገንቡ DocType: Note,Notify users with a popup when they log in,እነርሱም ውስጥ መግባት ጊዜ አንድ ብቅ-ባይ ጋር ተጠቃሚዎች አሳውቅ apps/frappe/frappe/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge","{0} {1} የለም, ማዋሃድ አዲስ ዒላማ ይምረጡ" -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",የፍለጋ ውጤቶች ለ "{0}» DocType: Data Migration Connector,Python Module,ፒኔን ሞዱል DocType: GSuite Settings,Google Credentials,በ Google ምስክርነቶች apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,ለመግቢያ ማረጋገጥ QR ኮድ @@ -1895,8 +1941,8 @@ DocType: Footer Item,Company,ኩባንያ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,እኔ ወደ የተመደበው apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Google GSuite DocTypes ጋር ውህደት መልጠፊያዎች DocType: User,Logout from all devices while changing Password,የይለፍ ቃልን በሚቀይርበት ጊዜ ከሁሉም መሳሪያዎች መውጣት -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,የይለፍ ቃል ያረጋግጡ -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,ስህተቶች ነበሩ +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,የይለፍ ቃል ያረጋግጡ +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,ስህተቶች ነበሩ apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,ገጠመ apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,ከ 0 እስከ 2 docstatus መቀየር አይቻልም DocType: File,Attached To Field,ወደ መስክ አያይዝ @@ -1906,7 +1952,7 @@ DocType: Transaction Log,Transaction Hash,የግብይት Hash DocType: Error Snapshot,Snapshot View,ቅጽበተ-ይመልከቱ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,ከመላክህ በፊት ጋዜጣ ላይ ያስቀምጡ apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,ለ google ቀን መለያዎችን ያዋቅሩ -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},አማራጮች ረድፍ ውስጥ መስክ {0} ትክክለኛ DocType መሆን አለበት {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},አማራጮች ረድፍ ውስጥ መስክ {0} ትክክለኛ DocType መሆን አለበት {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,አርትዕ ንብረቶች DocType: Patch Log,List of patches executed,ጥገናዎች ዝርዝር ተገደለ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} አስቀድሞ ከደንበኝነት @@ -1925,8 +1971,8 @@ DocType: Data Migration Connector,Authentication Credentials,የማረጋገጫ DocType: Role,Two Factor Authentication,ሁለት እውነታ ማረጋገጫ apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,ይክፈሉ DocType: SMS Settings,SMS Gateway URL,ኤስ ኤም ኤስ ጌትዌይ ዩ አር ኤል -apps/frappe/frappe/model/base_document.py +508,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ሊሆን አይችልም "{2}». ከዚህ ውስጥ አንዱ መሆን አለበት "{3}» -apps/frappe/frappe/utils/data.py +638,{0} or {1},{0} ወይም {1} +apps/frappe/frappe/model/base_document.py +517,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ሊሆን አይችልም "{2}». ከዚህ ውስጥ አንዱ መሆን አለበት "{3}» +apps/frappe/frappe/utils/data.py +640,{0} or {1},{0} ወይም {1} apps/frappe/frappe/core/doctype/user/user.py +250,Password Update,የይለፍ ቃል አዘምን DocType: Workflow State,trash,መጣያ DocType: System Settings,Older backups will be automatically deleted,የቆዩ መጠባበቂያዎች በራስ-ሰር ይሰረዛል @@ -1942,16 +1988,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,መንገዷ apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,ንጥል የራሱን ዘር ሊታከሉ አይችሉም DocType: System Settings,Expiry time of QR Code Image Page,የ QR ኮድ ምስል ገፁ የሚጠፋበት ጊዜ -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,አሳይ ድምሮች +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,አሳይ ድምሮች DocType: Error Snapshot,Relapses,መነጋገሬ DocType: Address,Preferred Shipping Address,ተመራጭ የሚላክበት አድራሻ -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,ደብዳቤ ራስ ጋር +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,ደብዳቤ ራስ ጋር apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} ይህን ፈጥረዋል {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 +38,Document is only editable by users of role,የሰነድ ሚና ተጠቃሚዎች ብቻ ሊደረግበት ነው -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.",እርስዎ {1} በ {2} ተዘግቷል የሰጠውን ሥራ {0}:. +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.",እርስዎ {1} በ {2} ተዘግቷል የሰጠውን ሥራ {0}:. DocType: Print Format,Show Line Breaks after Sections,አሳይ መስመር ክፍሎች በኋላ ሰበረ +DocType: Communication,Read by Recipient On,በ ተቀባይ ላይ ያንብቡ DocType: Blogger,Short Name,አጭር ስም -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},ገጽ {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},ገጽ {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},ከ {0} ጋር የተገናኘ apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1978,20 +2026,20 @@ DocType: Communication,Feedback,ግብረ-መልስ apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,ትርጉምን ክፈት apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,ይሄ ኢሜይል በራስ-መርሐግብር ነው DocType: Workflow State,Icon will appear on the button,አዶ አዝራር ላይ ይታያል -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Socketio አልተያያዘም. መስቀል አይቻልም +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Socketio አልተያያዘም. መስቀል አይቻልም DocType: Website Settings,Website Settings,የድር ጣቢያ ቅንብሮች apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,ወር DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: አክል Reference: {{ reference_doctype }} {{ reference_name }} ለመላክ ሰነድ ማጣቀሻ DocType: DocField,Fetch From,ከ apps/frappe/frappe/modules/utils.py +205,App not found,መተግበሪያ አልተገኘም -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},መፍጠር አልተቻለም አንድ {0} አንድ ልጅ ሰነድ ላይ: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},መፍጠር አልተቻለም አንድ {0} አንድ ልጅ ሰነድ ላይ: {1} DocType: Social Login Key,Social Login Key,የማኅበራዊ ቁልፍ ቁልፍ DocType: Portal Settings,Custom Sidebar Menu,ብጁ የጎን ማውጫ DocType: Workflow State,pencil,እርሳስ apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,መልዕክቶች እና ሌሎች ማሳወቂያዎች ይወያዩ. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},እንደ ሊዘጋጁ አይችሉም በኋላ ያስገቡ {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,ያጋሩ {0} ጋር -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,የኢሜይል መለያ ማዋቀር የይለፍ ቃልዎን ያስገቡ: +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,የኢሜይል መለያ ማዋቀር የይለፍ ቃልዎን ያስገቡ: DocType: Workflow State,hand-up,እጅ-ምትኬ DocType: Blog Settings,Writers Introduction,ማስጻፍ መግቢያ DocType: Address,Phone,ስልክ @@ -1999,18 +2047,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,የማይሠራ DocType: Contact,Accounts Manager,መለያዎች አስተዳዳሪ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,የእርስዎ ክፍያ ተሰርዟል. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,ይምረጡ የፋይል አይነት +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,ይምረጡ የፋይል አይነት apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,ሁሉንም ይመልከቱ DocType: Help Article,Knowledge Base Editor,እውቀት ቤዝን አርታዒ apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,ገጹ አልተገኘም DocType: DocField,Precision,ትክክልነት DocType: Website Slideshow,Slideshow Items,የተንሸራታች ትዕይንት ንጥሎች apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,በተደጋጋሚ ቃላት እና ቁምፊዎች ለማስወገድ ይሞክሩ -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,ከተመሳሳዩ የውሂብ ጎዳና እቅድ ጋር ያልተሳኩ ሙከራዎች አሉ DocType: Event,Groups,ቡድኖች DocType: Workflow Action,Workflow State,የስራ ፍሰት መንግስት apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,ረድፎች ታክሏል -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,ስኬት! እርስዎ መሄድ ጥሩ ነው 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,ስኬት! እርስዎ መሄድ ጥሩ ነው 👍 apps/frappe/frappe/www/me.html +3,My Account,አካውንቴ DocType: ToDo,Allocated To,ወደ መድቧል apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,አዲሱን የይለፍ ቃል ለማዘጋጀት በሚከተለው አገናኝ ላይ ጠቅ ያድርጉ @@ -2018,36 +2065,39 @@ DocType: Notification,Days After,ቀናት በኋላ DocType: Newsletter,Receipient,RECEIPIENT DocType: Contact Us Settings,Settings for Contact Us Page,ያግኙን ገጽ ቅንብሮች DocType: Custom Script,Script Type,ስክሪፕት አይነት +DocType: Print Settings,Enable Print Server,የአታሚ አገልጋይ አንቃ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,{0} ሳምንቶች በፊት DocType: Auto Repeat,Auto Repeat Schedule,ራስ-ሰር ረገም መርሐግብር DocType: Email Account,Footer,ግርጌ apps/frappe/frappe/config/integrations.py +48,Authentication,ማረጋገጫ apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,ልክ ያልሆነ አገናኝ +DocType: Web Form,Client Script,የደንበኛ ስክሪፕት DocType: Web Page,Show Title,አርዕስት አሳይ DocType: Chat Message,Direct,በቀጥታ DocType: Property Setter,Property Type,የንብረት አይነት DocType: Workflow State,screenshot,ቅጽበታዊ ገጽ እይታ apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,ብቻ አስተዳዳሪ መደበኛ ሪፖርት ማስቀመጥ ይችላሉ. ዳግም መሰየም እና ያስቀምጡ. DocType: System Settings,Background Workers,የጀርባ ሠራተኞች -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,Fieldname {0} ሜታ ነገር ጋር የሚጋጩ +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,Fieldname {0} ሜታ ነገር ጋር የሚጋጩ DocType: Deleted Document,Data,መረጃ apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,የሰነድ ሁኔታ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},ሠራህ {0} መካከል {1} DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth ማረጋገጫ ኮድ -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,ያስመጡ አልተፈቀደልህም +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,ያስመጡ አልተፈቀደልህም DocType: Deleted Document,Deleted DocType,ተሰርዟል DocType apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,ፍቃድ ደረጃዎች DocType: Workflow State,Warning,ማስጠንቀቂያ DocType: Data Migration Run,Percent Complete,መቶኛ የተጠናቀቀ DocType: Tag Category,Tag Category,መለያ ምድብ -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","አንድ ቡድን በተመሳሳይ ስም ስላለ, ንጥል {0} ችላ!" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,እርዳታ +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","አንድ ቡድን በተመሳሳይ ስም ስላለ, ንጥል {0} ችላ!" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,እርዳታ DocType: User,Login Before,መግቢያ በፊት DocType: Web Page,Insert Style,አስገባ ቅጥ apps/frappe/frappe/config/setup.py +276,Application Installer,የመተግበሪያ ጫኝ -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,አዲስ ሪፖርት ስም +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,አዲስ ሪፖርት ስም +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,የሳምንት እረፍት ቀናት ደብቅ DocType: Workflow State,info-sign,መረጃ-ምልክት -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,{0} ዝርዝር ሊሆን አይችልም እሴት +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,{0} ዝርዝር ሊሆን አይችልም እሴት DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ይህን ምንዛሬ እንዴት መቀረጽ አለበት? ካልተዘጋጀ, ሥርዓት ነባሪዎችን ይጠቀማል" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,የ {0} ሰነዶች አስገባ? apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,በእናንተ ውስጥ መግባት እና መጠባበቂያ መድረስ መቻል የስርዓት አቀናባሪ ሚና እንዲኖረው ማድረግ ያስፈልጋል. @@ -2058,6 +2108,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,ሚና ፍቃዶች DocType: Help Article,Intermediate,መካከለኛ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,የተሰረዘ ሰነድ እንደ ረቂቁ ተመልሷል +DocType: Data Migration Run,Start Time,ጀምር ሰዓት apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,አንብብ ትችላለህ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} ገበታ DocType: Custom Role,Response,መልስ @@ -2067,6 +2118,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,ያጋሩ ይችላሉ apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,ልክ ያልሆነ የተቀባይ አድራሻ DocType: Workflow State,step-forward,ደረጃ-ወደፊት +DocType: System Settings,Allow Login After Fail,ከአደጋ በኋላ ፍቀድ apps/frappe/frappe/limits.py +69,Your subscription has expired.,የእርስዎ የደንበኝነት ምዝገባ ጊዜው አልፎበታል. DocType: Role Permission for Page and Report,Set Role For,ለ አዘጋጅ ሚና DocType: GCalendar Account,The name that will appear in Google Calendar,በ Google ቀን መቁጠሪያ ውስጥ የሚታይ @@ -2075,7 +2127,7 @@ DocType: Event,Starts on,ላይ ይጀምራል DocType: System Settings,System Settings,የስርዓት ቅንብሮች DocType: GCalendar Settings,Google API Credentials,የ Google ኤ ፒ አይ ምስክርነቶች apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,ክፍለ-ጊዜ መጀመር አልተሳካም -apps/frappe/frappe/email/queue.py +499,This email was sent to {0} and copied to {1},ይህ ኢሜይል {0} ተልኳል እና ተቀድቷል ነበር {1} +apps/frappe/frappe/email/queue.py +511,This email was sent to {0} and copied to {1},ይህ ኢሜይል {0} ተልኳል እና ተቀድቷል ነበር {1} DocType: Workflow State,th,ኛ DocType: Social Login Key,Provider Name,የአቅራቢ ስም apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},ፍጠር አዲስ {0} @@ -2089,35 +2141,38 @@ DocType: System Settings,Choose authentication method to be used by all users, apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,አስመስለው ዓይነት ያስፈልጋል DocType: Workflow State,ok-sign,ok-ምልክት apps/frappe/frappe/config/setup.py +146,Deleted Documents,የተሰረዙ ሰነዶች -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,የ CSV ቅርፀት ለጉዳዩ ተፅዕኖ ነው +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,የ CSV ቅርፀት ለጉዳዩ ተፅዕኖ ነው apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,ዴስክቶፕ አዶ ቀድሞውንም አለ apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,የተባዛ ነገር DocType: Newsletter,Create and Send Newsletters,ፍጠር እና ላክ ጋዜጣዎች -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,ቀን ጀምሮ እስከ ቀን በፊት መሆን አለበት +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,ቀን ጀምሮ እስከ ቀን በፊት መሆን አለበት DocType: Address,Andaman and Nicobar Islands,የአናማሪ እና የኒኮባር ደሴቶች -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,GSuite ሰነድ -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,ምልክት መደረግ አለበት ይህም ዋጋ መስክ ይግለጹ +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,GSuite ሰነድ +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,ምልክት መደረግ አለበት ይህም ዋጋ መስክ ይግለጹ apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","ወላጅ" በዚህ ረድፍ መታከል አለበት ውስጥ ወላጅ ጠረጴዛ ያመለክታል apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,ይህን ኢሜይል ለመላክ አልተቻለም. ለእዚህ ቀን የ {0} ኢሜይሎች ገደብ አልፈዋል. DocType: Website Theme,Apply Style,ቅጥ ተግብር DocType: Feedback Request,Feedback Rating,ግብረ ደረጃ አሰጣጥ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,ጋር የተጋራ +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,ፋይሎችን / ዩአርኤሎችን ያያይዙ እና በሠንጠረዥ ውስጥ ያክሉ. DocType: Help Category,Help Articles,የእገዛ ርዕሶች apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,አይነት: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,የእርስዎ ክፍያ አልተሳካም. DocType: Communication,Unshared,አልተጋራም DocType: Address,Karnataka,ካርናታካ apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,ሞዱል አልተገኘም -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} ለመግለጽ ተዋቅሯል {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} ለመግለጽ ተዋቅሯል {2} DocType: User,Location,አካባቢ ,Permitted Documents For User,ተጠቃሚ አይፈቀድም ሰነዶች apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",አንተ «አጋራ» ፍቃድ ሊኖርዎት ይገባል DocType: Communication,Assignment Completed,ተልእኮ ተጠናቋል -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},የጅምላ አርትዕ {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},የጅምላ አርትዕ {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,ሪፖርት አውርድ apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,ገባሪ አይደለም DocType: About Us Settings,Settings for the About Us Page,በ ስለ እኛ ገጽ ቅንብሮች apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,ሰንበር የክፍያ ፍኖት ቅንብሮች DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ለምሳሌ pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,ቁልፎችን ያፈጥራል apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,መዛግብት ለማጣራት ወደ መስክ ይጠቀሙ DocType: DocType,View Settings,ይመልከቱ ቅንብሮች DocType: Email Account,Outlook.com,Outlook.com @@ -2127,12 +2182,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,የወጪ ፖስታዎች ቅጂ ቅጂ ላክልኝ DocType: System Settings,Scheduler Last Event,መርሐግብር የመጨረሻው ክስተት DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,የ Google Analytics መታወቂያ ያክሉ: ለምሳሌ. UA-89XXX57-1. ተጨማሪ መረጃ ለማግኘት በ Google ትንታኔዎች ላይ እርዳታ ፍለጋ ያድርጉ. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,የይለፍ ቃል ከ 100 በላይ ቁምፊዎች ርዝመት መሆን አይችልም +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,የይለፍ ቃል ከ 100 በላይ ቁምፊዎች ርዝመት መሆን አይችልም DocType: OAuth Client,App Client ID,የመተግበሪያ የደንበኛ መታወቂያ DocType: Kanban Board,Kanban Board Name,Kanban ቦርድ ስም DocType: Notification Recipient,"Expression, Optional","መግለጫ, አማራጭ" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,ቅዳ እና script.google.com ላይ ፕሮጀክት ውስጥ ይህንን ወደ ኮድ እና ባዶ Code.gs ለጥፍ -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},ይህ ኢሜይል ተልኳል {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},ይህ ኢሜይል ተልኳል {0} DocType: System Settings,Hide footer in auto email reports,በራስ ሰር ኢሜይል ሪፖርቶች ያሉ ግርጌውን ደብቅ DocType: DocField,Remember Last Selected Value,ለመጨረሻ ጊዜ የተመረጠው እሴት አስታውስ DocType: Email Account,Check this to pull emails from your mailbox,ይህ ሳጥንህ ውስጥ ባሉ ኢሜይሎች መጎተት ይመልከቱ @@ -2148,15 +2203,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",የሰነድ ውጤቶች ለ "{0}" DocType: Workflow State,envelope,ፖስታ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,አማራጭ 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,ማተም አልተሳካም DocType: Feedback Trigger,Email Field,የኢሜይል መስክ -apps/frappe/frappe/www/update-password.html +68,New Password Required.,አዲስ የይለፍ ቃል ያስፈልጋል. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,አዲስ የይለፍ ቃል ያስፈልጋል. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} ጋር ይህን ሰነድ አጋርቷል {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,ክለሣዎን ያክሉ +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,ክለሣዎን ያክሉ DocType: Website Settings,Brand Image,የምርት ምስል DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ከላይ የዳሰሳ አሞሌ, ግርጌ እና ዓርማ ማዋቀር." DocType: Web Form Field,Max Value,ከፍተኛ እሴት -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},ለ {0} ውስጥ ደረጃ {1} በ {2} ረድፍ ውስጥ {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},ለ {0} ውስጥ ደረጃ {1} በ {2} ረድፍ ውስጥ {3} DocType: User Social Login,User Social Login,የተጠቃሚ ማህበራዊ መግቢያ DocType: Contact,All,ሁሉ DocType: Email Queue,Recipient,ተቀባይ @@ -2165,27 +2221,27 @@ DocType: Address,Sales User,የሽያጭ ተጠቃሚ apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,ይጎትቱ እና ጣል መሣሪያ ለመገንባት እና የህትመት ቅርጸቶች ለማበጀት. DocType: Address,Sikkim,Sikkim apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,አዘጋጅ -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,ይህ መጠይቅ ቅጥ እንዲቋረጥ +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,ይህ መጠይቅ ቅጥ እንዲቋረጥ DocType: Notification,Trigger Method,ቃታ ዘዴ -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},ኦፕሬተር መካከል አንዱ መሆን አለበት {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},ኦፕሬተር መካከል አንዱ መሆን አለበት {0} DocType: Dropbox Settings,Dropbox Access Token,መሸወጃ የመዳረሻ ማስመሰያ DocType: Workflow State,align-right,አሰልፍ-ቀኝ DocType: Auto Email Report,Email To,ወደ ኢሜይል apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,አቃፊ {0} ባዶ አይደለም DocType: Page,Roles,ሚናዎችን -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},ስህተት: ለ ጠፍቷል ዋጋ {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,የመስክ {0} ሊመረጥ አይችልም. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},ስህተት: ለ ጠፍቷል ዋጋ {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,የመስክ {0} ሊመረጥ አይችልም. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,ክፍለ ጊዜ የሚቃጠልበት DocType: Workflow State,ban-circle,እገዳ-ክበብ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,Slack Webhook ስህተት DocType: Email Flag Queue,Unread,ያልተነበበ DocType: Auto Repeat,Desk,የጽሕፈተ ጠረጴዛ -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),ማጣሪያ (ዝርዝር ውስጥ) አንድ tuple ወይም ዝርዝር መሆን አለበት +apps/frappe/frappe/utils/data.py +805,Filter must be a tuple or list (in a list),ማጣሪያ (ዝርዝር ውስጥ) አንድ tuple ወይም ዝርዝር መሆን አለበት apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,አንድ ምረጥ መጠይቅ ጻፍ. ማስታወሻ ውጤት (ሁሉንም ውሂብ በአንድ ጉዞ ውስጥ ይላካል) ያስችላለ አይደለም. DocType: Email Account,Attachment Limit (MB),ዓባሪ ገደብ (ሜባ) DocType: Address,Arunachal Pradesh,አሩናቻል ፕራዴሽ -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,አዋቅር ራስ ኢሜይል +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,አዋቅር ራስ ኢሜይል apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + ወደ ታች DocType: Chat Profile,Message Preview,የመልዕክት ቅድመ እይታ apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,ይህ ከላይ-10 የጋራ የይለፍ ቃል ነው. @@ -2208,7 +2264,7 @@ DocType: OAuth Client,Implicit,በውስጥ DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(, መስኮችን, "ሁኔታ" ሊኖረው ይገባል "መገዛት" የተባለ) በዚህ DocType ላይ የሐሳብ ልውውጥ ጨምር" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","ተጠቃሚው መዳረሻ የሚፈቅድ አንድ ጊዜ ፈቃድ ኮድ መቀበል, እንዲሁም አለመሳካት ምላሾች ዩአርአይዎች. በተለምዶ ማረት ነጥብ ወደ ደንበኛ መተግበሪያ በ አጋልጧል.
ለምሳሌ: http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,ከገባ በኋላ {0} መቀየር አይፈቀድም +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,ከገባ በኋላ {0} መቀየር አይፈቀድም DocType: Data Migration Mapping,Migration ID Field,የስደት መታወቂያ መስክ DocType: Communication,Comment Type,የአስተያየት አይነት DocType: OAuth Client,OAuth Client,OAuth ደንበኛ @@ -2220,6 +2276,7 @@ DocType: DocField,Signature,ፊርማ apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,ጋር አጋራ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,በመጫን ላይ apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","በፌስቡክ, በ Google, የፊልሙ በኩል መግቢያ ለማንቃት ቁልፎች ያስገቡ." +DocType: Data Import,Insert new records,አዲስ መዝገቦችን አስገባ apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},የፋይል ቅርጸት ማንበብ አልተቻለም {0} DocType: Auto Email Report,Filter Data,የማጣሪያ ውሂብ apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,መጀመሪያ አንድ ፋይል አባሪ ያድርጉ. @@ -2236,7 +2293,7 @@ DocType: DocType,Title Case,ርዕስ መያዣ DocType: Data Migration Run,Data Migration Run,የውሂብ ስደት አሂድ DocType: Blog Post,Email Sent,ኢሜይል ተልኳል DocType: DocField,Ignore XSS Filter,XSS ማጣሪያ ችላ -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,ተወግዷል +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,ተወግዷል apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,Dropbox የመጠባበቂያ ቅንብሮች apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,እንደ ኢሜይል ላክ DocType: Website Theme,Link Color,አገናኝ ቀለም @@ -2252,20 +2309,21 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,የኤልዲኤፒ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,የህጋዊ አካል ስም apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,በማሻሻሌ apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,የ PayPal ክፍያ ፍኖት ቅንብሮች -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: አይፈቀድም ቢበዛ ቁምፊዎች ነው እንደ «{1}» ({3}), በመቀጨቱ ያገኛሉ {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: አይፈቀድም ቢበዛ ቁምፊዎች ነው እንደ «{1}» ({3}), በመቀጨቱ ያገኛሉ {2}" DocType: OAuth Client,Response Type,የምላሽ አይነት DocType: Contact Us Settings,Send enquiries to this email address,ይህ የኢሜይል አድራሻ ጥያቄ ላክ DocType: Letter Head,Letter Head Name,ደብዳቤ ኃላፊ ስም DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),አንድ ዝርዝር ይመልከቱ ወይም መስመሮች ውስጥ መሬት ዓምዶች ቁጥር (ጠቅላላ አምዶች ያነሰ 11 በላይ መሆን አለበት) apps/frappe/frappe/config/website.py +18,User editable form on Website.,ድህረ ገጽ ላይ አባል ሊደረግበት ቅጽ. DocType: Workflow State,file,ፋይል -apps/frappe/frappe/www/login.html +90,Back to Login,ተመልሰው ይግቡ ወደ +apps/frappe/frappe/www/login.html +91,Back to Login,ተመልሰው ይግቡ ወደ DocType: Data Migration Mapping,Local DocType,የአካባቢያዊ DocType apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,እናንተ መሰየም ፈቃድ መጻፍ አለብዎት +DocType: Email Account,Use ASCII encoding for password,ለየይለፍ ቃል ASCII ምስጠራን ይጠቀሙ DocType: User,Karma,ካርማ DocType: DocField,Table,ጠረጴዛ DocType: File,File Size,የፋይል መጠን -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,ይህን ቅጽ ማስገባት መግባት አለበት +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,ይህን ቅጽ ማስገባት መግባት አለበት DocType: User,Background Image,የጀርባ ምስል apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","የእርስዎን አገር, የሰዓት ዞን እና ምንዛሬ ይምረጡ" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX @@ -2275,7 +2333,7 @@ DocType: Braintree Settings,Use Sandbox,ይጠቀሙ ማጠሪያ apps/frappe/frappe/utils/goal.py +101,This month,በዚህ ወር apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,አዲስ ብጁ ማተም ቅርጸት DocType: Custom DocPerm,Create,ፈጠረ -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},ልክ ያልሆነ ማጣሪያ: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},ልክ ያልሆነ ማጣሪያ: {0} DocType: Email Account,no failed attempts,ምንም አልተሳካም ሙከራዎች DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,የመተግበሪያ መዳረሻ ቁልፍ @@ -2284,7 +2342,7 @@ DocType: Chat Room,Last Message,የመጨረሻ መልዕክት DocType: OAuth Bearer Token,Access Token,የመዳረሻ ማስመሰያ DocType: About Us Settings,Org History,ድርጅት ታሪክ apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,መጠባበቂያ መጠን: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},ራስ-ሰር ድግግሞሽ {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},ራስ-ሰር ድግግሞሽ {0} DocType: Auto Repeat,Next Schedule Date,ቀጣይ የጊዜ ሰሌዳ DocType: Workflow,Workflow Name,የስራ ፍሰት ስም DocType: DocShare,Notify by Email,በኢሜይል አሳውቅ @@ -2293,10 +2351,10 @@ DocType: Web Form,Allow Edit,አርትዕ ፍቀድ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,ለጥፍ DocType: Webhook,Doc Events,የሰነድ ክስተቶች DocType: Auto Email Report,Based on Permissions For User,ተጠቃሚ ፍቃዶች ላይ የተመሠረተ -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},ተሰርዟል ሰነዴ ሁኔታ መቀየር አይቻልም. የሽግግር ረድፍ {0} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},ተሰርዟል ሰነዴ ሁኔታ መቀየር አይቻልም. የሽግግር ረድፍ {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","እንዲህ ይላል ቀጣዩ ሁኔታ እና ይህም ሚና እንደ ሽግግር, እንዴት ደንቦች ወዘተ ሁኔታ ለመለወጥ ተፈቅዶለታል" apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} አስቀድሞ አለ -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},ወደ አንዱ ሊሆን ይችላል ጨምር {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},ወደ አንዱ ሊሆን ይችላል ጨምር {0} DocType: DocType,Image View,ምስል ይመልከቱ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","ነገር ግብይቱ ወቅት ችግር ተፈጥሯል ይመስላል. እኛ ክፍያ ተረጋግጧል አላቸው በመሆኑ Paypal በራስ ሰር ይህን መጠን ተመላሽ ያደርጋል. ማለት ነው; አይደለም ከሆነ, አንድ ኢሜይል መላክ እና ትሰስር መታወቂያ መጥቀስ እባክህ: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","የይለፍ ውስጥ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት" @@ -2306,7 +2364,6 @@ DocType: List Filter,List Filter,ዝርዝር ማጣሪያ DocType: Workflow State,signal,ምልክት apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,ዓባሪዎች አሉት DocType: DocType,Show Print First,አሳይ አትም በመጀመሪያ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,አዘጋጅ> ተጠቃሚ apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},ለማድረግ አዲስ {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,አዲስ የኢሜይል መለያ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,ሰነድ ወደነበረበት ተመልሷል @@ -2332,7 +2389,7 @@ DocType: Web Form,Web Form Fields,የድር ቅጽ መስኮች DocType: Website Theme,Top Bar Text Color,ከፍተኛ አሞሌ የጽሁፍ ቀለም DocType: Auto Repeat,Amended From,ከ እንደተሻሻለው apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},ማስጠንቀቂያ: አልተቻለም ለማግኘት ወደ {0} ጋር የሚዛመድ ማንኛውም ሰንጠረዥ ውስጥ {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,ይህ ሰነድ በአሁኑ ጊዜ እንዲገደል ወረፋ ነው. እባክዎ ዳግም ይሞክሩ +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,ይህ ሰነድ በአሁኑ ጊዜ እንዲገደል ወረፋ ነው. እባክዎ ዳግም ይሞክሩ apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,ፋይል «{0} 'አልተገኘም apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,ክፍል አስወግድ DocType: User,Change Password,የሚስጥር ቁልፍ ይቀይሩ @@ -2342,19 +2399,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,ሰላም! apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,የ Braintree የክፍያ መግቢያ ቅንብሮች apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,የክስተት መጨረሻ ከመጀመሪያው ቀጥሎ መሆን አለበት apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,ይሄ ከሌሎች መሳሪያዎች ውስጥ {0} ን ይወጣል -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},በእናንተ ላይ አንድ ሪፖርት ለማግኘት ፈቃድ የለህም: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},በእናንተ ላይ አንድ ሪፖርት ለማግኘት ፈቃድ የለህም: {0} DocType: System Settings,Apply Strict User Permissions,ጥብቅ የተጠቃሚ ፍቃዶችን ተግብር DocType: DocField,Allow Bulk Edit,የጅምላ አርትዕ ፍቀድ DocType: Blog Post,Blog Post,የጦማር ልጥፍ -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,የላቀ ፍለጋ +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,የላቀ ፍለጋ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,ጋዜጣውን ለማየት አይፈቀድልዎትም. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,የይለፍ ቃል ዳግም መመሪያዎች የእርስዎ ኢሜይል ተልከዋል +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,የይለፍ ቃል ዳግም መመሪያዎች የእርስዎ ኢሜይል ተልከዋል apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"Level 0 is for document level permissions, \ higher levels for field level permissions.","ደረጃ 0 መስክ ደረጃ ፈቃዶችን ለ ሰነድ ደረጃ ፈቃዶች, \ ከፍተኛ ደረጃ ነው." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,የውሂብ ማስመጣት በሂደት ላይ እያለ ቅጹን ማስቀመጥ አይቻልም. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,ቅደምተከተሉ የተስተካከለው DocType: Workflow,States,ስቴትስ DocType: Notification,Attach Print,አትም ያያይዙ -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},የተጠቆሙ የተጠቃሚ ስም: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},የተጠቆሙ የተጠቃሚ ስም: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,ቀን ,Modules,ሞዱሎች apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,ዴስክቶፕ አዶዎች አዘጋጅ @@ -2364,11 +2422,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,ተሽሯል DocType: Web Page,Sidebar and Comments,የጎን አሞሌ እና አስተያየቶች apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",አንድ ሰነድ በኋላ ይቅር እና ማስቀመጥ እንዲሻሻል ጊዜ: አሮጌውን ቁጥር አንድ ስሪት ነው አዲስ ቁጥር ያገኛሉ. -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","ሰነድ {0} ለማያያዝ አልተፈቀደለትም, እባክዎ በእርስዎ Print Settings ውስጥ ለ {0} ፍቀድ አትም" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,See the document at {0},ሰነዱን በ {0} ይመልከቱ DocType: Stripe Settings,Publishable Key,Publishable ቁልፍ -apps/frappe/frappe/core/doctype/data_import/data_import.js +68,Start Import,ማስመጣት ይጀምሩ +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,ማስመጣት ይጀምሩ DocType: Workflow State,circle-arrow-left,ክበብ-ቀስት-ግራ apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,Redis መሸጎጫ አገልጋይ እየሄደ አይደለም. አስተዳዳሪ / ቴክኒካል ድጋፍ ያነጋግሩ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,አዲስ መዝገብ ይስሩ @@ -2376,7 +2434,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching, DocType: Currency,Fraction,ክፍልፋይ DocType: LDAP Settings,LDAP First Name Field,ኤልዲኤፒ የመጀመሪያ ስም መስክ apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,ቀጣይነት ያለው ሰነድ በራስሰር ለመፍጠር. -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,ነባር አባሪዎችን ይምረጡ +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,ነባር አባሪዎችን ይምረጡ DocType: Custom Field,Field Description,የመስክ መግለጫ apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,ተከታትላችሁ በኩል አልተዘጋጀም ስም 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"".","ነባሪ ዋጋ መስኮች (ቁልፎች) እና እሴቶችን ያስገቡ. ለአንድ መስክ በርካታ እሴቶችን ካከሉ የመጀመሪያውን ይመርጣል. እነዚህ ነባሪዎች "የተዛማጅ" ፍቃድ ደንቦችን ለማቀናበር ያገለግላሉ. የቅጽ መስኮችን ዝርዝር ለማየት, "ቅጹን ያብጁ" ይሂዱ." @@ -2396,6 +2454,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,ንጥሎች ያግኙ DocType: Contact,Image,ምስል DocType: Workflow State,remove-sign,አስወግድ-ምልክት +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,ከአገልጋይ ጋር መገናኘት አልተሳካም apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,ወደ ውጪ መላክ ምንም ውሂብ የለም DocType: Domain Settings,Domains HTML,ጎራዎች ኤች ቲ ኤም ኤል apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,ለመፈለግ የፍለጋ ሳጥን ውስጥ የሆነ ነገር ይተይቡ @@ -2423,33 +2482,34 @@ DocType: Address,Address Line 2,የአድራሻ መስመር 2 DocType: Address,Reference,ማጣቀሻ apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,የተመደበ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,የውሂብ ጎዳና ማዛመጃ ዝርዝር -DocType: Email Flag Queue,Action,እርምጃ +DocType: Data Import,Action,እርምጃ DocType: GSuite Settings,Script URL,ስክሪፕት ዩ አር ኤል -apps/frappe/frappe/www/update-password.html +119,Please enter the password,እባክዎ የይለፍ ቃል ያስገቡ -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,አይደለም የተሰረዙ ሰነዶችን ማተም አይፈቀድም +apps/frappe/frappe/www/update-password.html +111,Please enter the password,እባክዎ የይለፍ ቃል ያስገቡ +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,አይደለም የተሰረዙ ሰነዶችን ማተም አይፈቀድም apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,እናንተ አምዶች መፍጠር አይፈቀድም DocType: Data Import,If you don't want to create any new records while updating the older records.,የቆዩ መዛግብትን በማዘመን አዳዲስ መዛግብት መፍጠር ካልፈለጉ. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,መረጃ: DocType: Custom Field,Permission Level,ፍቃድ ደረጃ DocType: User,Send Notifications for Transactions I Follow,እኔ ተከተለኝ የግብይት ማሳወቂያዎች ላክ -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: አስገባ ሰርዝ, ጻፍ ያለ እንዲሻሻል ማዘጋጀት አይቻልም" -DocType: Google Maps,Client Key,የደንበኛ ቁልፍ -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,ወደ አባሪ መሰረዝ ይፈልጋሉ እርግጠኛ ነዎት? -apps/frappe/frappe/__init__.py +1097,Thank you,አመሰግናለሁ +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: አስገባ ሰርዝ, ጻፍ ያለ እንዲሻሻል ማዘጋጀት አይቻልም" +DocType: Google Maps Settings,Client Key,የደንበኛ ቁልፍ +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,ወደ አባሪ መሰረዝ ይፈልጋሉ እርግጠኛ ነዎት? +apps/frappe/frappe/__init__.py +1178,Thank you,አመሰግናለሁ apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,በማስቀመጥ ላይ DocType: Print Settings,Print Style Preview,ቅጥ የህትመት ቅድመ እይታ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,ምስሎች -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,ይህንን የድር ቅጽ ሰነድ ለማዘመን አይፈቀዱም +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,ይህንን የድር ቅጽ ሰነድ ለማዘመን አይፈቀዱም apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,ኢሜይሎች apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,በመጀመሪያ የሰነድ አይነት ይምረጡ apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,እባክዎን ቤቱን ዩአርኤል በፎክሹክ የማውጫ ቁልፍ ቁልፍ ያዘጋጁ DocType: About Us Settings,About Us Settings,እኛ ቅንብሮች ስለ DocType: Website Settings,Website Theme,የድር ጣቢያ ጭብጥ +DocType: User,Api Access,የ Api መዳረሻ DocType: DocField,In List View,ዝርዝር ይመልከቱ DocType: Email Account,Use TLS,ይጠቀሙ TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,ልክ ያልሆነ አገባብ ወይም የይለፍ ቃል -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,አውርድ አብነት +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,አውርድ አብነት apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,ቅጾች ብጁ ጃቫስክሪፕት ያክሉ. ,Role Permissions Manager,ሚና ፍቃዶች አስተዳዳሪ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,አዲስ የህትመት ቅርጸት ስም @@ -2468,7 +2528,6 @@ DocType: Website Settings,HTML Header & Robots,የ HTML ራስጌ እና ሮቦ DocType: User Permission,User Permission,የተጠቃሚ ፍቃድ apps/frappe/frappe/config/website.py +32,Blog,ጦማር apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,የኤልዲኤፒ አልተጫነም -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,ውሂብ ጋር አውርድ DocType: Workflow State,hand-right,እጅ-ቀኝ DocType: Website Settings,Subdomain,ንዑስ ጎራ apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,የ OAuth አቅራቢ ቅንብሮች @@ -2480,6 +2539,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,የኢሜይል መግቢያ መታወቂያ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,ክፍያ ተሰርዟል ,Addresses And Contacts,አድራሻዎች እንዲሁም እውቂያዎች +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,እባክዎ መጀመሪያ የሰነድ ዓይነቱን ይምረጡ. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,አጽዳ ስህተት ምዝግብ ማስታወሻዎች apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,ደረጃ አሰጣጥን እባክዎ ይምረጡ apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,የ OTP ሚስጥር ዳግም አስጀምር @@ -2488,19 +2548,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,2 ቀ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ጦማር ልጥፎች ለመመደብ. DocType: Workflow State,Time,ጊዜ DocType: DocField,Attach,አያይዝ -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ልክ የሆነ fieldname ጥለት አይደለም. ይህ መሆን አለበት {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ልክ የሆነ fieldname ጥለት አይደለም. ይህ መሆን አለበት {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ቢያንስ አንድ ግንኙነት ሰነዱን ይገኛል አለ ከሆነ ብቻ ነው ግብረ ጥያቄ ይላኩ. DocType: Custom Role,Permission Rules,ፍቃድ ደንቦች DocType: Braintree Settings,Public Key,ይፋዊ ቁልፍ DocType: GSuite Settings,GSuite Settings,GSuite ቅንብሮች DocType: Address,Links,አገናኞች apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,እባክዎ የሰነድ ዓይነቱን ይምረጡ. -apps/frappe/frappe/model/base_document.py +396,Value missing for,እሴት ጠፍቷል +apps/frappe/frappe/model/base_document.py +405,Value missing for,እሴት ጠፍቷል apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,የልጅ አክል apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ገብቷል ቅረጽ ሊሰረዝ አይችልም. DocType: GSuite Templates,Template Name,የአብነት ስም apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ሰነድ አዲስ አይነት -DocType: Custom DocPerm,Read,አነበበ +DocType: Communication,Read,አነበበ DocType: Address,Chhattisgarh,ክላቲጋር DocType: Role Permission for Page and Report,Role Permission for Page and Report,ገጽ እና ሪፖርት ለ ሚና ፍቃድ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,እሴት አሰልፍ @@ -2510,9 +2570,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,አሁን ከሌላ {OTHER} ጋር በቀጥታ ያለው ክፍል. DocType: Has Domain,Has Domain,ጎራ አለው apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,ደብቅ -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,መለያ የለህም? ተመዝገቢ +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,መለያ የለህም? ተመዝገቢ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,የመታወቂያ መስክን ማስወገድ አልተቻለም -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable አይደለም ከሆነ መድብ እንዲሻሻል ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable አይደለም ከሆነ መድብ እንዲሻሻል ማዘጋጀት አይቻልም DocType: Address,Bihar,ቢሃር DocType: Activity Log,Link DocType,አገናኝ DocType apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,እስካሁን ምንም መልዕክቶች የልዎትም. @@ -2527,14 +2587,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,የልጆች ሰንጠረዦች ሌሎች DocTypes ውስጥ መስመሮች ሆነው ይታያሉ. DocType: Chat Room User,Chat Room User,የውይይት ክፍል ተጠቃሚ apps/frappe/frappe/model/workflow.py +38,Workflow State not set,የስራ ፍሰት ሁኔታ አልተዘጋጀም -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},የስህተት ኮድ: {0} +apps/frappe/frappe/www/404.html +23,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 +26,Error Code: {0},የስህተት ኮድ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",", ስነጣ አልባ ጽሑፍ ውስጥ, መስመሮች ብቻ አንድ ባልና ሚስት ዝርዝር ገፅ የሚሆን መግለጫ. (ቢበዛ 140 ቁምፊዎች)" DocType: Workflow,Allow Self Approval,ራስን ማጽደቅ ፍቀድ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,ጆን ዶ DocType: DocType,Name Case,ስም መያዣ apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,ለሁሉም ሰው ጋር ተጋርቷል -apps/frappe/frappe/model/base_document.py +392,Data missing in table,የውሂብ ሰንጠረዥ ውስጥ ይጎድላል +apps/frappe/frappe/model/base_document.py +401,Data missing in table,የውሂብ ሰንጠረዥ ውስጥ ይጎድላል DocType: Web Form,Success URL,ስኬት ዩ አር ኤል DocType: Email Account,Append To,ወደ ጨምር apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,ቋሚ ቁመት @@ -2555,30 +2615,31 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,አዝናለሁ! የድር ጣቢያ ተጠቃሚ ጋር እየተጋሩ የተከለከለ ነው. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,ሁሉም ድርሻ አክል +DocType: Website Theme,Bootstrap Theme,የማስነሻ ገጽታ apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!",እኛ ወደ አንተ ማግኘት ይችላሉ \ እንዲችሉ የእርስዎ ኢሜይል እና መልዕክት ሁለቱም ያስገቡ. አመሰግናለሁ! -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,የወጪ የኢሜይል አገልጋይ ጋር መገናኘት አልተቻለም +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,የወጪ የኢሜይል አገልጋይ ጋር መገናኘት አልተቻለም apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,የእኛን ዝማኔዎች ደንበኝነት ላሳዩት ፍላጎት እናመሰግናለን DocType: Braintree Settings,Payment Gateway Name,የክፍያ በርዕስ ስም -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,ብጁ አምድ +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,ብጁ አምድ DocType: Workflow State,resize-full,እጀታ-ሙሉ DocType: Workflow State,off,ጠፍቷል apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,እንደገና ይውሰዱ -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,ሪፖርት {0} ተሰናክሏል +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,ሪፖርት {0} ተሰናክሏል DocType: Activity Log,Core,ዋና apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,ፍቃድ አዘጋጅ DocType: DocField,Set non-standard precision for a Float or Currency field,አንድ መንሳፈፊያ ወይም የምንዛሬ መስክ አዘጋጅ መደበኛ ያልሆነ ትክክለኛነት DocType: Email Account,Ignore attachments over this size,ይህ መጠን በላይ አባሪዎችን ችላ DocType: Address,Preferred Billing Address,ተመራጭ አከፋፈል አድራሻ apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,የስራ ፍሰት ግዛት {0} አይፈቀድም -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,በጣም ብዙ በአንድ ጥያቄ ላይ ጽፈዋል. ያነሰ ጥያቄዎችን ይላኩ +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,በጣም ብዙ በአንድ ጥያቄ ላይ ጽፈዋል. ያነሰ ጥያቄዎችን ይላኩ apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,እሴቶች ተለውጧል DocType: Workflow State,arrow-up,ቀስት-ምትኬ DocType: OAuth Bearer Token,Expires In,ውስጥ ጊዜው ያበቃል DocType: DocField,Allow on Submit,አስገባ ላይ ፍቀድ DocType: DocField,HTML,ኤችቲኤምኤል DocType: Error Snapshot,Exception Type,ለየት አይነት -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,አምዶች ይምረጡ +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,አምዶች ይምረጡ DocType: Web Page,Add code as <script>,<ስክሪፕት> እንደ ኮድ ያክሉ DocType: Webhook,Headers,ራስጌዎች apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,የመተግበሪያ መዳረሻ ቁልፍ እና የመተግበሪያ ሚስጥር ቁልፍ እሴቶች ያስገቡ @@ -2597,6 +2658,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,ምንም ንቁ ክፍለ ጊዜዎች የሉም DocType: Top Bar Item,Right,ቀኝ DocType: User,User Type,የተጠቃሚ አይነት +DocType: Prepared Report,Ref Report DocType,የ DOCType ሪፖርት ሪፖርቶች apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,አርትዕ ለማድረግ ሰንጠረዥ ጠቅ ያድርጉ DocType: GCalendar Settings,Client ID,የደንበኛ መታወቂያ DocType: Async Task,Reference Doc,የማጣቀሻ ሰነድ @@ -2615,18 +2677,18 @@ DocType: Workflow State,Edit,አርትዕ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,ፍቃዶች ማዋቀር> ሚና ፍቃዶች አስተዳዳሪ በኩል ሊደራጅ ይችላል DocType: Website Settings,Chat Operators,የውይይት ኦፕሬተሮች DocType: Contact Us Settings,Pincode,ፒን ኮድ -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,ምንም ባዶ አምዶች ፋይል ውስጥ እንዳሉ እርግጠኛ ይሁኑ. +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,ምንም ባዶ አምዶች ፋይል ውስጥ እንዳሉ እርግጠኛ ይሁኑ. apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,የእርስዎ መገለጫ የኢሜይል አድራሻ ያለው መሆኑን ያረጋግጡ apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,በዚህ ቅጽ ላይ ያልተቀመጡ ለውጦች አለዎት. ደረጃ ከመሔድ በፊት ያስቀምጡ. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,{0} አማራጭ መሆን አለበት ነባሪ +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,{0} አማራጭ መሆን አለበት ነባሪ DocType: Tag Doc Category,Tag Doc Category,መለያ ሰነድ ምድብ DocType: User,User Image,የተጠቃሚ ምስል -apps/frappe/frappe/email/queue.py +338,Emails are muted,ኢሜይሎች ድምጸ-ናቸው +apps/frappe/frappe/email/queue.py +341,Emails are muted,ኢሜይሎች ድምጸ-ናቸው apps/frappe/frappe/config/integrations.py +88,Google Services,የ Google አገልግሎቶች apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Ctrl + እስከ DocType: Website Theme,Heading Style,ርዕስ ቅጥ -apps/frappe/frappe/utils/data.py +625,1 weeks ago,1 ሳምንት በፊት +apps/frappe/frappe/utils/data.py +627,1 weeks ago,1 ሳምንት በፊት DocType: Communication,Error,ስሕተት DocType: Auto Repeat,End Date,የመጨረሻ ቀን DocType: Data Import,Ignore encoding errors,የመቀየሪያ ስህተቶች ችላ በል @@ -2634,6 +2696,7 @@ DocType: Chat Profile,Notifications,ማሳወቂያዎች DocType: DocField,Column Break,አምድ እረፍት DocType: Event,Thursday,ሐሙስ apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,ይህን ፋይል ለመድረስ ፈቃድ የልዎትም +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,ኤፒአይ አስቀምጥ: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},ተሰርዟል ሰነድ ማገናኘት አልተቻለም: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,አንድ መደበኛ ሪፖርት አርትዕ ማድረግ አይችሉም. የተባዛ እና አዲስ ሪፖርት ይፍጠሩ apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","የእርስዎ ኩባንያ አድራሻ ነው; እንደ ኩባንያ, የግዴታ ነው" @@ -2650,9 +2713,9 @@ DocType: Custom Field,Label Help,መለያ እገዛ DocType: Workflow State,star-empty,ኮከብ-ባዶ apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,ቀኖች ብዙውን ጊዜ ለመገመት ቀላል ናቸው. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,ቀጣይ እርምጃዎች -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it",መደበኛ የማሳወቂያውን ማርትዕ አይቻልም. ለማረም እባክዎ ይህንን ያቦዝኑት እና ያዛግዱት +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it",መደበኛ የማሳወቂያውን ማርትዕ አይቻልም. ለማረም እባክዎ ይህንን ያቦዝኑት እና ያዛግዱት DocType: Workflow State,ok,እሺ -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,ግምገማ አስረክብ +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,ግምገማ አስረክብ DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,እነዚህ እሴቶች በራስ-ሰር ግብይቶች ውስጥ መዘመን እና እንዲሁም እነዚህን እሴቶች የያዙ ግብይቶች ላይ ይህ ተጠቃሚ ፍቃዶችን ለመገደብ ጠቃሚ ይሆናል. apps/frappe/frappe/twofactor.py +312,Verfication Code,የማረጋገጫ ኮድ apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,ተደጋጋሚውን ለመፍጠር @@ -2670,12 +2733,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,ዳግም አስ apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,ከ {0} ተመዝጋቢዎች ለማከል ያልቁ እባክዎ DocType: Workflow State,hand-left,እጅ-ግራ DocType: Data Import,If you are updating/overwriting already created records.,ቀደም ብለው የተፈጠሩ መዝገቦችን እያዘመኑ / እየተተላለፉ ከሆኑ. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ልዩ መሆን አይችልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ልዩ መሆን አይችልም apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,አለም አቀፍ ነው DocType: Email Account,Use SSL,SSL ተጠቀም DocType: Workflow State,play-circle,ጨዋታ-ክበብ apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",ልክ ያልሆነ «የተደገፈ_ን» መግለጫ -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,የቡድን ስም +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,የቡድን ስም apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,አርትዕ የህትመት ቅርጸት ይምረጡ DocType: Address,Shipping,መላኪያ DocType: Workflow State,circle-arrow-down,ክበብ-ቀስት ወደ ታች @@ -2693,23 +2756,23 @@ DocType: SMS Settings,SMS Settings,ኤስ ኤም ኤስ ቅንብሮች DocType: Company History,Highlight,ድምቀት DocType: OAuth Provider Settings,Force,ኃይል DocType: DocField,Fold,አጠፈ +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,ሽቅብታ apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,መደበኛ የህትመት ቅርጸት መዘመን አይችልም apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,ናፈቀ -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,እባክዎን ይግለጹ +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,እባክዎን ይግለጹ DocType: Communication,Bot,bot DocType: Help Article,Help Article,የእገዛ አንቀጽ DocType: Page,Page Name,የገጽ ስም apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,እርዳታ: የመስክ ንብረቶች apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},እንዲሁም የተጫነው የመገበያያ መስሪያ መስክ {0} በማከል apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,unzip -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},ረድፍ ውስጥ ትክክል ያልሆነ እሴት {0}: {1} {2} መሆን አለበት {3} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ምንም ውጤቶች ለ '

-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},ገብቷል ሰነድ ረቂቅ ተመልሶ ሊቀየር አይችልም. የሽግግር ረድፍ {0} +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},ረድፍ ውስጥ ትክክል ያልሆነ እሴት {0}: {1} {2} መሆን አለበት {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},ገብቷል ሰነድ ረቂቅ ተመልሶ ሊቀየር አይችልም. የሽግግር ረድፍ {0} apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,የ Google ቀን መቁጠሪያ ውህደትዎን ያዋቅሩ -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},በመሰረዝ ላይ {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},በመሰረዝ ላይ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,ማርትዕ ወይም አዲስ ቅርጸት ለመጀመር አንድ ነባር ቅርጸት ይምረጡ. DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,ከታገደ የተከለከለ የአይ ፒ አድራሻ ማጣሪያ ሁለት እውነታዎች (Auth) ሲነቃ -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},የተፈጠረው ብጁ መስክ {0} ውስጥ {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},የተፈጠረው ብጁ መስክ {0} ውስጥ {1} DocType: System Settings,Time Zone,የጊዜ ክልል apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,ልዩ ቁምፊዎች አይፈቀዱም DocType: Communication,Relinked,ተገናኝቷል @@ -2725,7 +2788,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",ለድር እይታዎች የግብዓት "መስመር" ግዴታ ነው +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"Field ""route"" is mandatory for Web Views",ለድር እይታዎች የግብዓት "መስመር" ግዴታ ነው apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +205,Insert Column Before {0},አምድ ከ {0} በፊት DocType: Email Account,Add Signature,ፊርማ አክል apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,ከዚህ ውይይት ወጥተዋል @@ -2735,9 +2798,9 @@ DocType: DocField,No Copy,ምንም ቅዳ DocType: Workflow State,qrcode,qrcode DocType: Chat Token,IP Address,የአይፒ አድራሻ DocType: Data Import,Submit after importing,ማስመጣት አስገባ -apps/frappe/frappe/www/login.html +32,Login with LDAP,ኤልዲኤፒ ጋር ይግቡ +apps/frappe/frappe/www/login.html +33,Login with LDAP,ኤልዲኤፒ ጋር ይግቡ DocType: Web Form,Breadcrumbs,የዳቦ ፍርፋሪ -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,ባለቤት ከሆነ +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,ባለቤት ከሆነ DocType: Data Migration Mapping,Push,ይግፉ DocType: OAuth Authorization Code,Expiration time,የሚያልፍበት ሰዓት DocType: Web Page,Website Sidebar,የድር ጣቢያ የጎን @@ -2748,12 +2811,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,ሁሉም አቢይ ሁሉ-ፊደሎች እንደ ለመገመት ማለት ይቻላል ቀላል ነው. DocType: Feedback Trigger,Email Fieldname,የኢሜይል Fieldname DocType: Website Settings,Top Bar Items,ከፍተኛ አሞሌ ንጥሎች -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","የኢሜይል መታወቂያ ልዩ መሆን አለባቸው, ኢሜይል መለያ አስቀድሞ ለ \ የለም ነው {0}" DocType: Notification,Print Settings,የህትመት ቅንብሮች DocType: Page,Yes,አዎ DocType: DocType,Max Attachments,ከፍተኛ አባሪዎች -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,የደንበኛ ቁልፍ ያስፈልጋል +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,የደንበኛ ቁልፍ ያስፈልጋል DocType: Calendar View,End Date Field,የመጨረሻ ቀን መስክ DocType: Desktop Icon,Page,ገጽ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},ማግኘት አልተቻለም {0} ውስጥ {1} @@ -2762,21 +2823,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,እውቀት መሰረ DocType: Workflow State,briefcase,የእጅ ቦርሳ apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},እሴት መለወጥ አይችልም {0} DocType: Feedback Request,Is Manual,በእጅ ነው -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},ለማግኘት እባክዎ አባሪ {0} # {1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},ለማግኘት እባክዎ አባሪ {0} # {1} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","ቅጥ አዝራሩን ቀለም ያመለክታል: ስኬት - አረንጓዴ, አደጋ - ቀይ, ተገላቢጦሽ - ጥቁር, የመጀመሪያ ደረጃ - ደማቅ ሰማያዊ, መረጃ - ፈካ ያለ ሰማያዊ, ማስጠንቀቂያ - ኦሬንጅ" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,የረድፍ ሁኔታ DocType: Workflow Transition,Workflow Transition,የስራ ፍሰት ሽግግር apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,{0} ወራት በፊት apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,የተፈጠረ -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,መሸወጃ ማዋቀር +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,መሸወጃ ማዋቀር DocType: Workflow State,resize-horizontal,እጀታ-አግድመት DocType: Chat Message,Content,ይዘት DocType: Data Migration Run,Push Insert,አስገባ ይጫኑ apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,የቡድን መስቀለኛ መንገድ DocType: Communication,Notification,ማስታወቂያ DocType: DocType,Document,ሰነድ -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},ቀደም ሲል ጥቅም ላይ ተከታታይ {0} {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,የማይደገፍ ፋይል ቅርጸት +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},ቀደም ሲል ጥቅም ላይ ተከታታይ {0} {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,የማይደገፍ ፋይል ቅርጸት DocType: DocField,Code,ኮድ DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""",ሁሉም በተቻለ ፍሰት ስቴትስ እና የስራ ፍሰቱ ሚና. Docstatus አማራጮች: 0 "ያድናል" ነው 1 "ገብቷል" ነው እና 2 "ተሰርዟል" ነው DocType: Website Theme,Footer Text Color,የግርጌ ጽሁፍ ቀለም @@ -2787,13 +2848,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,ልክ ያልሆነ የክፍያ ፍኖት ምስክርነቶች DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ይሄ የተወሰነ ስህተት ካላቸው ረድፎች ጋር የሚፈጠር የአብነት ፋይል ነው. ይህንን ፋይል ለማረም እና ለማስመጣት መጠቀም ይኖርብዎታል. apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,የሰነድ አይነቶች እና ሚናዎች ላይ አዘጋጅ ፍቃዶች -apps/frappe/frappe/model/meta.py +160,No Label,ምንም መሰየሚያ +DocType: Data Migration Run,Remote ID,የርቀት ID +apps/frappe/frappe/model/meta.py +205,No Label,ምንም መሰየሚያ +DocType: System Settings,Use socketio to upload file,ፋይል ለመስቀል socketio ይጠቀሙ apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,የምስል አሰጣጥ የተሰበረ apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,በማደስ ላይ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,እንደ ገና መጀመር apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,በ የተቀየረበት DocType: Address,Tripura,Tripura DocType: About Us Settings,"""Company History""","ኩባንያ ታሪክ" +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,ይህ ሰነድ ከተላከ በኋላ ተለውጧል. +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,ሪፖርት አሳይ DocType: Address,Tamil Nadu,ታሚል ናዱ DocType: Email Rule,Email Rule,የኢሜይል ደንብ apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document",በስርዓቱ ተደጋጋሚ የስህተት ማሳወቂያን መላክ ለማቆም በራስ-ሰር በተደጋጋሚ በተደጋጋሚ የተመዘገበ ሰነድ ውስጥ ተሰናክሏል መስክን መርምረናል @@ -2807,7 +2872,7 @@ DocType: Notification,Send alert if this field's value changes,በዚህ መስ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,አዲስ ቅርጸት ለማድረግ አንድ DocType ይምረጡ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,'ተቀባዮች' አልተገለፀም apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,ልክ አሁን -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,ተግብር +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,ተግብር DocType: Footer Item,Policy,ፖሊሲ apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} ቅንብሮች አልተገኘም DocType: Module Def,Module Def,ሞዱል DEF @@ -2821,7 +2886,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,በ DocType: Print Settings,Allow page break inside tables,ሰንጠረዦች ውስጥ ገጽ ከፋይ ፍቀድ DocType: Email Account,SMTP Server,SMTP አገልጋይ DocType: Print Format,Print Format Help,አትም ቅርጸት እገዛ -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,ቡድኖች ጋር +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,ቡድኖች ጋር DocType: DocType,Beta,ይሁንታ apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,ለሁሉም ተጠቃሚዎች የአዶ ምርጫ ገድብ. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},ወደነበረበት {0} እንደ {1} @@ -2830,8 +2895,9 @@ DocType: DocField,Translatable,መተርጎም የሚችል DocType: Event,Every Month,በየወሩ DocType: Letter Head,Letter Head in HTML,ኤች ቲ ኤም ኤል ውስጥ ደብዳቤ ኃላፊ DocType: Web Form,Web Form,የድር ቅጽ +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},ቀን {0} በ ቅርፀት መሆን አለበት: {1} DocType: About Us Settings,Org History Heading,ርዕስ ድርጅት ታሪክ -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,አዝናለሁ. የደንበኝነት ምዝገባዎን ከፍተኛው ተጠቃሚ ገደብ ላይ ደርሰዋል. አንድ ነባር ተጠቃሚ ካሰናከሉት ወይም ከዚያ በላይ የደንበኝነት ምዝገባ ዕቅድ መግዛት ይችላሉ. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,አዝናለሁ. የደንበኝነት ምዝገባዎን ከፍተኛው ተጠቃሚ ገደብ ላይ ደርሰዋል. አንድ ነባር ተጠቃሚ ካሰናከሉት ወይም ከዚያ በላይ የደንበኝነት ምዝገባ ዕቅድ መግዛት ይችላሉ. DocType: Print Settings,Allow Print for Cancelled,ተሰርዟል ለ አትም ፍቀድ DocType: Communication,Integrations can use this field to set email delivery status,ውህደቶች ኢሜይል መላክ ሁኔታ ለማዘጋጀት ይህን መስክ መጠቀም ይችላሉ DocType: Web Form,Web Page Link Text,ድረ-ገጽ አገናኝ ጽሑፍ @@ -2844,13 +2910,12 @@ DocType: GSuite Settings,Allow GSuite access,GSuite መዳረሻ ፍቀድ DocType: DocType,DESC,DESC DocType: DocType,Naming,መሰየምን DocType: Event,Every Year,በየዓመቱ -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,ሁሉንም ምረጥ +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,ሁሉንም ምረጥ apps/frappe/frappe/config/setup.py +247,Custom Translations,ብጁ ትርጉሞች apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,እድገት apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,ሚና በ apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,የጠፋ መስኮች -apps/frappe/frappe/email/smtp.py +188,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ አልተዋቀረም. እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ አዲስ የኢሜይል አድራሻ ይፍጠሩ -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,autoname ውስጥ ልክ ያልሆነ fieldname «{0}» +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,autoname ውስጥ ልክ ያልሆነ fieldname «{0}» apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,አንድ ሰነድ ዓይነት ውስጥ ይፈልጉ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,መስክ እንኳን ከገባ በኋላ ሊደረግበት እንዲቀር DocType: Custom DocPerm,Role and Level,ሚና እና ደረጃ @@ -2859,14 +2924,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,ብጁ ሪፖርቶች DocType: Website Script,Website Script,የድር ጣቢያ ስክሪፕት DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,እርስዎ የገዛ ለማተም የ Google መተግበሪያዎች ስክሪፕት webapp እየተጠቀሙ አይደለም ከሆነ ነባሪ https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec መጠቀም ይችላሉ apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,የሕትመት ግብይቶች የተበጁ የ HTML አብነቶች. -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,አቀማመጥ +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,አቀማመጥ DocType: Workflow,Is Active,ገቢር ነው -apps/frappe/frappe/desk/form/utils.py +111,No further records,ምንም ተጨማሪ መረጃዎች +apps/frappe/frappe/desk/form/utils.py +114,No further records,ምንም ተጨማሪ መረጃዎች DocType: DocField,Long Text,ረጅም ጽሑፍ DocType: Workflow State,Primary,የመጀመሪያ -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},ከላይ ረድፎች መቀየር አይደለም እባክዎ {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},ከላይ ረድፎች መቀየር አይደለም እባክዎ {0} DocType: Web Form,Go to this URL after completing the form (only for Guest users),ቅጹን ከጨረሱ በኋላ ወደዚህ ዩአርኤል ይሂዱ (ለእንግዶች ብቻ) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Ctrl + g) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Ctrl + g) DocType: Contact,More Information,ተጨማሪ መረጃ DocType: Data Migration Mapping,Field Maps,የመስክ ካርታዎች DocType: Desktop Icon,Desktop Icon,ዴስክቶፕ አዶ @@ -2887,13 +2952,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,ሰንበር ቅንብሮች DocType: Data Migration Mapping,Data Migration Mapping,የውሂብ ጎዳና ማዛመጃ apps/frappe/frappe/www/login.py +89,Invalid Login Token,ልክ ያልሆነ መግቢያ ማስመሰያ -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,አስወግድ +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,አስወግድ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,1 ሰዓት በፊት DocType: Website Settings,Home Page,መነሻ ገጽ DocType: Error Snapshot,Parent Error Snapshot,የወላጅ ስህተት ቅጽበተ -DocType: Kanban Board,Filters,ማጣሪያዎች +DocType: Prepared Report,Filters,ማጣሪያዎች DocType: Workflow State,share-alt,አጋራ-alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},ወረፋ ውስጥ አንዱ መሆን አለበት {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},ወረፋ ውስጥ አንዱ መሆን አለበት {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2912,12 +2977,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,ስክሪፕት ወይም መጠይቅ ዘግቧል
 DocType: Workflow Document State,Workflow Document State,የስራ ፍሰት ሰነድ ግዛት
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,በጣም ትልቅ ፋይል
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,የኢሜይል መለያ በርካታ ጊዜ ታክሏል
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,የኢሜይል መለያ በርካታ ጊዜ ታክሏል
 DocType: Payment Gateway,Payment Gateway,የክፍያ ጌትዌይ
 DocType: Portal Settings,Hide Standard Menu,መደበኛ ምናሌ ደብቅ
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,የኢሜይል ጎራዎች ያቀናብሩ / ያክሉ.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},ከማስገባትዎ በፊት መሰረዝ አልተቻለም. ይመልከቱ የሽግግር {0}
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,የህትመት ቅርጸት {0} ተሰናክሏል
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},ከማስገባትዎ በፊት መሰረዝ አልተቻለም. ይመልከቱ የሽግግር {0}
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,የህትመት ቅርጸት {0} ተሰናክሏል
 ,Address and Contacts,አድራሻ እና እውቂያዎች
 DocType: Notification,Send days before or after the reference date,በፊት ወይም የማጣቀሻ ቀን በኋላ ቀናት ላክ
 DocType: User,Allow user to login only after this hour (0-24),ተጠቃሚ ብቻ ከዚህ ሰዓት በኋላ መግባት (0-24) ፍቀድ
@@ -2927,7 +2992,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,ሊገመት እንደ ተለዋጭ ምግብ '@' ይልቅ 'አንድ' በጣም ብዙ መርዳት አይደለም.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,እኔ በ የተመደበው
 apps/frappe/frappe/utils/data.py +528,Zero,ዜሮ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,አይደለም የገንቢ ሁነታ ላይ! site_config.json ውስጥ አዘጋጅ ወይም 'ብጁ' DocType ማድረግ.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,አይደለም የገንቢ ሁነታ ላይ! site_config.json ውስጥ አዘጋጅ ወይም 'ብጁ' DocType ማድረግ.
 DocType: Workflow State,globe,ክበብ ምድር
 DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,መደበኛ የህትመት ቅርጸት ውስጥ ደብቅ መስክ
@@ -2940,19 +3005,21 @@ DocType: DocType,Allow Import (via Data Import Tool),አስመጣ ፍቀድ (ው
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,SR
 DocType: DocField,Float,ተንሳፈፈ
 DocType: Print Settings,Page Settings,የገፅ ቅንብሮች
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,በማስቀመጥ ላይ ...
 DocType: Auto Repeat,Submit on creation,ፍጥረት ላይ አስገባ
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,የተሳሳተ የሚስጥርቃል
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,የተሳሳተ የሚስጥርቃል
 DocType: Contact,Purchase Master Manager,የግዢ መምህር አስተዳዳሪ
 DocType: Module Def,Module Name,ሞጁል ስም
 DocType: DocType,DocType is a Table / Form in the application.,DocType መተግበሪያው ውስጥ የርዕስ ማውጫ / ቅጽ ነው.
 DocType: Social Login Key,Authorize URL,ዩአርኤል ፈቀድ
 DocType: Email Account,GMail,የ GMail
 DocType: Address,Party GSTIN,የድግስ GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} ሪፖርት
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} ሪፖርት
 DocType: SMS Settings,Use POST,POST ይጠቀሙ
 DocType: Communication,SMS,ኤስኤምኤስ
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,ምስሎችን አምጣ
 DocType: DocType,Web View,የድር ዕይታ
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,ማስጠንቀቂያ: ይህ ህትመት ቅርጸት የድሮ ቅጥ ውስጥ ነው እና ኤ ፒ አይ በኩል ሊፈጠር አይችልም.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,ማስጠንቀቂያ: ይህ ህትመት ቅርጸት የድሮ ቅጥ ውስጥ ነው እና ኤ ፒ አይ በኩል ሊፈጠር አይችልም.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,ድምሮች
 DocType: DocField,Print Width,አትም ስፋት
 ,Setup Wizard,የውቅር አዋቂ
@@ -2961,6 +3028,7 @@ DocType: Chat Message,Visitor,ጎብኚ
 DocType: User,Allow user to login only before this hour (0-24),ተጠቃሚ ብቻ በዚህ ሰዓት በፊት መግባት (0-24) ፍቀድ
 DocType: Social Login Key,Access Token URL,የመድረሻ ተለዋጭ ስም URL
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,አቃፊ የግዴታ ነው
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} የተመደበው {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,የድር ጣቢያ የመገኛ ገጽ ከ አዲስ መልዕክት
 DocType: Notification,Reference Date,የማጣቀሻ ቀን
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,የሚሰራ የተንቀሳቃሽ ስልክ ቁጥሮች ያስገቡ
@@ -2987,21 +3055,22 @@ DocType: DocField,Small Text,ትንሽ ጽሑፍ
 DocType: Workflow,Allow approval for creator of the document,ለሰነዱ ፈጣሪው መጽደቅን ይፍቀዱ
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,ኤፒአይ መጨረሻ ነጥብ Args
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,አስተዳዳሪ ማግኘት {0} ላይ {1} የአይ ፒ አድራሻ በኩል {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,አስተዳዳሪ ማግኘት {0} ላይ {1} የአይ ፒ አድራሻ በኩል {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,እኩል
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',የሜዳ አማራጮች 'ተለዋዋጭ አገናኝ' አይነት 'DocType' እንደ አማራጮች ጋር ሌላ አገናኝ መስክ ላይ መጥቀስ አለባቸው
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',የሜዳ አማራጮች 'ተለዋዋጭ አገናኝ' አይነት 'DocType' እንደ አማራጮች ጋር ሌላ አገናኝ መስክ ላይ መጥቀስ አለባቸው
 DocType: About Us Settings,Team Members Heading,ርእስ ቡድን አባላት
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,ልክ ያልሆነ የ CSV ቅርጸት
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,ምትኬዎች ቁጥር አዘጋጅ
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,እባክዎ ያስተካክሉ
 DocType: DocField,Do not allow user to change after set the first time,ለመጀመሪያ ጊዜ ተጠቃሚው በኋላ ለማዘጋጀት ሊለወጥ አትፍቀድ
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,የግል ወይም ይፋዊ?
-apps/frappe/frappe/utils/data.py +633,1 year ago,1 ዓመት በፊት
+apps/frappe/frappe/utils/data.py +635,1 year ago,1 ዓመት በፊት
 DocType: Contact,Contact,እውቂያ
 DocType: User,Third Party Authentication,የሦስተኛ ወገን ማረጋገጫ
 DocType: Website Settings,Banner is above the Top Menu Bar.,ሰንደቅ ምርጥ ምናሌ አሞሌ በላይ ነው.
-DocType: Razorpay Settings,API Secret,የኤ ፒ አይ ሚስጥር
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,ወደ ውጪ ላክ ሪፖርት:
+DocType: User,API Secret,የኤ ፒ አይ ሚስጥር
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} መቁጠሪያ
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,ወደ ውጪ ላክ ሪፖርት:
 DocType: Data Migration Run,Push Update,አዘምንን ይጫኑ
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,በራስ የመሙላት ሰነድ ውስጥ
 DocType: Email Account,Port,ወደብ
@@ -3012,7 +3081,7 @@ DocType: Website Slideshow,Slideshow like display for the website,ድር ጣቢ
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,የተለያዩ መስፈርቶችን መሰረት በማድረግ የማዋቀር ማሳወቂያዎች.
 DocType: Communication,Updated,የተዘመነ
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,ይምረጡ ሞዱል
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,አዲስ ቻት ፈልግ ወይም ፍጠር
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,አዲስ ቻት ፈልግ ወይም ፍጠር
 apps/frappe/frappe/sessions.py +29,Cache Cleared,መሸጎጫ ጸድቷል
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,አዲስ ኢሜይል
@@ -3028,7 +3097,7 @@ DocType: Print Settings,PDF Settings,የፒዲኤፍ ቅንብሮች
 DocType: Kanban Board Column,Column Name,የአምድ ስም
 DocType: Language,Based On,በዛላይ ተመስርቶ
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ነባሪ አድርግ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} መጠቆም አይችልም
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} መጠቆም አይችልም
 DocType: Communication,Email Account,የኢሜይል መለያ
 DocType: Workflow State,Download,አውርድ
 DocType: Blog Post,Blog Intro,መግቢያ ብሎግ
@@ -3042,7 +3111,7 @@ DocType: Web Page,Insert Code,አስገባ ኮድ
 DocType: Data Migration Run,Current Mapping Type,የአሁኑ የካርታ አይነት
 DocType: ToDo,Low,ዝቅ ያለ
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,አንተ ጂንጃ templating በመጠቀም ሰነዱን ከ ተለዋዋጭ ንብረቶች ማከል ይችላሉ.
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},ልክ ያልሆነ ገደብ {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},ልክ ያልሆነ ገደብ {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ሰነድ አይነት ዘርዝር
 DocType: Event,Ref Type,ማጣቀሻ አይነት
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ, የ "ስም" (አይዲ) አምድ ባዶ ተወው."
@@ -3064,21 +3133,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,
 DocType: Print Settings,Send Print as PDF,እንደ PDF Print ላክ
 DocType: Web Form,Amount,መጠን
 DocType: Workflow Transition,Allowed,ተፈቅዷል
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,ቅጽ ውስጥ አንድ ብቻ ነው እጠፈው ሊኖሩ ይችላሉ
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,ቅጽ ውስጥ አንድ ብቻ ነው እጠፈው ሊኖሩ ይችላሉ
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},የፋይል ቅርጸት መጻፍ አልተቻለም {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,ነባሪ ቅንብሮች እነበረበት መልስ?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,ልክ ያልሆነ መነሻ ገጽ
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,ልክ ያልሆነ ግባ. እንደገና ሞክር.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},ረድፍ ውስጥ አገናኝ ወይም ሠንጠረዥ አይነት መስክ {0} ያስፈልጋል አማራጮች {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},ረድፍ ውስጥ አገናኝ ወይም ሠንጠረዥ አይነት መስክ {0} ያስፈልጋል አማራጮች {1}
 DocType: Auto Email Report,Send only if there is any data,ምንም ውሂብ የለም ብቻ ከሆነ ነው ላክ
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,ዳግም አስጀምር ማጣሪያዎች
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0}: ከፍተኛ ደረጃ ማዘጋጀት በፊት ደረጃ 0 ላይ ፈቃድ መዘጋጀት አለበት
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,ዳግም አስጀምር ማጣሪያዎች
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0}: ከፍተኛ ደረጃ ማዘጋጀት በፊት ደረጃ 0 ላይ ፈቃድ መዘጋጀት አለበት
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},ተልእኮ በ ተዘግቷል {0}
 DocType: Integration Request,Remote,ሩቅ
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,አሰበ
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,መጀመሪያ DocType እባክዎ ይምረጡ
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,የእርስዎ ኢሜይል ያረጋግጡ
-apps/frappe/frappe/www/login.html +40,Or login with,ወይስ ጋር መግባት
+apps/frappe/frappe/www/login.html +41,Or login with,ወይስ ጋር መግባት
 DocType: Error Snapshot,Locals,የአካባቢው ሰዎች
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},በኩል እንዳልተካፈለች {0} ላይ {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} ውስጥ አስተያየት ውስጥ ጠቅሶሃል {1}
@@ -3088,23 +3157,24 @@ DocType: Integration Request,Integration Type,የውህደት አይነት
 DocType: Newsletter,Send Attachements,Attachements ላክ
 DocType: Transaction Log,Transaction Log,የግብይት ምዝግብ ማስታወሻ
 DocType: Contact Us Settings,City,ከተማ
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,ለማስገባት Ctrl + Enter ይጫኑ
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,ለማስገባት Ctrl + Enter ይጫኑ
 DocType: DocField,Perm Level,Perm ደረጃ
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,ሰነድ ይመልከቱ
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,በዛሬው ቀን መቁጠሪያ ውስጥ ክስተቶች
 DocType: Web Page,Web Page,ድረ ገጽ
 DocType: Workflow Document State,Next Action Email Template,ቀጣይ Action Email Template
 DocType: Blog Category,Blogger,ብሎገር
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},'ግሎባል ፍለጋ ውስጥ' አይነት አይፈቀድም {0} ረድፍ ውስጥ {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},'ግሎባል ፍለጋ ውስጥ' አይነት አይፈቀድም {0} ረድፍ ውስጥ {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,ይመልከቱ ዝርዝር
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},የቀን ቅርጸት ውስጥ መሆን አለባቸው: {0}
 DocType: Workflow,Don't Override Status,ሁኔታ ሻር አትበል
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ደረጃ ይስጡ.
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ግብረ ጥያቄ
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,የፍለጋ ቃል
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,የመጀመሪያው አባል: አንተ
 DocType: Deleted Document,GCalendar Sync ID,የ GCalendar ማመሳሰል መታወቂያ
+DocType: Prepared Report,Report Start Time,ሪፖርት መጀመሪያ ጊዜ
 apps/frappe/frappe/config/setup.py +112,Export Data,ውሂብ ወደ ውጪ ላክ
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,ይምረጡ አምዶች
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,ይምረጡ አምዶች
 DocType: Translation,Source Text,ምንጭ ጽሑፍ
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,መግባት ይጎድላሉ መለኪያዎች
 DocType: Workflow State,folder-open,አቃፊ ክፈት
@@ -3117,7 +3187,7 @@ DocType: Property Setter,Set Value,አዘጋጅ እሴት
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,መልክ መስክ ደብቅ
 DocType: Webhook,Webhook Data,Webhook ውሂብ
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},{0} በመፍጠር ላይ
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,ህገወጥ የመዳረሻ ማስመሰያ. እባክዎ ዳግም ይሞክሩ
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,ህገወጥ የመዳረሻ ማስመሰያ. እባክዎ ዳግም ይሞክሩ
 apps/frappe/frappe/public/js/frappe/desk.js +92,"The application has been updated to a new version, please refresh this page","መተግበሪያው አዲስ ስሪት ወደ ዘምኗል, ይህን ገጽ ያድሱት እባክዎ"
 apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,ዳግም ላክ
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,አማራጭ: ይህ አባባል እውነት ከሆነ ማንቂያ ይላካል
@@ -3131,8 +3201,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,ደረጃ
 DocType: Custom DocPerm,Report,ሪፖርት
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,የገንዘብ መጠን 0 የበለጠ መሆን አለበት.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} ተቀምጧል
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,{0} ተጠቃሚ ተሰይሟል አይችልም
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} ተቀምጧል
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,{0} ተጠቃሚ ተሰይሟል አይችልም
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),Fieldname 64 ቁምፊዎች የተገደበ ነው ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,የኢሜይል የቡድን ዝርዝር
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],.ico ቅጥያ ጋር አንድ አዶ ፋይል. 16 x 16 ፒክስል መሆን አለበት. አንድ የፋቪኮን ጄኔሬተር በመጠቀም የተፈጠረ. [Favicon-generator.org]
@@ -3145,23 +3215,22 @@ DocType: Website Theme,Background,ዳራ
 DocType: Report,Ref DocType,ማጣቀሻ DocType
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,ማህበራዊ መግባት ከመቻሉ በፊት እባክዎ የደንበኛ መታወቂያዎን ያስገቡ
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,አንድ ደረጃ ያክሉ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0}: ያለ ይቅር እንዲሻሻል ማዘጋጀት አይቻልም
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{0}: Cannot set Amend without Cancel,{0}: ያለ ይቅር እንዲሻሻል ማዘጋጀት አይቻልም
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,ሙሉ ገጽ
 DocType: DocType,Is Child Table,የልጅ ማውጫ ነው
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} ዓመቱ (ዓመታት) በፊት
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} ውስጥ አንዱ መሆን አለበት {1}
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} ውስጥ አንዱ መሆን አለበት {1}
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} በአሁኑ ጊዜ ይህን ሰነዱን እያዩት ነው
 apps/frappe/frappe/config/core.py +52,Background Email Queue,የጀርባ የኢሜይል ወረፋ
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,የይለፍ ቃል ዳግም አስጀምር
 DocType: Communication,Opened,የተከፈተ
 DocType: Workflow State,chevron-left,ሸቭሮን-ግራ
 DocType: Communication,Sending,በመላክ ላይ
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,ይህ የአይ ፒ አድራሻ ከ አይፈቀድም
+apps/frappe/frappe/auth.py +272,Not allowed from this IP Address,ይህ የአይ ፒ አድራሻ ከ አይፈቀድም
 DocType: Website Slideshow,This goes above the slideshow.,ይህ የተንሸራታች በላይ ይሄዳል.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,መተግበሪያዎች ይጫኑ.
 DocType: Contact,Last Name,የአያት ሥም
 DocType: Event,Private,የግል
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,ዛሬ ምንም ማንቂያዎች
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,ዛሬ ምንም ማንቂያዎች
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),እንደ ፒዲኤፍ የኢሜይል የህትመት አባሪዎች ይላኩ (የሚመከር)
 DocType: Web Page,Left,ግራ
 DocType: Event,All Day,ሙሉ ቀን
@@ -3172,10 +3241,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",የምስል መ
 apps/frappe/frappe/utils/bot.py +43,I found these: ,እኔም እነዚህን አገኙ;
 DocType: Event,Send an email reminder in the morning,ጠዋት አንድ የኢሜይል አስታዋሽ ላክ
 DocType: Blog Post,Published On,ላይ የታተመ
-apps/frappe/frappe/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም. እባክዎ ከስር አዘጋጅ> የታተመ እና ስምሪት> የአድራሻ አብነት አዲስ አንድ ያድርጉ.
 DocType: Contact,Gender,ፆታ
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,ጠፍቷል አስገዳጅ መረጃ:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,የመስክ «{0}» ያልሆኑ ልዩ እሴቶች አሉት እንደ ልዩ ሊዘጋጅ አይችልም
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,ጠፍቷል አስገዳጅ መረጃ:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,የመስክ «{0}» ያልሆኑ ልዩ እሴቶች አሉት እንደ ልዩ ሊዘጋጅ አይችልም
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,የጥያቄ ዩአርኤል ጥያቄ
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,ብቻ 200 ያስገባል አንድ ጥያቄ ውስጥ አይፈቀዱም
 DocType: Footer Item,URL,ዩ አር ኤል
@@ -3191,12 +3259,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,ዛፍ
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,ይህን ሪፖርት ማተም አይፈቀድም
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,የተጠቃሚ ፍቃዶች
 DocType: Workflow State,warning-sign,ማስጠንቀቂያ-ምልክት
+DocType: Prepared Report,Prepared Report,የተዘጋጀ ሪፖርት
 DocType: Workflow State,User,ተጠቃሚ
 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",እንደ የአሳሽ መስኮት ውስጥ አሳይ ርዕስ "ቅድመ ቅጥያ - ርዕስ"
 DocType: Payment Gateway,Gateway Settings,የመግቢያ ቅንብሮች
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ሰነድ ዓይነት ውስጥ ጽሑፍ
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,አሂድ ፈተናዎች
-apps/frappe/frappe/handler.py +94,Logged Out,ውጪ ገብቷል
+apps/frappe/frappe/handler.py +95,Logged Out,ውጪ ገብቷል
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,ተጨማሪ ...
 DocType: System Settings,User can login using Email id or Mobile number,የተጠቃሚ የኢሜይል መታወቂያ ወይም የሞባይል ቁጥር በመጠቀም መግባት ይችላሉ
 DocType: Bulk Update,Update Value,አዘምን እሴት
@@ -3204,12 +3273,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,መሰየም ወደ አዲስ ስም ይምረጡ
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,ልክ ያልሆነ አምድ
 DocType: Data Migration Connector,Data Migration,የውሂብ ሽግግር
+DocType: User,API Key cannot be  regenerated,ኤፒአይ ቁልፍ ዳግም ሊፈጠር አይችልም
 apps/frappe/frappe/public/js/frappe/request.js +167,Something went wrong,የሆነ ስህተት ተከስቷል
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,ብቻ {0} ግቤቶች ይታያሉ. ተጨማሪ የተወሰኑ ውጤቶችን ለማግኘት ማጣራት እባክህ.
 DocType: System Settings,Number Format,ቁጥር ቅርጸት
 DocType: Auto Repeat,Frequency,መደጋገም
 DocType: Custom Field,Insert After,በኋላ አስገባ
-DocType: Report,Report Name,ሪፖርት ስም
+DocType: Prepared Report,Report Name,ሪፖርት ስም
 DocType: Desktop Icon,Reverse Icon Color,አዶ ቀለም የኋሊዮሽ
 DocType: Notification,Save,አስቀምጥ
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,ቀጣይ መርሃግብር የተያዘበት ቀን
@@ -3222,13 +3292,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,ነባሪ
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} ታክሏል
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ፈልግ «{0}»
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,መጀመሪያ ሪፖርት ማስቀመጥ እባክዎ
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,መጀመሪያ ሪፖርት ማስቀመጥ እባክዎ
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ተመዝጋቢዎች ታክሏል
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,አይደለም ውስጥ
 DocType: Workflow State,star,ኮከብ
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,ማዕከል
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,እሴቶች በኮማ የተለዩ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,Max width for type Currency is 100px in row {0},አይነት ምንዛሬ ለማግኘት ከፍተኛ ስፋት ረድፍ ውስጥ 100px ነው {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +281,values separated by commas,እሴቶች በኮማ የተለዩ
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Max width for type Currency is 100px in row {0},አይነት ምንዛሬ ለማግኘት ከፍተኛ ስፋት ረድፍ ውስጥ 100px ነው {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},የእርስዎን ግብረመልስ ለማጋራት እባክዎ {0}
 apps/frappe/frappe/config/website.py +13,Content web page.,የይዘት ድረ-ገጽ.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,አዲስ ሚና አክል
@@ -3241,15 +3311,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,የሚከተሏቸው ዶክተሮች መዛግብት ይጣራሉ
 DocType: Blog Settings,Blog Introduction,የጦማር መግቢያ
 DocType: Address,Office,ቢሮ
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,ይህ Kanban ቦርድ የግል ይሆናል
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,ይህ Kanban ቦርድ የግል ይሆናል
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,መደበኛ ሪፖርቶች
 DocType: User,Email Settings,የኢሜይል ቅንብሮች
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,ለመቀጠል እባክዎ የይለፍ ቃልዎን ያስገቡ
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,ለመቀጠል እባክዎ የይለፍ ቃልዎን ያስገቡ
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,ትክክለኛ የኤልዲኤፒ ተጠቃሚ
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} አይደለም የሚሰራ መንግስት
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} አይደለም የሚሰራ መንግስት
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',ሌላ የክፍያ ስልት ይምረጡ. PayPal «{0}» ምንዛሬ ግብይቶችን አይደግፍም
 DocType: Chat Message,Room Type,የክፍል አይነት
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,የፍለጋ መስክ {0} ልክ ያልሆነ ነው
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,የፍለጋ መስክ {0} ልክ ያልሆነ ነው
 DocType: Workflow State,ok-circle,ok-ክበብ
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',አንተ 'ደንበኞች ውስጥ ብርቱካናማ ማግኘት' በመጠየቅ ነገሮችን ማግኘት ይችላሉ
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,አዝናለሁ! ተጠቃሚ የራሳቸውን መዝገብ ሙሉ መዳረሻ ሊኖራቸው ይገባል.
@@ -3265,21 +3335,21 @@ DocType: DocField,Unique,የተለየ
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,ከፊል ስኬት
 DocType: Email Account,Service,አገልግሎት
 DocType: File,File Name,የመዝገብ ስም
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),ማግኘት አልተቻለም ነበር {0} ለ {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),ማግኘት አልተቻለም ነበር {0} ለ {0} ({1})
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","ውይ, ይህን ታውቃለህ አልተፈቀደልህም"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,ቀጣይ
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,በተሳካ ሁኔታ ወጥተዋል
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,በተሳካ ሁኔታ ወጥተዋል
 DocType: Calendar View,Calendar View,የቀን መቁጠሪያ እይታ
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,አርትዕ ቅርጸት
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,ሙሉ ምዝገባ
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,ሙሉ ምዝገባ
 DocType: GCalendar Settings,Enable,አንቃ
-DocType: Google Maps,Home Address,የቤት አድራሻ
+DocType: Google Maps Settings,Home Address,የቤት አድራሻ
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),አዲስ {0} (Ctrl + ለ)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,ከፍተኛ አሞሌ ቀለም እና የጽሁፍ ቀለም ተመሳሳይ ናቸው. እነዚህ ተነባቢ እንዲሆን ጥሩ ልዩነት ሊኖረው ይገባል.
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),አንተ ብቻ አንድ በመሄድ በ 5000 መዝገቦች እስከሁለት መስቀል ይችላሉ. (በአንዳንድ አጋጣሚዎች ያነሰ ሊሆን ይችላል)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},በቂ ፈቃድ {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),ሪፖርት አልተቀመጠም ነበር (ስህተቶች ነበሩ)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,የአርዕስት ይዘት መለወጥ አይቻልም
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),ሪፖርት አልተቀመጠም ነበር (ስህተቶች ነበሩ)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,የአርዕስት ይዘት መለወጥ አይቻልም
 DocType: Print Settings,Print Style,አትም ቅጥ
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,ማንኛውንም መዝገብ ጋር አልተገናኘም
 DocType: Custom DocPerm,Import,አስገባ
@@ -3308,9 +3378,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,የቅርብ ጊዜ ሰነዱን ለማግኘት እባክዎ ያድሱ.
 DocType: User,Security Settings,የደህንነት ቅንብሮች
 DocType: Website Settings,Operators,ከዋኞች
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,አምድ ያክሉ
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,አምድ ያክሉ
 ,Desktop,ዴስክቶፕ
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},የውጭ ንግድ ሪፖርት: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},የውጭ ንግድ ሪፖርት: {0}
 DocType: Auto Email Report,Filter Meta,Meta አጣራ
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ይህን ቅጽ አንድ ድረ-ገጽ ካለው ጽሑፍ ድረ ገጽ አገናኝ ለ እንዲታዩ. አገናኝ መንገድ በራስ-ሰር page_name` እና `parent_website_route`` ላይ ተመስርተው የመነጩ ይሆናል
 DocType: Feedback Request,Feedback Trigger,ግብረ ቀስቅስ
@@ -3337,6 +3407,6 @@ DocType: Bulk Update,Max 500 records at a time,በአንድ ጊዜ ቢበዛ 500
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","ውሂብዎን ኤች ውስጥ ከሆነ, መለያዎች ጋር ትክክለኛ HTML ኮድ ይለጥፉት ቅጂ ያድርጉ."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,የተያያዘው ፋይል መክፈት አልተቻለም. እርስዎ እንደ CSV ወደ ውጪ እንዴት ነው?
 DocType: DocField,Ignore User Permissions,የተጠቃሚ ፍቃዶችን ችላ
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,የእርስዎ በመለያ-ምትኬ ለማረጋገጥ የእርስዎን አስተዳዳሪውን ይጠይቁ
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,የእርስዎ በመለያ-ምትኬ ለማረጋገጥ የእርስዎን አስተዳዳሪውን ይጠይቁ
 DocType: Domain Settings,Active Domains,ንቁ ጎራዎች
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,አሳይ ምዝግብ ማስታወሻ
diff --git a/frappe/translations/ar.csv b/frappe/translations/ar.csv
index 5d475ccd41..36afdf0707 100644
--- a/frappe/translations/ar.csv
+++ b/frappe/translations/ar.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,الرجاء تحديد حقل المبلغ.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,اضغط على ESC لإغلاق
-apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}",مهمة جديدة، {0}، أسندت إليك بواسطة {1}. {2}
+apps/frappe/frappe/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}",مهمة جديدة، {0}، أسندت إليك بواسطة {1}. {2}
 DocType: Email Queue,Email Queue records.,سجلات البريد الإلكتروني قائمة الانتظار.
 DocType: Address,Punjab,البنجاب
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,إعادة تسمية العديد من العناصر عن طريق تحميل ملف CSV .
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,الموقع
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,تحتاج إلى تسجيل الدخول للوصول إلى هذه الصفحة
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ملاحظة: سيتم السماح جلسات متعددة في حالة جهاز المحمول
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},تمكين البريد الوارد البريد الإلكتروني للمستخدم {المستخدمين}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},تمكين البريد الوارد البريد الإلكتروني للمستخدم {المستخدمين}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,لا يمكن إرسال هذا البريد الإلكتروني. لقد تجاوزت الحدود ارسال {0} رسائل البريد الإلكتروني لهذا الشهر.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,إرسال دائم {0} ؟
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,تحميل الملفات النسخ الاحتياطي
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} شجرة
 DocType: User,User Emails,مراسلات المستخدم
 DocType: User,Username,اسم االمستخدم
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,استيراد الرمز البريدي
-apps/frappe/frappe/model/base_document.py +554,Value too big,قيمة كبيرة جدا
+apps/frappe/frappe/model/base_document.py +563,Value too big,قيمة كبيرة جدا
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,تشغيل اختبار البرنامج النصي
 DocType: Data Import,Total Rows,إجمالي الصفوف
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,السجلات
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,ومن الضروري اتخاذ هذا الإجراء اليوم نفسه من أجل تكرار ذكره أعلاه
 DocType: Custom DocPerm,This role update User Permissions for a user,هذا الدور ضوابط التحديث العضو لمستخدم
-apps/frappe/frappe/public/js/frappe/model/model.js +539,Rename {0},إعادة تسمية {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},إعادة تسمية {0}
 DocType: Workflow State,zoom-out,تصغير
 apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,لا يمكن فتح {0} عندما مثيل لها مفتوح
-apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,الجدول {0} لا يمكن أن يكون فارغ
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,الجدول {0} لا يمكن أن يكون فارغ
 DocType: SMS Parameter,Parameter,المعلمة
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,مع سجلات الحسابات
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,تم تعديل الوثيقة!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,مع سجلات الحسابات
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,صور
 DocType: Activity Log,Reference Owner,إشارة المالك
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",إذا تم تمكينه ، يمكن للمستخدم تسجيل الدخول من أي عنوان IP باستخدام Two Factor Auth ، يمكن أيضًا تعيين ذلك لجميع المستخدمين في إعدادات النظام
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,أصغر وحدة تعميم جزء (عملة). على سبيل المثال ل 1 في المائة لUSD ويجب إدخال كما 0.01
 DocType: Social Login Key,GitHub,جيثب
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}",{0}، الصف {1}
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}",{0}، الصف {1}
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,يرجى إعطاء FULLNAME.
-apps/frappe/frappe/model/document.py +1057,Beginning with,بدء ب
+apps/frappe/frappe/model/document.py +1058,Beginning with,بدء ب
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,قالب ادخال البيانات
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,أصل
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",إذا تم تمكينه، سيتم فرض قوة كلمة المرور استنادا إلى قيمة الحد الأدنى لقيمة كلمة المرور. قيمة 2 كونها متوسطة قوية و 4 قوية جدا.
 DocType: About Us Settings,"""Team Members"" or ""Management""","""أعضاء الفريق"" أو ""الإدارة"""
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',"القيمة الافتراضية لنوع الحقل ""تحديد"" يجب ان تكون  اما '1' او '0'"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',"القيمة الافتراضية لنوع الحقل ""تحديد"" يجب ان تكون  اما '1' او '0'"
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,أمس
 DocType: Contact,Designation,تعيين
 DocType: Test Runner,Test Runner,اختبار عداء
@@ -66,10 +65,11 @@ DocType: Auto Repeat,Monthly,شهريا
 DocType: Address,Uttarakhand,أوتارانتشال
 DocType: Email Account,Enable Incoming,تمكين الوارد
 apps/frappe/frappe/core/doctype/version/version_view.html +47,Danger,خطر
-apps/frappe/frappe/www/login.html +20,Email Address,عنوان البريد الإلكتروني
+apps/frappe/frappe/www/login.html +21,Email Address,عنوان البريد الإلكتروني
 DocType: Workflow State,th-large,TH-الكبيرة
 DocType: Communication,Unread Notification Sent,إعلام مقروء المرسلة
 apps/frappe/frappe/public/js/frappe/misc/tools.js +10,Export not allowed. You need {0} role to export.,الصادرات غير مسموح به. تحتاج {0} صلاحية التصدير.
+DocType: System Settings,In seconds,في ثوان
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,إلغاء {0} وثائق؟
 DocType: DocType,Is Published Field,ونشرت الميدان
 DocType: GCalendar Settings,GCalendar Settings,إعدادات GCalendar
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,البريد الإلكتروني المجمو
 DocType: Note,Seen By,تمت رؤيته بواسطة
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,إضافة متعددة
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,ليست صورة مستخدم صالحة.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,الإعداد> المستخدم
 DocType: Success Action,First Success Message,رسالة النجاح الأولى
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,لا تعجبني
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,تعيين التسمية عرض للحقل
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},قيمة غير صحيحة: {0} يجب أن يكون {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},قيمة غير صحيحة: {0} يجب أن يكون {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)",تغيير خصائص الحقل (إخفاء ، للقراءة فقط ، إذن الخ )
 DocType: Workflow State,lock,قفل
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,إعدادات صفحة الاتصال بنا
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,تسجيل دخول مسؤول النظام
+apps/frappe/frappe/core/doctype/user/user.py +917,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 +34,Add a tag ...,أضف علامة دلائلية ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},جديد {0}: # {1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},جديد {0}: # {1}
 DocType: Data Migration Run,Insert,إدراج
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},حدد {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,الرجاء إدخال عنوان ورل الأساسي
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,أنواع المستندات
 DocType: Address,Jammu and Kashmir,جامو وكشمير
 DocType: Workflow,Workflow State Field,حقل حالة سير العمل
-apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,يرجى الاشتراك أو تسجيل الدخول لبدء
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,يرجى الاشتراك أو تسجيل الدخول لبدء
 DocType: Blog Post,Guest,ضيف
 DocType: DocType,Title Field,حقل العنوان
 DocType: Error Log,Error Log,سجل الأخطاء
 apps/frappe/frappe/utils/password_strength.py +108,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",يكرر مثل "abcabcabc" ليست سوى أصعب قليلا لتخمين من "اي بي سي"
 DocType: Notification,Channel,قناة
 apps/frappe/frappe/templates/emails/administrator_logged_in.html +3,"If you think this is unauthorized, please change the Administrator password.",إذا كنت تعتقد أن هذا غير المصرح به، الرجاء تغيير كلمة مرور المسؤول.
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} إلزامي
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} إلزامي
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","خيارات التسمية:
  1. الحقل: [اسم المجال] - حسب الحقل
  2. naming_series: - حسب تسمية السلسلة (يجب أن يكون الحقل الذي يسمى naming_series موجودًا
  3. موجه - موجه المستخدم لاسم
  4. [سلسلة] - سلسلة بالبادئة (مفصولة بنقطة) ؛ على سبيل المثال PRE.
  5. متسلسل: [fieldname1] ، [fieldname2] ، ... [fieldnameX] - بواسطة اسم الحقل التسلسل (يمكنك تسلسل أكبر عدد من الحقول كما تريد. كما يعمل خيار السلسلة)
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,مالك DocType: Communication,Visit,زيارة DocType: LDAP Settings,LDAP Search String,LDAP بحث سلسلة DocType: Translation,Translation,ترجمة -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,الإعداد> تخصيص النموذج apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,السيد DocType: Custom Script,Client,عميل apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,حدد العمود @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,سجل الادخالات apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,تضمين عرض الشرائح صورة في صفحات الموقع. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,إرسال DocType: Workflow Action Master,Workflow Action Name,سير العمل اسم العمل -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,لا يمكن دمج DOCTYPE +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,DocType can not be merged,لا يمكن دمج DOCTYPE DocType: Web Form Field,Fieldtype,نوع الحقل apps/frappe/frappe/core/doctype/file/file.py +270,Not a zip file,ليس ملف مضغوط DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,حدث دوك apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,أنت DocType: Braintree Settings,Braintree Settings,إعدادات برينتري DocType: Website Theme,lowercase,أحرف صغيرة -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,يرجى تحديد الأعمدة بناءً على apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,حفظ الفلتر DocType: Print Format,Helvetica,هلفتيكا apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},لا يمكن حذف {0} +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,ليس الأجداد من DocType: Address,Jharkhand,جهارخاند apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,الرسالة الإخبارية قد تم إرسالها من قبل apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry",انتهت صلاحية جلسة تسجيل الدخول، ثم حدث الصفحة لإعادة المحاولة @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,البريد الإلكتروني DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,اختر صورة بعرض 150px تقريبا مع خلفية شفافة لنتيجة افضل apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,تطبيقات الجهات الخارجية apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,المستخدم الأول سوف تصبح مدير النظام (يمكنك تغيير هذا لاحقا). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. الرجاء إنشاء واحدة جديدة من الإعداد> الطباعة والعلامة التجارية> قالب العنوان. apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,يجب تقديم دوكتيب للحدث دوك المحدد ,App Installer,التطبيق المثبت DocType: Workflow State,circle-arrow-up,دائرة السهم إلى أعلى DocType: Email Domain,Email Domain,المجال البريد الإلكتروني DocType: Workflow State,italic,مائل -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0} : لا يمكن تحديد استيراد دون إنشاء +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0} : لا يمكن تحديد استيراد دون إنشاء DocType: SMS Settings,Enter url parameter for message,ادخل معمل العنوان للرسالة apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,عرض التقرير في المتصفح apps/frappe/frappe/config/desk.py +26,Event and other calendars.,الحدث والتقويمات الأخرى. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,جميع الحقول ضرورية لتقديم التعليق. +DocType: Print Settings,Printer Name,اسم الطابعة +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,اسحب لفرز الأعمدة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,الاعراض يمكن تعيين في مقصف أو٪. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,بداية DocType: Contact,First Name,الاسم الأول @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,الملفات apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,الحصول على تطبيق الأذونات على المستخدمين على أساس ما الصلاحيات التي تم تعيينها . apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,الرجاء تحديد أتلست العمود 1 من {0} لفرز / مجموعة +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,الرجاء تحديد أتلست العمود 1 من {0} لفرز / مجموعة DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,حدد هذا الخيار إذا كنت اختبار الدفع الخاص بك باستخدام API رمل apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,لا يسمح لك بحذف موضوع الموقع القياسي DocType: Data Import,Log Details,تفاصيل السجل DocType: Feedback Trigger,Example,مثال DocType: Webhook Header,Webhook Header,رأس ويبهوك +DocType: Print Settings,Print Server,ملقم الطباعة DocType: Workflow State,gift,هدية DocType: Workflow Action,Completed By,اكتمل بواسطة apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Reqd @@ -223,12 +227,13 @@ 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/ui/toolbar/navbar.html +64,Documentation,توثيق +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,توثيق DocType: Webhook,on_change,على التغيير apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,حذف {0} العناصر نهائيا؟ apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,غير مسموح DocType: DocShare,Internal record of document shares,السجل الداخلي للأسهم وثيقة DocType: Workflow State,Comment,تعليق +DocType: Data Migration Plan,Postprocess Method,طريقة Postprocess apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,تصوير apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.",يمكنك تغيير الوثائق المسجلة من خلال إلغائها ، ثم تعديلها . DocType: Data Import,Update records,تحديث السجلات @@ -236,20 +241,20 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,عرض DocType: Email Group,Total Subscribers,إجمالي عدد المشتركين apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,حفظ باسم +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,حفظ باسم DocType: Communication,Seen,رأيت apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,إظهار مزيد من التفاصيل DocType: System Settings,Run scheduled jobs only if checked,تشغيل المهام المجدولة الا إذا دققت apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,سيتم عرض فقط إذا تم تمكين عناوين المقطع apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,أرشيف -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,تحميل الملف +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,تحميل الملف DocType: Activity Log,Message,رسالة DocType: Communication,Rating,تقييم DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table",طباعة العرض في هذا المجال، إذا كان الحقل هو عمود في الجدول DocType: Dropbox Settings,Dropbox Access Key,دروببوإكس مفتاح الوصول -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,اسم الحقل غير صحيح {0} في add_fetch تكوين البرنامج النصي المخصص +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,اسم الحقل غير صحيح {0} في add_fetch تكوين البرنامج النصي المخصص DocType: Workflow State,headphones,سماعة الرأس -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,مطلوب كلمة السر أو اختر بانتظار كلمة السر +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,مطلوب كلمة السر أو اختر بانتظار كلمة السر DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,على سبيل المثال replies@yourcomany.com. سيأتي كل الردود على هذا البريد الوارد. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL DocType: Data Migration Run,Current Mapping,التخطيط الحالي @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,مجموعات من Doc apps/frappe/frappe/config/integrations.py +93,Google Maps integration,دمج خرائط غوغل DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,اعد ضبط كلمه السر +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,عرض عطلة نهاية الاسبوع DocType: Workflow State,remove-circle,إزالة دائرة، DocType: Help Article,Beginner,مبتدئ DocType: Contact,Is Primary Contact,هو جهة الاتصال الرئيسية apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,لم يتم الحاق الجافا سكربت بأعلى الصفحة. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,لا يسمح لطباعة مسودات الوثائق +apps/frappe/frappe/www/printview.py +80,Not allowed to print draft documents,لا يسمح لطباعة مسودات الوثائق apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +12,Reset to defaults,إعادة تعيين إلى الإعدادات الافتراضية DocType: Workflow,Transition Rules,الانتقال قوانين apps/frappe/frappe/core/doctype/report/report.js +11,Example:,على سبيل المثال: -DocType: Google Maps,Google Maps,خرائط جوجل DocType: Workflow,Defines workflow states and rules for a document.,تحديد حالات و قواعد سير العمل للوثيقة DocType: Workflow State,Filter,فلتر apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1} @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,تحدي apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,تم تعديل الوثيقة بعد أن كنت قد فتحه: خطأ apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} تسجيل الخروج: {1} DocType: Address,West Bengal,البنغال الغربي -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0} : لا يمكن تحديد تعيين بالتأكيد إذا لم يكن قابل للتأكيد +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0} : لا يمكن تحديد تعيين بالتأكيد إذا لم يكن قابل للتأكيد DocType: Transaction Log,Row Index,مؤشر الصف DocType: Social Login Key,Facebook,الفيسبوك -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",تمت تصفيتها من قبل "{0}" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",تمت تصفيتها من قبل "{0}" DocType: Salutation,Administrator,مدير DocType: Activity Log,Closed,مغلق DocType: Blog Settings,Blog Title,عنوان المدونه apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,الصلاحيات القياسية لا يمكن تعطيلها -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,نوع الدردشة +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,نوع الدردشة DocType: Address,Mizoram,ميزورام DocType: Newsletter,Newsletter,النشرة الإخبارية -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,لا يمكن استخدام الاستعلام الفرعي في النظام عن طريق +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,لا يمكن استخدام الاستعلام الفرعي في النظام عن طريق DocType: Web Form,Button Help,زر المساعدة DocType: Kanban Board Column,purple,أرجواني DocType: About Us Settings,Team Members,أعضاء الفريق @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",شروط SQL. ع DocType: User,Get your globally recognized avatar from Gravatar.com,الحصول على الرمزية الخاص بك المعترف بها عالميا من Gravatar.com apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.",تم أنتهاء اشتراكك في {0}. للتجديد، {1}. DocType: Workflow State,plus-sign,زائد توقيع -apps/frappe/frappe/__init__.py +918,App {0} is not installed,لم يتم تثبيت التطبيق {0} +apps/frappe/frappe/__init__.py +994,App {0} is not installed,لم يتم تثبيت التطبيق {0} DocType: Data Migration Plan,Mappings,تعيينات DocType: Notification Recipient,Notification Recipient,مستلم الإعلام DocType: Workflow State,Refresh,تحديث DocType: Event,Public,جمهور -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,لا شيء لإظهار +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,لا شيء لإظهار DocType: System Settings,Enable Two Factor Auth,تمكين اثنين من عامل المصادقة -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[عاجل] حدث خطأ أثناء إنشاء٪ s متكررة ل٪ s +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[عاجل] حدث خطأ أثناء إنشاء٪ s متكررة ل٪ s apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,أحب بواسطة DocType: DocField,Print Hide If No Value,طباعة إخفاء إذا لا قيمة DocType: Kanban Board Column,yellow,الأصفر -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,ونشرت الميدان يجب أن يكون ساري المفعول FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,ونشرت الميدان يجب أن يكون ساري المفعول FIELDNAME apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,رفع المرفقات DocType: Block Module,Block Module,كتلة الوحدة apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,قيمة جديدة +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,لا توجد صلاحية ل تعديل apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,إضافة عمود apps/frappe/frappe/www/contact.html +34,Your email address,عنوان البريد الإلكتروني الخاص بك DocType: Desktop Icon,Module,إضافة DocType: Notification,Send Alert On,إرسال تنبيه في DocType: Customize Form,"Customize Label, Print Hide, Default etc.",تخصيص تسمية، إخفاء طباعة، الخ الافتراضي -apps/frappe/frappe/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,يرجى التأكد من أن وثائق الاتصال المرجعية غير مرتبطة بشكل دائري. +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,يرجى التأكد من أن وثائق الاتصال المرجعية غير مرتبطة بشكل دائري. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,انشاء شكل جديد apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,تعذر إنشاء مجموعة بيانات: {0}. قم بتغيرها إلى اسم فريد من نوعه. DocType: Webhook,Request URL,طلب عنوان ورل @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,هو الجدول apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,تطبيق إذن المستخدم لاتباع DocTypes DocType: Email Account,Total number of emails to sync in initial sync process ,إجمالي عدد رسائل البريد الإلكتروني لمزامنة في عملية المزامنة الأولية DocType: Website Settings,Set Banner from Image,تعيين راية من الصورة -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,البحث العالمي +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,البحث العالمي DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},تم إنشاء حساب جديد لك في {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,تعليمات عبر البريد الإلكتروني @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,فيردانا DocType: Email Flag Queue,Email Flag Queue,البريد الإلكتروني العلم قائمة الانتظار apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,ستايلشيتس فور برينت فورماتس apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,لا يمكن تحديد {0} المفتوح. جرب شيئا آخر. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,تم تقديم المعلومات الخاصة بك -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,المستخدم {0} لا يمكن حذف +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,تم تقديم المعلومات الخاصة بك +apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,المستخدم {0} لا يمكن حذف DocType: System Settings,Currency Precision,دقة العملة apps/frappe/frappe/public/js/frappe/request.js +143,Another transaction is blocking this one. Please try again in a few seconds.,معاملة أخرى يتم حظر هذه واحدة. يرجى المحاولة مرة أخرى في بضع ثوان. DocType: DocType,App,تطبيق @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,عرض DocType: Workflow State,Print,طباعة DocType: User,Restrict IP,تقييد IP apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,لوحة القيادة -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,غير قادر على إرسال رسائل البريد الإلكتروني في هذا الوقت -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,بحث أو كتابة أمر +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,غير قادر على إرسال رسائل البريد الإلكتروني في هذا الوقت +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,بحث أو كتابة أمر DocType: Activity Log,Timeline Name,اسم الزمني DocType: Email Account,e.g. smtp.gmail.com,على سبيل المثال smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,إضافة قاعدة جديدة @@ -376,12 +382,13 @@ DocType: Role Profile,Roles Assigned,الصلاحيات المسندة apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,مساعدة البحث DocType: Top Bar Item,Parent Label,الملصق الاصل apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد. -DocType: GCalendar Account,Allow GCalendar Access,السماح ل GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} حقل إلزامي +DocType: GCalendar Account,Allow GCalendar Access,السماح للوصول لـ GCalendar +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} حقل إلزامي apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,رمز الدخول المطلوب DocType: Event,Repeat Till,تكرار حتى apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,جديد apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,يرجى تعيين عنوان ورل للنص البرمجي على إعدادات غسيت +DocType: Google Maps Settings,Google Maps Settings,إعدادات خرائط Google apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,تحميل ... DocType: DocField,Password,كلمة السر apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,يتم الان تحديث النظام الخاص بك. يرجى تحديث الصفحة بعد لحظات قليلة. @@ -405,9 +412,9 @@ apps/frappe/frappe/templates/includes/search_template.html +27,Search...,بحث. apps/frappe/frappe/utils/nestedset.py +221,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,دمج الممكن الوحيد بين المجموعة إلى المجموعة أو عقدة ورقة إلى ورقة عقدة apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30,Added {0},تم اضافة {0} apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,أية سجلات مطابقة. بحث شيئا جديدا -DocType: Chat Profile,Away,بعيدً +DocType: Chat Profile,Away,بالخارج DocType: Currency,Fraction Units,جزء الوحدات -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} من {1} إلى {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} من {1} إلى {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,حدده ك مُنتَهٍ DocType: Chat Message,Type,النوع DocType: Activity Log,Subject,موضوع @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,المبلغ بناء على الحقل apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,المستخدم إلزامي للمشاركة DocType: DocField,Hidden,مخفي DocType: Web Form,Allow Incomplete Forms,السماح للنماذج الغير مكتمله -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} يجب تحديده أولا +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,فشل توليد قوات الدفاع الشعبي +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} يجب تحديده أولا apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.",.استخدم كلمات قليلة، وتجنب العبارات الشائعة DocType: Workflow State,plane,طائرة apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","إذا كنت تحميل سجلات جديدة، ""تسمية السلسلة"" تصبح إلزامية، إذا كان موجودا." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,الحصول على تنبيهات لهذا اليوم -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DOCTYPE لا يمكن تسميتها من قبل المسؤول +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,الحصول على تنبيهات لهذا اليوم +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DOCTYPE لا يمكن تسميتها من قبل المسؤول DocType: Chat Message,Chat Message,دردشة رسالة apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},البريد الإلكتروني غير متحقق من {0} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},القيمة المتغيرة لل{0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},القيمة المتغيرة لل{0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop",إذا كان المستخدم لديه أي دور التحقق، ثم يصبح المستخدم "مستخدم النظام". "مستخدم النظام" لديه حق الوصول إلى سطح المكتب DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,يرجى التحقق من بريدك الالكتروني للتحقق -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,أضعاف لا يمكن أن يكون في نهاية النموذج +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,يرجى التحقق من بريدك الالكتروني للتحقق +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,أضعاف لا يمكن أن يكون في نهاية النموذج DocType: Communication,Bounced,وثب DocType: Deleted Document,Deleted Name,الاسم المحذوف apps/frappe/frappe/config/setup.py +14,System and Website Users,النظام و الموقع الالكتروني للمستخدمين @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,حالة الوثيقة DocType: Data Migration Run,Pull Update,سحب تحديث DocType: Auto Email Report,No of Rows (Max 500),عدد الصفوف (ماكس 500) DocType: Language,Language Code,كود اللغة +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ملاحظة: يتم إرسال رسائل البريد الإلكتروني الافتراضية لعمليات النسخ الاحتياطي الفاشلة. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...",عملية التحميل يجري معالجتها، قد يستغرق هذا العمل بضع لحظات... apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,إضافة تصفية (فلترة) apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},رسائل SMS أرسلت الى الارقام التالية: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,تقييمك: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} و {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,بدء محادثة. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,تقييمك: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب البريد الإلكتروني لا الإعداد. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} و {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,Start a conversation.,بدء محادثة. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","دائما إضافة ""كلمة مسودة"" عند طباعة المسودات" DocType: Data Migration Run,Current Mapping Start,بدء تعيين الخرائط الحالية apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,تم وضع علامة على البريد الإلكتروني كغير مرغوب فيه DocType: About Us Settings,Website Manager,مدير الموقع -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,تم إلغاء تحميل الملف. حاول مرة اخرى. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,حقل بحث غير صالح +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,تم إلغاء تحميل الملف. حاول مرة اخرى. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,ترجمة apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,لقد حددت مسودة أو مستندات تم إلغاؤها -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},تم تعيين المستند {0} على الحالة {1} بواسطة {2} -apps/frappe/frappe/model/document.py +1211,Document Queued,قائمة الانتظار وثيقة +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},تم تعيين المستند {0} على الحالة {1} بواسطة {2} +apps/frappe/frappe/model/document.py +1212,Document Queued,قائمة الانتظار وثيقة DocType: GSuite Templates,Destination ID,رقم تعريف الوجهة DocType: Desktop Icon,List,قائمة DocType: Activity Log,Link Name,اسم الرابط -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,الحقل {0} في {1} الصف لا يمكن أن تكون مخفية وإلزامية دون القيمة الافتراضية +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,الحقل {0} في {1} الصف لا يمكن أن تكون مخفية وإلزامية دون القيمة الافتراضية DocType: System Settings,mm/dd/yyyy,شهر/يوم/سنة -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,رمز مرور خاطئ: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,رمز مرور خاطئ: DocType: Print Settings,Send document web view link in email,إرسال ثيقة الارتباط عرض على شبكة الإنترنت في البريد الإلكتروني apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ملاحظاتك حول المستند {0} تم حفظها بنجاح. apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,سابق -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,رد: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} صفوف لـ {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,رد: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} صفوف لـ {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",شبه العملات. ل "سنت" على سبيل المثال apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,اسم الاتصال -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,حدد ملف مرفوع +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,حدد ملف مرفوع DocType: Letter Head,Check this to make this the default letter head in all prints,التحقق من ذلك لجعل هذه الرسالة الافتراضية الرأس في جميع الطبعات DocType: Print Format,Server,خادم -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,مجلس كانبان جديدة +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,مجلس كانبان جديدة DocType: Desktop Icon,Link,رابط apps/frappe/frappe/utils/file_manager.py +122,No file attached,أي ملف مرفق DocType: Version,Version,الإصدار +DocType: S3 Backup Settings,Endpoint URL,عنوان نقطة النهاية apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,الرسوم البيانية DocType: User,Fill Screen,ملء الشاشة apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,الملف الشخصي للدردشة للمستخدم {user} موجود. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,يتم تطبيق الأذونات تلقائيًا على التقارير القياسية وعمليات البحث. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,فشل في رفع الملف -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,تحرير عبر التحميل +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,تحرير عبر التحميل apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",نوع الوثيقة ...، على سبيل المثال العملاء apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,الشرط '{0}' غير صالح DocType: Workflow State,barcode,الباركود @@ -486,22 +496,24 @@ DocType: Country,Country Name,اسم الدولة DocType: About Us Team Member,About Us Team Member,أعضاء فريق صفحة من نحن apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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,الأربعاء -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,يجب أن يكون حقل صورة لFIELDNAME صحيح +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,يجب أن يكون حقل صورة لFIELDNAME صحيح DocType: Chat Token,Token,رمز DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (اسم) للكيان الذي هو الملكية التي سيتم تحديدها apps/frappe/frappe/limits.py +84,"To renew, {0}.",تجديد، {0}. DocType: Website Settings,Website Theme Image Link,موضوع الموقع رابط الصورة DocType: Web Form,Sidebar Items,عناصر الشريط الجانبي +DocType: Web Form,Show as Grid,تظهر كشبكة apps/frappe/frappe/installer.py +129,App {0} already installed,التطبيق {0} مثبت مسبقا -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,لا معاينة +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,لا معاينة DocType: Workflow State,exclamation-sign,تعجب علامة- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,مشاهدة ضوابط -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,يجب أن يكون حقل الزمني رابط أو الارتباط الحيوي +DocType: Data Import,New data will be inserted.,سيتم إدراج البيانات الجديدة. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,يجب أن يكون حقل الزمني رابط أو الارتباط الحيوي apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,نطاق الموعد apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,جانت apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},الصفحة {0} من {1} DocType: About Us Settings,Introduce your company to the website visitor.,اعرض شركتك لزائرن الموقع الألكتروني -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json",مفتاح التشفير غير صالح، يرجى التحقق من site_config.json +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json",مفتاح التشفير غير صالح، يرجى التحقق من site_config.json DocType: SMS Settings,Receiver Parameter,معامل المستقبل DocType: Data Migration Mapping Detail,Remote Fieldname,اسم الحقل البعيد DocType: Communication,To,إلى @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,حجم الخط DocType: System Settings,Disable Standard Email Footer,تعطيل قياسي البريد الإلكتروني تذييل DocType: Workflow State,facetime-video,facetime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,تعليق واحد -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,يشاهد +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,يشاهد DocType: Notification,Days Before,أيام قبل DocType: Workflow State,volume-down,حجم إلى أسفل -apps/frappe/frappe/desk/reportview.py +268,No Tags,لا الكلمات +apps/frappe/frappe/desk/reportview.py +270,No Tags,لا الكلمات DocType: DocType,List View Settings,عرض قائمة إعدادات DocType: Email Account,Send Notification to,إرسال إشعار ل DocType: DocField,Collapsible,للطي apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,حفظ -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,ما الذى تحتاج المساعدة به؟ +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,ما الذى تحتاج المساعدة به؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,خيارات للاختيار. كل خيار على سطر جديد. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,الغاء دائم {0} ؟ DocType: Workflow State,music,موسيقى +DocType: Website Theme,Text Styles,أنماط النص apps/frappe/frappe/www/qrcode.html +3,QR Code,رمز الاستجابة السريعة -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,تاريخ آخر تعديل +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,تاريخ آخر تعديل DocType: Chat Profile,Settings,إعدادات DocType: Print Format,Style Settings,نمط الضبط apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Y محور الحقول -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,يجب أن يكون حقل نوع {0} لFIELDNAME صحيح -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,أكثر +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,يجب أن يكون حقل نوع {0} لFIELDNAME صحيح +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,أكثر DocType: Contact,Sales Manager,مدير المبيعات -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,إعادة تسمية +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,إعادة تسمية DocType: Print Format,Format Data,تنسيق البيانات DocType: List Filter,Filter Name,اسم الفلتر apps/frappe/frappe/utils/bot.py +91,Like,مثل @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,اسم غرفة الدردشة DocType: OAuth Client,Grant Type,منحة نوع apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,تحقق من وثائق قابلة للقراءة من قبل العضو DocType: Deleted Document,Hub Sync ID,معرف مزامنة المحور -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,استخدام٪ كما البدل +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,استخدام٪ كما البدل DocType: Auto Repeat,Quarterly,فصلي apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","عنوان مجال البريد الألكتروني غير معرف لهذا الحساب, إنشيء واحد ؟" DocType: User,Reset Password Key,إعادة تعيين كلمة المرور الرئيسية @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,الحد الأدنى من كلمة المرور DocType: DocType,Fields,الحقول DocType: System Settings,Your organization name and address for the email footer.,اسم المؤسسة وعنوانك لتذييل البريد الإلكتروني. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,الجدول الرئيسي +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,الجدول الرئيسي apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 اكتمل النسخ الاحتياطي! apps/frappe/frappe/config/desktop.py +60,Developer,مطور -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,إنشاء +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,إنشاء apps/frappe/frappe/client.py +101,No permission for {doctype},ليس هناك إذن ل {دوكتيب} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{0} in row {1} cannot have both URL and child items,{0} في الصف {1} لا يمكن أن يكون لها عنوان URL وبنود فرعية في نفس الوقت +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,الأجداد من apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,الجذر {0} لا يمكن حذف apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,لا توجد تعليقات حتى الآن apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings",يرجى إعداد سمز قبل تعيينه كطريقة المصادقة، عبر إعدادات سمز @@ -576,6 +590,7 @@ DocType: Contact,Open,فتح DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,يحدد الإجراءات على الحالات والخطوة التالية الصلاحيات المسموح بها. DocType: Data Migration Mapping,Remote Objectname,اسم العنصر البعيد apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.",باعتبارها ممارسة أفضل ، لا تعين نفس مجموعة قوانين الدخول لأدوار مختلفة. بدلا من ذلك ، عين أدوار متعددة لنفس العضو +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,يرجى تأكيد الإجراء الخاص بك إلى {0} هذا المستند. DocType: Success Action,Next Actions HTML,العمليات القادمة HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,فقط {0} عبر البريد الالكتروني يسمح تقارير لكل مستخدم DocType: Address,Address Title,إسم العنوان @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,القيمة الافتراضية DocType: Auto Repeat,Daily,يوميا apps/frappe/frappe/config/setup.py +19,User Roles,أدوار المستخدم DocType: Property Setter,Property Setter overrides a standard DocType or Field property,الملكية واضعة يتجاوز على DOCTYPE القياسية أو الممتلكات الميدان -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,لا يمكن تحديث : رابط غير الصحيحة / منتهية الصلاحية . +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,لا يمكن تحديث : رابط غير الصحيحة / منتهية الصلاحية . apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,من الأفضل إضافة بضعة أحرف أو كلمة أخرى apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},كلمة المرور لمرة واحدة (OTP) رمز التسجيل من {} DocType: DocField,Set Only Once,تعيين مرة واحدة فقط DocType: Email Queue Recipient,Email Queue Recipient,البريد الإلكتروني المستلم قائمة الانتظار DocType: Address,Nagaland,ناجالاند DocType: Slack Webhook URL,Webhook URL,Webhook URL -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,اسم المستخدم {0} موجود بالفعل -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,{0} : لا يمكن تحديد استيراد، لأن {1} غير قابل للإستيراد +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,اسم المستخدم {0} موجود بالفعل +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,{0} : لا يمكن تحديد استيراد، لأن {1} غير قابل للإستيراد apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},يوجد خطأ في قالب العناوين {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} هو عنوان بريد إلكتروني غير صالح في "المستلمين" DocType: User,Allow Desktop Icon,السماح برمز سطح المكتب DocType: Footer Item,"target = ""_blank""",الهدف = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,مضيف -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,عمود {0} موجودة بالفعل. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,عمود {0} موجودة بالفعل. DocType: ToDo,High,مستوى عالي DocType: S3 Backup Settings,Secret Access Key,مفتاح الوصول السري apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,ذكر -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,تمت إعادة تعيين سر مكتب المدعي العام. سوف تكون هناك حاجة لإعادة التسجيل على تسجيل الدخول المقبل. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,تمت إعادة تعيين سر مكتب المدعي العام. سوف تكون هناك حاجة لإعادة التسجيل على تسجيل الدخول المقبل. DocType: Communication,From Full Name,من الاسم الكامل -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},لا يتوفر لديك الوصول الى التقرير: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},لا يتوفر لديك الوصول الى التقرير: {0} DocType: User,Send Welcome Email,إرسال رسالة ترحيبية -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,إزالة تصفية (فلترة) +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,إزالة تصفية (فلترة) +DocType: Web Form Field,Show in filter,اعرض في الفلتر DocType: Address,Daman and Diu,دامان و ديو -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,مشروع +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,مشروع DocType: Address,Personal,الشخصية apps/frappe/frappe/config/setup.py +125,Bulk Rename,إعادة تسمية بالجمله DocType: Email Queue,Show as cc,كما تظهر سم مكعب @@ -625,12 +641,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,بروف apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,ليس في وضع المطور apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,ملف النسخ الاحتياطي جاهز DocType: DocField,In Global Search,في البحث العالمية +DocType: System Settings,Brute Force Security,القوة الغاشمة للأمن DocType: Workflow State,indent-left,المسافة البادئة اليسرى apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,أنه أمر محفوف بالمخاطر لحذف هذا الملف: {0}. يرجى الاتصال بمدير النظام الخاص بك. DocType: Currency,Currency Name,اسم العملة apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,لا رسائل البريد الإلكتروني -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,انتهت صلاحية الرابط -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,حدد تنسيق الملف +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} سنة (s) مضت +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,انتهت صلاحية الرابط +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,حدد تنسيق الملف DocType: Report,Javascript,جافا سكريبت DocType: File,Content Hash,تجزئة المحتوى DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,يخزن JSON من الإصدارات المعروفة الأخيرة من مختلف التطبيقات المثبتة. يتم استخدامها لعرض ملاحظات الإصدار. @@ -642,16 +660,15 @@ DocType: Auto Repeat,Stopped,توقف apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,لم تقم بإزالة apps/frappe/frappe/desk/like.py +89,Liked,أحب apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,أرسل الآن -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form",لا يمكن أن يكون تنسيق دوكتيب القياسي تنسيق طباعة افتراضي، استخدم كوستميز فورم +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form",لا يمكن أن يكون تنسيق دوكتيب القياسي تنسيق طباعة افتراضي، استخدم كوستميز فورم DocType: Report,Query,سؤال DocType: DocType,Sort Order,ترتيب -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},'في عرض القائمة' لا يسمح لنوع {0} في {1} الصف +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},'في عرض القائمة' لا يسمح لنوع {0} في {1} الصف DocType: Custom Field,Select the label after which you want to insert new field.,حدد التسمية بعد الذي تريد إدراج حقل جديد. ,Document Share Report,وثيقة حصة تقرير DocType: Social Login Key,Base URL,الرابط الأساسي DocType: User,Last Login,آخر تسجيل دخول apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},لا يمكنك تعيين 'ترانزلاتابل' للحقل {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},مطلوب Fieldname في الصف {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,عمود DocType: Chat Profile,Chat Profile,دردشة الملف الشخصي DocType: Custom Field,Adds a custom field to a DocType,DocType اضافة حقل خاص ل @@ -660,6 +677,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,اختر أتلست سجل 1 للطباعة apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,قم أولاً بتعيين الاسم وحفظ السجل. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},مشترك مع {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,إلغاء الاشتراك DocType: View log,Reference Name,اسم المرجع @@ -681,17 +699,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ال apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} إلى {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,تسجيل الخطأ خلال الطلبات. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} تم بنجاح الإضافة إلى مجموعة البريد الإلكتروني -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,لا تقم بتحرير الرؤوس التي يتم ضبطها مسبقا في القالب +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,لا تقم بتحرير الرؤوس التي يتم ضبطها مسبقا في القالب apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},تسجيل الدخول رمز التحقق من {} DocType: Address,Uttar Pradesh,أوتار براديش +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,ملحوظة: DocType: Address,Pondicherry,بونديشيري DocType: Data Import,Import Status,حالة الاستيراد -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,جعل الملف (الملفات) الخاص أو العام؟ +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,جعل الملف (الملفات) الخاص أو العام؟ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},من المقرر أن يرسل إلى {0} DocType: Kanban Board Column,Indicator,مؤشر DocType: DocShare,Everyone,كل شخص DocType: Workflow State,backward,الى الوراء -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}",{0} قاعدة واحدة فقط سمح لها نفس الدور، المستوى و{1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}",{0} قاعدة واحدة فقط سمح لها نفس الدور، المستوى و{1} DocType: Email Queue,Add Unsubscribe Link,إضافة رابط إلغاء الاشتراك apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,لا تعليقات حتى الآن. بدء مناقشة جديدة. DocType: Workflow State,share,مشاركة @@ -703,6 +722,7 @@ DocType: User,Last IP,أخر IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,تجديد / ترقية apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,مستند جديد {0} تمت مشاركته معك {1}. DocType: Data Migration Connector,Data Migration Connector,موصل ترحيل البيانات +DocType: Email Account,Track Email Status,تتبع حالة البريد الإلكتروني DocType: Note,Notify Users On Every Login,إعلام المستخدمين على كل تسجيل الدخول DocType: PayPal Settings,API Password,API كلمة المرور apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,أدخل وحدة الثعبان أو حدد نوع الموصل @@ -711,6 +731,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,آخر ت apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,عرض المشتركين DocType: Webhook,after_insert,أدخل_بعد apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,لا يمكن حذف الملف لأنه ينتمي إلى {0} {1} الذي ليس لديك أذونات +DocType: Website Theme,Custom JS,العرف شبيبة apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,السيدة DocType: Website Theme,Background Color,لون الخلفية apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى. @@ -719,21 +740,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,رسم الخرائط DocType: Web Page,0 is highest,0 أعلى قيمة apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,هل أنت متأكد أنك تريد إعادة ربط هذه الاتصالات إلى {0}؟ -apps/frappe/frappe/www/login.html +86,Send Password,إرسال كلمة المرور +apps/frappe/frappe/www/login.html +87,Send Password,إرسال كلمة المرور +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,يرجى إعداد حساب البريد الإلكتروني الافتراضي من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني +DocType: Print Settings,Server IP,خادم IP DocType: Email Queue,Attachments,المرفقات apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,لا تتوفر لديك الصلاحية للوصول الى هذا المستند DocType: Language,Language Name,اسم اللغة DocType: Email Group Member,Email Group Member,أرسل عضو المجموعة +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,تم قفل حسابك وسيتم استئنافه بعد {0} ثانية apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,User Permissions are used to limit users to specific records.,يتم استخدام أذونات المستخدم لتقييد المستخدمين إلى سجلات محددة. DocType: Notification,Value Changed,تم تغير القيمة -apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},تكرار اسم {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},تكرار اسم {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,إعادة المحاولة DocType: Web Form Field,Web Form Field,حقل نموذج الويب apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,إخفاء الحقل في منشئ التقارير apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,لديك رسالة جديدة من: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,تحرير HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,الرجاء إدخال عنوان ورل لإعادة التوجيه -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,الإعداد> أذونات المستخدم apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this",التي سيتم إنشاؤها. إذا تأخرت، سيكون لديك لتغيير يدويا "كرر في يوم من الشهر" حقل من هذا apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,استعادة ضوابط الأصل @@ -758,23 +781,25 @@ DocType: Address,Rajasthan,راجستان DocType: Email Template,Email Reply Help,البريد الالكتروني رد مساعدة apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,تدار تقارير منشئ التقرير مباشرة بواسطة منشئ التقرير. لا شيء للقيام به. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,يرجى التحقق من عنوان البريد الإلكتروني الخاص بك -apps/frappe/frappe/model/document.py +1056,none of,أيا من +apps/frappe/frappe/model/document.py +1057,none of,أيا من apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,أرسل لي نسخة DocType: Dropbox Settings,App Secret Key,كلمة المرورللتطبيق DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,موقع الكتروني apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,سيتم عرض العناصر المحددة على سطح المكتب -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} لا يمكن تحديده لأنواع أحادية +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} لا يمكن تحديده لأنواع أحادية DocType: Data Import,Data Import,استيراد البيانات apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,تكوين المخطط apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} يستعرض هذه الوثيقة حالياً DocType: ToDo,Assigned By Full Name,تعيين بواسطة الاسم كامل apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} تم تحديث -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,لا يمكن تعيين التقرير لأنواع واحدة +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,لا يمكن تعيين التقرير لأنواع واحدة +DocType: System Settings,Allow Consecutive Login Attempts ,السماح محاولات تسجيل الدخول المتتالية apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,حدث خطأ أثناء عملية الدفع. الرجاء التواصل معنا. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,قبل {0} أيام DocType: Email Account,Awaiting Password,في انتظار كلمة المرور DocType: Address,Address Line 1,العنوان سطر 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,ليس من أحفاد DocType: Custom DocPerm,Role,صلاحية apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,إعدادات... apps/frappe/frappe/utils/data.py +507,Cent,سنت @@ -794,11 +819,11 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,توقف DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,الرابط إلى الصفحة التي تريد فتحها. اتركه فارغا إذا كنت تريد أن تجعل من أحد الوالدين المجموعة. DocType: DocType,Is Single,هو واحدة -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,اشترك معطل -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} تركت محادثة في {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,اشترك معطل +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} تركت محادثة في {1} {2} DocType: Blogger,User ID of a Blogger,هوية المستخدم من مدون -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,ينبغي أن تظل هناك إدارة نظام واحد على الأقل -DocType: GCalendar Account,Authorization Code,قانون التفويض +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,ينبغي أن تظل هناك إدارة نظام واحد على الأقل +DocType: GCalendar Account,Authorization Code,رمز الترخيص DocType: PayPal Settings,Mention transaction completion page URL,يذكر المعاملة URL صفحة الانتهاء DocType: Help Article,Expert,خبير DocType: Workflow State,circle-arrow-right,دائرة السهم الأيمن @@ -818,8 +843,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","لإضافة موضوع ديناميكي، استخدام علامات جينجا مثل
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,تطبيق صلاحيات المستخدم +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},حقل البحث غير صالح {0} DocType: User,Modules HTML,وحدات HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",تتبع إذا تم فتح البريد الإلكتروني الخاص بك من قبل المستلم.
ملاحظة: إذا كنت ترسل إلى عدة مستلمين ، حتى إذا قرأ أحد المستلمين البريد الإلكتروني ، فسيتم اعتباره "مفتوح" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,قيم مفقودة مطلوبة DocType: DocType,Other Settings,اعدادات اخرى DocType: Data Migration Connector,Frappe,فرابي @@ -829,15 +857,13 @@ DocType: Customize Form,Change Label (via Custom Translation),تغيير تسم apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},لا يوجد تصريح إلى {0} {1} {2} DocType: Address,Permanent,دائم apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,ملاحظة: قد قواعد أخرى إذن تنطبق أيضا -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/templates/emails/print_link.html +2,View this in your browser,عرض هذا في متصفحك DocType: DocType,Search Fields,البحث الحقول DocType: System Settings,OTP Issuer Name,اسم جهة مكتب المدعي العام DocType: OAuth Bearer Token,OAuth Bearer Token,حامل رمز المصادقة apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,لا المستند المحدد apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,أنت متصل بالإنترنت. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,أنت متصل بالإنترنت. DocType: Social Login Key,Enable Social Login,تمكين تسجيل الدخول الاجتماعي DocType: Event,Event,حدث apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:",على {0}، {1} كتب: @@ -852,7 +878,7 @@ DocType: Print Settings,In points. Default is 9.,في نقطة. الافتراض DocType: OAuth Client,Redirect URIs,إعادة توجيه محددات apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},تقديم {0} DocType: Workflow State,heart,قلب -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,كلمة المرور القديمة مطلوبة. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,كلمة المرور القديمة مطلوبة. DocType: Role,Desk Access,مكتب وصول DocType: Workflow State,minus,ناقص DocType: S3 Backup Settings,Bucket,دلو @@ -860,8 +886,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,تعذر تحميل الكاميرا. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,رسالة الترحيب تم أرسالها apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,دعونا نقوم بإعداد النظام للمرة الاولى. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,مسجل بالفعل +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,مسجل بالفعل DocType: System Settings,Float Precision,دقة الرقم العشري +DocType: Notification,Sender Email,البريد الإلكتروني المرسل apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,مدير النظام فقط يمكنه التحرير apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,اسم الملف DocType: DocType,Editable Grid,قابلة للتعديل Grid @@ -872,17 +899,19 @@ DocType: Communication,Clicked,النقر apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},لا توجد صلاحية ل '{0} ' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,من المقرر أن ترسل DocType: DocType,Track Seen,المسار رأيت -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,لا يمكن إلا أن هذه الطريقة يمكن استخدامها لإنشاء تعليق +DocType: Dropbox Settings,File Backup,ملف النسخ الاحتياطي +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,لا يمكن إلا أن هذه الطريقة يمكن استخدامها لإنشاء تعليق DocType: Kanban Board Column,orange,البرتقالي apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,لا {0} وجدت apps/frappe/frappe/config/setup.py +259,Add custom forms.,إضافة نماذج مخصصة. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} في {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,هذه الوثيقة مقدمة / مسجلة +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,هذه الوثيقة مقدمة / مسجلة apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ويوفر النظام العديد من أدوار محددة مسبقا. يمكنك إضافة أدوار جديدة لتعيين أذونات الدقيقة. DocType: Communication,CC,CC DocType: Country,Geo,الجغرافية +DocType: Data Migration Run,Trigger Name,اسم الزناد DocType: Blog Category,Blog Category,تصنيف المدونة -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,لا يمكن تعيين بسبب فشل الشرط التالي: +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,لا يمكن تعيين بسبب فشل الشرط التالي: DocType: Role Permission for Page and Report,Roles HTML,الأدوار HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,اختر صورة العلامة التجارية لأول مرة. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,نشط @@ -906,16 +935,17 @@ DocType: Address,Other Territory,إقليم آخر ,Messages,رسائل apps/frappe/frappe/config/website.py +83,Portal,بوابة DocType: Email Account,Use Different Email Login ID,استخدام معرف تسجيل دخول مختلف للبريد الإلكتروني -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,يجب تحديد استعلام لتشغيل +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,يجب تحديد استعلام لتشغيل apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.",يبدو أن هناك مشكلة مع التكوين برينتري الملقم. لا تقلق، في حالة الفشل، سيتم استرداد المبلغ إلى حسابك. apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,إدارة تطبيقات الجهات الخارجية apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings",اللغة و التاريخ والوقت إعدادات +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,الإعداد> أذونات المستخدم DocType: User Email,User Email,بريد المستخدم DocType: Event,Saturday,السبت DocType: User,Represents a User in the system.,يمثل العضو في النظام. DocType: Communication,Label,ملصق -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.",مهمة {0}، الذي قمت بتعيينه إلى {1}، تم إغلاق. -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,الرجاء إغلاق هذه النافذة +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.",مهمة {0}، الذي قمت بتعيينه إلى {1}، تم إغلاق. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,الرجاء إغلاق هذه النافذة DocType: Print Format,Print Format Type,طباعة نوع تنسيق DocType: Newsletter,A Lead with this Email Address should exist,يجب أن يوجد الرصاص مع هذا عنوان البريد الإلكتروني apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,التطبيقات المفتوحة المصدر لشبكة الإنترنت @@ -931,8 +961,8 @@ DocType: Data Export,Excel,تفوق apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,تم تحديث كلمة المرور الخاصة بك. هذه هي كلمة المرور الجديدة DocType: Email Account,Auto Reply Message,رد تلقائي على الرسائل DocType: Feedback Trigger,Condition,الحالة -apps/frappe/frappe/utils/data.py +619,{0} hours ago,{0} قبل ساعات -apps/frappe/frappe/utils/data.py +629,1 month ago,قبل شهر +apps/frappe/frappe/utils/data.py +621,{0} hours ago,{0} قبل ساعات +apps/frappe/frappe/utils/data.py +631,1 month ago,قبل شهر DocType: Contact,User ID,معرف المستخدم DocType: Communication,Sent,أرسلت DocType: Address,Kerala,ولاية كيرالا @@ -951,7 +981,7 @@ DocType: GSuite Templates,Related DocType,دوكتيب ذات الصلة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,تعديل لإضافة محتوى apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,اختر اللغات apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,معلومات البطاقة -apps/frappe/frappe/__init__.py +538,No permission for {0},لا إذن ل{0} +apps/frappe/frappe/__init__.py +564,No permission for {0},لا إذن ل{0} DocType: DocType,Advanced,متقدم apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,يبدو مفتاح API أو API سر من الخطأ !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},إشارة: {0} {1} @@ -961,13 +991,13 @@ DocType: Address,Address Type,نوع العنوان apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,اسم المستخدم غير صحيح أو كلمة المرور الدعم . يرجى تصحيح و حاول مرة أخرى. DocType: Email Account,Yahoo Mail,بريد ياهو apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,اشتراكك سوف ينتهي غدا. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,خطأ في الإخطار +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,خطأ في الإخطار apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,سيدتي apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},تحديث {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,سيد DocType: DocType,User Cannot Create,لا يمكن للمستخدم إنشاء apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,المجلد {0} غير موجود -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,تمت الموافقة الوصول دروببوإكس! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,تمت الموافقة الوصول دروببوإكس! DocType: Customize Form,Enter Form Type,أدخل نوع النموذج apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,المعلمة مفقودة كانبان اسم المجلس apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,لا توجد سجلات معلمة. @@ -976,14 +1006,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,ارسل إشعارات تحديث كلمة السر apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",السماح DOCTYPE ، DOCTYPE . كن حذرا! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email",تنسيقات مخصصة للطباعة البريد الإلكتروني -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,تحديث إلى الإصدار الجديد +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,تحديث إلى الإصدار الجديد DocType: Custom Field,Depends On,يعتمد على DocType: Kanban Board Column,Green,أخضر DocType: Custom DocPerm,Additional Permissions,ضوابط إضافية DocType: Email Account,Always use Account's Email Address as Sender,استخدم دائماً حساب البريد الألكتروني كمرسل apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,سجل الدخول للتعليق -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,البدء في إدخال البيانات تحت هذا الخط -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},القيم المتغيرة ل{0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,البدء في إدخال البيانات تحت هذا الخط +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},القيم المتغيرة ل{0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}",يجب أن يكون معرف البريد الإلكتروني فريدًا ، وأن حساب البريد الإلكتروني موجود بالفعل \ لـ {0} DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,يخصص ... DocType: Print Format,Align Labels to the Right,محاذاة التسميات إلى اليمين @@ -1002,39 +1034,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,تحر DocType: Workflow Action Master,Workflow Action Master,سير العمل الاجراء الاساسي DocType: Custom Field,Field Type,نوع الحقل apps/frappe/frappe/utils/data.py +537,only.,فقط. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,لا يمكن إعادة تعيين سر مكتب المدعي العام إلا بواسطة المسؤول. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,لا يمكن إعادة تعيين سر مكتب المدعي العام إلا بواسطة المسؤول. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,تجنب السنوات التي ترتبط معك. apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,تقييد المستخدم لمستند معين DocType: GSuite Templates,GSuite Templates,قوالب غسويت +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,تنازلي apps/frappe/frappe/utils/goal.py +110,Goal,الهدف apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,خادم البريد غير صالحة . يرجى تصحيح و حاول مرة أخرى. DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.",روابط المواقع، أدخل DOCTYPE عن مجموعة. لتحديد، قائمة إدخال من الخيارات، كل على سطر جديد. DocType: Workflow State,film,فيلم -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},لا إذن لقراءة {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},لا إذن لقراءة {0} apps/frappe/frappe/config/desktop.py +8,Tools,أدوات apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,تجنب السنوات الأخيرة. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,العقد الجذرية متعددة غير مسموح به. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",إذا تم تمكينه، فسيتم إشعار المستخدمين في كل مرة يسجلون فيها الدخول. إذا لم يتم تمكينه، فسيتم إشعار المستخدمين مرة واحدة فقط. -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,حالة {0} غير صالحة +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,حالة {0} غير صالحة DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.",إذا تم، سيكون للمستخدمين لا ترى الحوار تأكيد الوصول. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,مطلوب حقل معرف لتعديل القيم باستخدام التقرير. يرجى تحديد الحقل ID باستخدام لاقط العمود apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,تعليقات -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,أكد -apps/frappe/frappe/www/login.html +58,Forgot Password?,هل نسيت كلمة المرور؟ +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,أكد +apps/frappe/frappe/www/login.html +59,Forgot Password?,هل نسيت كلمة المرور؟ DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py +19,ID,هوية شخصية apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,خطأ في الخادم -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,مطلوب معرف تسجيل الدخول +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,مطلوب معرف تسجيل الدخول DocType: Website Slideshow,Website Slideshow,موقع عرض الشرائح apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,لا توجد بيانات DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)",ربط هذا هو الصفحة الرئيسية ل موقع الويب. روابط القياسية ( مؤشر ، تسجيل الدخول ، والمنتجات، بلوق ، عن، الاتصال ) -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},فشل المصادقة في حين تلقي رسائل البريد الإلكتروني من البريد الإلكتروني حساب {0}. رسالة من الخادم: {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},فشل المصادقة في حين تلقي رسائل البريد الإلكتروني من البريد الإلكتروني حساب {0}. رسالة من الخادم: {1} DocType: Custom Field,Custom Field,حقل مخصص -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,يرجى تحديد أي تاريخ الحقل يجب أن يتم التحقق +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,يرجى تحديد أي تاريخ الحقل يجب أن يتم التحقق DocType: Custom DocPerm,Set User Permissions,تعيين أذونات المستخدم apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},غير مسموح به لـ {0} = {1} DocType: Email Account,Email Account Name,البريد الإلكتروني اسم الحساب -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,حدث خطأ ما أثناء إنشاء الرمز المميز للدخول إلى صندوق الإسقاط. يرجى التحقق من سجل الأخطاء للحصول على مزيد من التفاصيل. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,حدث خطأ ما أثناء إنشاء الرمز المميز للدخول إلى صندوق الإسقاط. يرجى التحقق من سجل الأخطاء للحصول على مزيد من التفاصيل. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",النشرات الإخبارية إلى جهات الاتصال، ويؤدي. DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","على سبيل المثال ""دعم ""،"" المبيعات ""،"" جيري يانغ """ @@ -1043,19 +1077,20 @@ DocType: DocField,Description,وصف DocType: Print Settings,Repeat Header and Footer in PDF,كرر رأس وتذييل الصفحة في PDF DocType: Address Template,Is Default,افتراضي DocType: Data Migration Connector,Connector Type,نوع الموصل -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,اسم العمود لا يمكن أن يكون فارغا -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,اسم العمود لا يمكن أن يكون فارغا +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0} DocType: Workflow State,fast-forward,بسرعة الى الأمام DocType: Communication,Communication,اتصالات apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.",تحقق الأعمدة لتحديد، اسحب لضبط النظام. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,هذا أجراء دائم لا يمكن التراجع. المتابعة؟ apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,تسجيل الدخول وعرض في المتصفح DocType: Event,Every Day,كل يوم DocType: LDAP Settings,Password for Base DN,كلمة السر لقاعدة DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,حقل الجدول -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,أعمدة بناء على +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,أعمدة بناء على apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,أدخل المفاتيح لتمكين التكامل مع غوغل غسويت DocType: Workflow State,move,حرك -apps/frappe/frappe/model/document.py +1254,Action Failed,فشل العمل +apps/frappe/frappe/model/document.py +1255,Action Failed,فشل العمل DocType: List Filter,For User,للمستخدم DocType: View log,View log,عرض السجل apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,دليل الحسابات @@ -1063,11 +1098,11 @@ DocType: Address,Assam,قيم apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,يتبقى لديك {0} يوما في اشتراكك apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,حساب البريد الإلكتروني الصادر غير صحيح DocType: Transaction Log,Chaining Hash,تسلسل هاش -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Temperorily المعاقين +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Temperorily المعاقين apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,يرجى وضع عنوان البريد الإلكتروني DocType: System Settings,Date and Number Format,صيغة التاريخ و الرقم -apps/frappe/frappe/model/document.py +1055,one of,واحدة من -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,فحص لحظة واحدة +apps/frappe/frappe/model/document.py +1056,one of,واحدة من +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,فحص لحظة واحدة apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,إظهار البطاقات DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",إذا تم تحديد تطبيق تصريح المستخدم الصارم ويتم تعريف إذن المستخدم لنوع دوكتيبي للمستخدم، فإن جميع المستندات التي تكون فيها قيمة الرابط فارغة، لن يتم عرضها على هذا المستخدم DocType: Address,Billing,الفواتير @@ -1078,7 +1113,7 @@ DocType: User,Middle Name (Optional),الاسم الأوسط (اختياري) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,لا يسمح apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,الحقول التالية والقيم المفقودة: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,أول معاملة -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,لا يوجد نتائج DocType: System Settings,Security,أمن apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,من المقرر أن يرسل إلى {0} المتلقين @@ -1099,6 +1134,7 @@ DocType: Kanban Board Column,lightblue,lightblue apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,تم إدخال نفس الحقل أكثر من مرة apps/frappe/frappe/templates/includes/list/filters.html +19,clear,واضح apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,يجب على كل أحداث اليوم ينتهي في نفس اليوم. +DocType: Prepared Report,Filter Values,قيم التصفية DocType: Communication,User Tags,بطاقات المستخدم DocType: Data Migration Run,Fail,فشل DocType: Workflow State,download-alt,تحميل بديل @@ -1106,13 +1142,13 @@ DocType: Data Migration Run,Pull Failed,أخفق السحب DocType: Communication,Feedback Request,طلب التعليق apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,استيراد البيانات من ملفات CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,الحقول التالية مفقودة: -apps/frappe/frappe/www/login.html +28,Sign in,تسجيل الدخول +apps/frappe/frappe/www/login.html +29,Sign in,تسجيل الدخول apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},الغاء {0} DocType: Web Page,Main Section,القسم العام DocType: Page,Icon,رمز -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password",تلميح: تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password",تلميح: تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور DocType: DocField,Allow in Quick Entry,السماح لأدخال سريع -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,اليوم / الشهر / السنة apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,غسويت اختبار البرنامج النصي DocType: System Settings,Backups,النسخ الاحتياطية @@ -1129,23 +1165,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,ليس إج DocType: Footer Item,Target,الهدف DocType: System Settings,Number of Backups,عدد النسخ الاحتياطية DocType: Website Settings,Copyright,حق النشر -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,اذهب +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,اذهب DocType: OAuth Authorization Code,Invalid,غير صالحة DocType: ToDo,Due Date,بسبب تاريخ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,يوم الدفعة الربعية DocType: Website Settings,Hide Footer Signup,إخفاء التذييل -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,إلغاء هذه الوثيقة +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,إلغاء هذه الوثيقة apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,كتابة ملف بيثون في نفس المجلد حيث تم حفظ هذا العمود والعودة والنتيجة. +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,إضافة إلى الجدول DocType: DocType,Sort Field,نوع الحقل DocType: Razorpay Settings,Razorpay Settings,إعدادات Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,تحرير تصفية (فلترة) -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,الحقل {0} من نوع {1} لا يمكن أن يكون إلزامي +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,تحرير تصفية (فلترة) +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,الحقل {0} من نوع {1} لا يمكن أن يكون إلزامي apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,أضف المزيد DocType: System Settings,Session Expiry Mobile,جلسة انتهاء موبايل apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,مستخدم غير صحيح أو كلمة مرور apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,نتائج البحث عن apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,الرجاء إدخال عنوان ورل لرمز الدخول المميز -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,اختار ل تحميل : +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,اختار ل تحميل : DocType: Notification,Slack,تثاقل DocType: Custom DocPerm,If user is the owner,إذا كان المستخدم هو المالك ,Activity,نشاط @@ -1154,7 +1191,7 @@ DocType: User Permission,Allow,السماح apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,دعونا تجنب الكلمات المكررة وشخصيات DocType: Communication,Delayed,مؤجل apps/frappe/frappe/config/setup.py +140,List of backups available for download,قائمة احتياطية متوفرة للتحميل -apps/frappe/frappe/www/login.html +71,Sign up,سجل +apps/frappe/frappe/www/login.html +72,Sign up,سجل apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,الصف {0}: غير مسموح بتعطيل إلزامي للحقول القياسية DocType: Test Runner,Output,الناتج DocType: Notification,Set Property After Alert,تعيين الملكية بعد تنبيه @@ -1165,7 +1202,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,نوع الملف DocType: Workflow State,leaf,ورق DocType: Portal Menu Item,Portal Menu Item,بوابة عنصر القائمة -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,مسح إعدادات المستخدم DocType: Contact Us Settings,Email ID,البريد الإلكتروني DocType: Activity Log,Keep track of all update feeds,تتبع جميع يغذي التحديث DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,قائمة الموارد التي سيكون لها التطبيق العميل الوصول إلى بعد قيام المستخدم يسمح بذلك.
على سبيل المثال مشروع @@ -1175,7 +1211,7 @@ DocType: Error Snapshot,Timestamp,الطابع الزمني DocType: Patch Log,Patch Log,سجل التصحيح DocType: Data Migration Mapping,Local Primary Key,مفتاح أساسي محلي apps/frappe/frappe/utils/bot.py +164,Hello {0},مرحبا {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},أهلا وسهلا بك إلى {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},أهلا وسهلا بك إلى {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,إضافة apps/frappe/frappe/www/me.html +40,Profile,الملف الشخصي DocType: Communication,Sent or Received,المرسلة أو المتلقاة @@ -1199,7 +1235,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,الإعداد ل DocType: Workflow State,minus-sign,علامة ناقص apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,لم يتم العثور على -apps/frappe/frappe/www/printview.py +200,No {0} permission,لا {0} إذن +apps/frappe/frappe/www/printview.py +199,No {0} permission,لا {0} إذن apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,تصدير ضوابط مخصص DocType: Data Export,Fields Multicheck,الحقول متعددة DocType: Activity Log,Login,دخول @@ -1207,7 +1243,7 @@ DocType: Web Form,Payments,المدفوعات apps/frappe/frappe/www/qrcode.html +9,Hi {0},أهلا{0} DocType: System Settings,Enable Scheduled Jobs,تمكين المهام المجدولة apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,الملاحظات : -apps/frappe/frappe/www/message.html +65,Status: {0},الحالة: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},الحالة: {0} DocType: DocShare,Document Name,اسم المستند apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,علامة كدعاية DocType: ToDo,Medium,متوسط @@ -1225,7 +1261,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},اسم {0} ل apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,من تاريخ apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,نجاح apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},طلب التعليق {0} يتم إرسالها إلى {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,انتهت الجلسة +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,انتهت الجلسة DocType: Kanban Board Column,Kanban Board Column,عمود لوح كانبان apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,صفوف متتالية من مفاتيح سهلة للتخمين DocType: Communication,Phone No.,رقم الهاتف @@ -1248,17 +1284,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},تجاهل: {0} إلى {1} DocType: Address,Gujarat,غوجارات apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,تسجيل من خطأ على الأحداث الآلي ( جدولة ) . -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),ليس صالحا القيمة المفصولة بفواصل ( CSV ملف) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),ليس صالحا القيمة المفصولة بفواصل ( CSV ملف) DocType: Address,Postal,بريدي 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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,المساعدة في البحث -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,سجل لكن المعوقين +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,سجل لكن المعوقين DocType: DocType,Hide Copy,إخفاء النسخة apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,مسح كافة الأدوار -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} يجب أن تكون فريدة من نوعها +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} يجب أن تكون فريدة من نوعها apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,صف apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template",CC ، BCC والبريد الإلكتروني قالب DocType: Data Migration Mapping Detail,Local Fieldname,فيلدنام المحلي @@ -1266,7 +1302,7 @@ DocType: User Permission,Linked Doctypes,Doctypes المرتبطة DocType: DocType,Track Changes,تعقب التغيرات DocType: Workflow State,Check,تحقق DocType: Chat Profile,Offline,غير متصل بالإنترنت -DocType: Razorpay Settings,API Key,مفتاح API +DocType: User,API Key,مفتاح API DocType: Email Account,Send unsubscribe message in email,إرسال رسالة إلغاء الاشتراك في البريد الإلكتروني apps/frappe/frappe/public/js/frappe/form/toolbar.js +82,Edit Title,تحرير العنوان apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,تثبيت تطبيقات @@ -1274,6 +1310,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,وثائق الملقاة على عاتقكم ولك. DocType: User,Email Signature,توقيع البريد الالكترونى DocType: Website Settings,Google Analytics ID,جوجل تحليلات ID +DocType: Web Form,"For help see Client Script API and Examples","للحصول على مساعدة ، راجع Client Script API and Examples" DocType: Website Theme,Link to your Bootstrap theme,رابط لموضوع التمهيد الخاص بك DocType: Custom DocPerm,Delete,حذف apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},{0} جديد @@ -1283,10 +1320,10 @@ DocType: Print Settings,PDF Page Size,PDF حجم الصفحة DocType: Data Import,Attach file for Import,إرفاق ملف للاستيراد DocType: Communication,Recipient Unsubscribed,المتلقي غير المشتركين DocType: Feedback Request,Is Sent,أرسل -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,حول +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,حول apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.",لتحديث، يمكنك تحديث الأعمدة انتقائية فقط. DocType: Chat Token,Country,الدولة -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,عناوين +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,عناوين DocType: Communication,Shared,مشتركة apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,إرفاق طباعة المستند DocType: Bulk Update,Field,حقل @@ -1297,12 +1334,12 @@ DocType: Chat Message,URLs,عناوين DocType: Data Migration Run,Total Pages,إجمالي الصفحات DocType: DocField,Attach Image,إرفاق صورة DocType: Workflow State,list-alt,قائمة بديل -apps/frappe/frappe/www/update-password.html +87,Password Updated,تم تحديث كلمة المرور +apps/frappe/frappe/www/update-password.html +79,Password Updated,تم تحديث كلمة المرور apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,خطوات التحقق من تسجيل الدخول apps/frappe/frappe/utils/password.py +50,Password not found,لم يتم العثور على كلمة السر DocType: Data Migration Mapping,Page Length,طول الصفحة DocType: Email Queue,Expose Recipients,كشف المستلمين -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,إلحاق إلزامي لرسائل واردة +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,إلحاق إلزامي لرسائل واردة DocType: Contact,Salutation,تحية DocType: Communication,Rejected,مرفوض apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,إزالة العلامة @@ -1313,14 +1350,14 @@ DocType: User,Set New Password,وضع كلمة سر جديدة apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},Fieldname {0} تظهر عدة مرات في الصفوف {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} من {1} إلى {2} في الصف # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},Fieldname {0} تظهر عدة مرات في الصفوف {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{0} from {1} to {2} in row #{3},{0} من {1} إلى {2} في الصف # {3} DocType: Communication,Expired,انتهى apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +32,Seems token you are using is invalid!,يبدو الرمز المميز الذي تستخدمه غير صالح! DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),عدد الأعمدة للحقل في الشبكة (يجب أن يكون مجموع الأعمدة في شبكة أقل من 11) DocType: DocType,System,نظام DocType: Web Form,Max Attachment Size (in MB),أقصى حجم للمرفقات (ميغابايت) -apps/frappe/frappe/www/login.html +75,Have an account? Login,هل لديك حساب ؟ تسجيل الدخول +apps/frappe/frappe/www/login.html +76,Have an account? Login,هل لديك حساب ؟ تسجيل الدخول apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},تنسيق الطباعة غير معروف: {0} DocType: Workflow State,arrow-down,سهم لأسفل apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},المستخدم لا يسمح لحذف {0}: {1} @@ -1332,30 +1369,30 @@ DocType: Help Article,Likes,اعجابات DocType: Website Settings,Top Bar,الشريط الأعلى DocType: GSuite Settings,Script Code,رمز البرنامج النصي apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,إنشاء بريد الكتروني للمستخدم -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,لا الأذونات المحددة +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,لا الأذونات المحددة apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,لم يتم العثور على {0} DocType: Custom Role,Custom Role,تخصيص صلاحية apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,الصفحة الرئيسية / مجلد اختبار 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,الرجاء حفظ المستند قبل تحميلها. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,ادخل رقمك السري +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,ادخل رقمك السري DocType: Dropbox Settings,Dropbox Access Secret,دروببوإكس الدخول السرية DocType: Social Login Key,Social Login Provider,موفر تسجيل الدخول الاجتماعي apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,إضافة تعليق آخر -apps/frappe/frappe/core/doctype/data_import/importer.py +81,No data found in the file. Please reattach the new file with data.,لم يتم العثور على بيانات في الملف. الرجاء إعادة إرفاق الملف الجديد بالبيانات. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,No data found in the file. Please reattach the new file with data.,لم يتم العثور على بيانات في الملف. الرجاء إعادة إرفاق الملف الجديد بالبيانات. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,تعديل DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,إلغاء الاشتراك من النشرة الإخبارية -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,الطي يجب أن يأتي قبل فاصل القسم +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,الطي يجب أن يأتي قبل فاصل القسم apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,تحت التطوير apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,انتقل إلى المستند apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,التعديل الأخير من قبل apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,التخصيصات إعادة تعيين DocType: Workflow State,hand-down,إلى أسفل اليد DocType: Address,GST State,غست الدولة -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0} : لا يمكن تحديد الغاء دون تأكيد +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0} : لا يمكن تحديد الغاء دون تأكيد DocType: Website Theme,Theme,موضوع DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,إعادة التوجيه URI ملزمة لكود التفويض DocType: DocType,Is Submittable,هو Submittable -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,ذكر جديد +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,ذكر جديد apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,يمكن أن تكون قيمة حقل التحقق إما 0 أو 1 apps/frappe/frappe/model/document.py +733,Could not find {0},لا يمكن أن تجد {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,تسميات العمود: @@ -1375,7 +1412,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,مجموعة DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","حدد الهدف = "" _blank "" لفتح صفحة جديدة في ." apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,حجم قاعدة البيانات: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,حذف بشكل دائم {0} ؟ +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,حذف بشكل دائم {0} ؟ apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,نفس الملف تم إرفاقه إلى هذا السجل apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ليست حالة سير عمل صالحة. يرجى تحديث سير العمل والمحاولة مرة أخرى. DocType: Workflow State,wrench,وجع @@ -1389,27 +1426,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,أضف تعليق DocType: DocField,Mandatory,إلزامي apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,وحدة لتصدير -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0} : لم يتم تحديد صلاحيات أساسية +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0} : لم يتم تحديد صلاحيات أساسية apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,سوف تنتهي صلاحية أشتراك في {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},سوف تكون عبر البريد الالكتروني رابط التحميل للنسخ الاحتياطي الخاص بك على عنوان البريد الإلكتروني التالي: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",معنى تسجيل ، إلغاء وتعديل apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,قائمة المهام DocType: Test Runner,Module Path,مسار الوحدة النمطية DocType: Social Login Key,Identity Details,تفاصيل الهوية +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),ثم (اختياري) DocType: File,Preview HTML,معاينة HTML DocType: Desktop Icon,query-report,استعلام تقرير -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},تعيين إلى {0} {1} DocType: DocField,Percent,في المئة apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,ترتبط apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,تحرير إعدادات تقرير البريد الإلكتروني التلقائي DocType: Chat Room,Message Count,عدد الرسائل DocType: Workflow State,book,كتاب +DocType: Communication,Read by Recipient,قراءة من قبل المتلقي DocType: Website Settings,Landing Page,الصفحة المقصودة apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,خطأ في سيناريو مخصص apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} الاسم apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,لم يحدد ضوابط لهذه المعايير. DocType: Auto Email Report,Auto Email Report,ارسال التقارير عبر البريد الالكتروني الياً -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,حذف التعليق؟ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,حذف التعليق؟ DocType: Address Template,This format is used if country specific format is not found,ويستخدم هذا الشكل إذا لم يتم العثور على صيغة محددة البلاد DocType: System Settings,Allow Login using Mobile Number,السماح بتسجيل الدخول باستخدام رقم الجوال apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,لم يكن لديك أذونات كافية للوصول إلى هذه الموارد. يرجى الاتصال بمدير الخاص بك للوصول. @@ -1426,7 +1464,7 @@ DocType: Letter Head,Printing,طبع DocType: Workflow State,thumbs-up,الابهام إلى أعلى DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,الخطوط -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,يجب أن تكون الدقة بين 1 و 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,يجب أن تكون الدقة بين 1 و 6 apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,و apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},تم إنشاء هذا التقرير في {0} @@ -1438,16 +1476,16 @@ DocType: Auto Email Report,Report Filters,مرشحات تقرير apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,الآن DocType: Workflow State,step-backward,خطوة إلى الوراء apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{ app_title } -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,الرجاء تعيين مفاتيح الوصول دروببوإكس في التكوين موقعك +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,Please set Dropbox access keys in your site config,الرجاء تعيين مفاتيح الوصول دروببوإكس في التكوين موقعك apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,حذف هذا السجل للسماح إرسالها إلى عنوان البريد الإلكتروني هذا apps/frappe/frappe/core/doctype/data_import/exporter.py +67,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ضرورية لسجلات جديدة الحقول الإلزامية فقط. يمكنك حذف الأعمدة غير الإلزامية إذا كنت ترغب في ذلك. -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,غير قادر على تحديث الحدث -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,تم إتمام الدفعة +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,غير قادر على تحديث الحدث +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,تم إتمام الدفعة apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,تم إرسال رمز التحقق إلى عنوان بريدك الإلكتروني المسجل. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,مخنوق -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",يجب أن يحتوي الفلتر على 4 قيم (دوكتيب، فيلدنام، أوبيراتور، فالو): {0} +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,مخنوق +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",يجب أن يحتوي الفلتر على 4 قيم (دوكتيب، فيلدنام، أوبيراتور، فالو): {0} apps/frappe/frappe/utils/bot.py +89,show,تبين -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},اسم الحقل غير صالح {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},اسم الحقل غير صالح {0} DocType: Address Template,Address Template,قالب عنوان DocType: Workflow State,text-height,ارتفاع النص DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,تخطيط خطة ترحيل البيانات @@ -1457,13 +1495,14 @@ DocType: Workflow State,map-marker,محدد الخريطة apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,يقدم العدد DocType: Event,Repeat this Event,كرر هذا الحدث DocType: Address,Maintenance User,عضو الصيانة +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,تفضيلات الفرز apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,تجنب التواريخ والسنوات التي ترتبط معك. DocType: Custom DocPerm,Amend,تعديل DocType: Data Import,Generated File,ملف تم إنشاؤه DocType: Transaction Log,Previous Hash,السابق هاش DocType: File,Is Attachments Folder,هو مجلد المرفقات apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,توسيع الكل -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,حدد دردشة لبدء الرسائل. +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,حدد دردشة لبدء الرسائل. apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,يرجى اختيار نوع الكيان أولا apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,صالحة معرف تسجيل الدخول المطلوبة. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,يرجى تحديد ملف CSV صالحة مع البيانات @@ -1476,26 +1515,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,سجل غير م apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,القيمة الأصلية DocType: Help Category,Help Category,فئة المساعدة apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,المستخدم {0} تم تعطيل -apps/frappe/frappe/www/404.html +20,Page missing or moved,الصفحة مفقودة أو تم نقلها +apps/frappe/frappe/www/404.html +21,Page missing or moved,الصفحة مفقودة أو تم نقلها DocType: DocType,Route,طريق apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,إعدادات بوابة الدفع Razorpay +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,إحضار الصور المرفقة من المستند DocType: Chat Room,Name,اسم DocType: Contact Us Settings,Skype,سكايب apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,لقد تجاوزت مساحة أقصى {0} لخطتك. {1}. DocType: Chat Profile,Notification Tones,نغمات الإخطار -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ابحث في المستندات +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,ابحث في المستندات DocType: OAuth Authorization Code,Valid,صالح apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,فتح الرابط apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,لغتك apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,اضف سطر DocType: Tag Category,Doctypes,Doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,يجب أن يكون الاستعلام SELECT -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,الرجاء إرفاق ملف لاستيراده -DocType: Auto Repeat,Completed,أكتمل +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,يجب أن يكون الاستعلام SELECT +DocType: Prepared Report,Completed,أكتمل DocType: File,Is Private,غير الخاصة DocType: Data Export,Select DocType,حدد DOCTYPE apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,تجاوز حجم الملف الحد الأقصى المسموح به حجم {0} MB -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,منشئه في +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,منشئه في DocType: Workflow State,align-center,محاذاة الوسط DocType: Feedback Request,Is Feedback request triggered manually ?,وملاحظات طلب أثار يدويا؟ DocType: Address,Lakshadweep Islands,جزر لاكشادويب @@ -1503,7 +1542,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",وثائق معينة ، مثل الفاتورة ، لا ينبغي تغييره مرة واحدة نهائية . و دعا الدولة النهائية ل هذه الوثائق المقدمة . يمكنك تقييد الأدوار التي يمكن إرسال. DocType: Newsletter,Test Email Address,اختبار عنوان البريد الإلكتروني DocType: ToDo,Sender,مرسل -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,خطأ أثناء تقييم الإشعار {0}. يرجى تصحيح القالب الخاص بك. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,خطأ أثناء تقييم الإشعار {0}. يرجى تصحيح القالب الخاص بك. DocType: GSuite Settings,Google Apps Script,غوغل أبس سكريبت apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,أترك تعليق DocType: Web Page,Description for search engine optimization.,وصف لمحرك البحث الأمثل. @@ -1513,7 +1552,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,ري DocType: System Settings,Allow only one session per user,السماح لجلسة واحدة فقط لكل مستخدم apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,مجلد الوطن / اختبار 1 / مجلد اختبار 3 DocType: Website Settings,<head> HTML, HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,اختر أو اسحب عبر فتحات الوقت لإنشاء حدث جديد. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,اختر أو اسحب عبر فتحات الوقت لإنشاء حدث جديد. DocType: DocField,In Filter,في تصفية apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,كانبان DocType: DocType,Show in Module Section,تظهر في القسم وحدة @@ -1525,17 +1564,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",صفحة ستظهر على الموقع الالكتروني DocType: Note,Seen By Table,ينظر من خلال الجدول -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,حدد القالب +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,حدد القالب apps/frappe/frappe/www/third_party_apps.html +47,Logged in,تسجيل الدخول apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,معرف المستخدم غير صحيح أو كلمة المرور apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,إستكشاف apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,صندوق الوارد و الصادر الافتراضي DocType: System Settings,OTP App,مكتب المدعي العام التطبيقات +DocType: Dropbox Settings,Send Email for Successful Backup,إرسال البريد الإلكتروني للنسخ الاحتياطي الناجح apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,معرف المستند DocType: Print Settings,Letter,الحرف -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,يجب أن يكون حقل صورة من نوع إرفاق صورة +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,يجب أن يكون حقل صورة من نوع إرفاق صورة DocType: DocField,Columns,الأعمدة -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,تمت المشاركة مع المستخدم {0} مع إمكانية الوصول للقراءة +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,تمت المشاركة مع المستخدم {0} مع إمكانية الوصول للقراءة DocType: Async Task,Succeeded,نجح apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},الحقول الإلزامية المطلوبة في {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,إعادة تعيين أذونات ل {0} ؟ @@ -1553,14 +1593,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,محاذاة يسار DocType: User,Defaults,الافتراضات DocType: Feedback Request,Feedback Submitted,تم تسليم التعليقات -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,دمج مع الحالي +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,دمج مع الحالي DocType: User,Birth Date,تاريخ الميلاد DocType: Dynamic Link,Link Title,لينك تيتل DocType: Workflow State,fast-backward,بسرعة الى الوراء DocType: Address,Chandigarh,شانديغار DocType: DocShare,DocShare,DocShare DocType: Event,Friday,الجمعة -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,تحرير في صفحة كاملة +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,تحرير في صفحة كاملة DocType: Report,Add Total Row,إضافة صف الإجمالي apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,يرجى التحقق من عنوان بريدك الإلكتروني المسجل للحصول على إرشادات حول كيفية المتابعة. لا تغلق هذه النافذة كما سيكون لديك للعودة إليها. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,على سبيل المثال إذا قمت بإلغاء وتعديل INV004 أنها سوف تصبح وثيقة INV004-1 جديدة. هذا يساعدك على تتبع كل تعديل. @@ -1581,11 +1621,10 @@ apps/frappe/frappe/www/feedback.html +96,Please give a detailed feebdack.,يرج DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent",وحدة واحدة من العملة = ؟ أجزاء صغيرة من العملة. على سبيل المثال : 1 ريال سعودي = 100 هللة. DocType: Data Import,Partially Successful,ناجحة جزئيا -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour",وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour",وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,إضافة قاعدة صلاحيات جديدة apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,يمكنك استخدام حرف البدل٪ DocType: Chat Message Attachment,Chat Message Attachment,دردشة مرفق الرسالة -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,يرجى إعداد حساب البريد الإلكتروني الافتراضي من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed",فقط ملحقات الصورة (gif أو jpg أو JPEG أو .tiff، بابوا نيو غينيا، زمر .svg) يسمح DocType: Address,Manipur,مانيبور DocType: DocType,Database Engine,محرك قاعدة البيانات @@ -1606,7 +1645,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,شركة فرعية DocType: System Settings,In Hours,في ساعات apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,مع رأسية -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,خادم البريد الصادر غير صالحة أو ميناء +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,خادم البريد الصادر غير صالحة أو ميناء DocType: Custom DocPerm,Write,الكتابة apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed to create Query / Script Reports,المسؤول الوحيد المسموح به لإنشاء تقارير الاستعلام / سكربت apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,التحديث @@ -1615,28 +1654,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,استخدام هذا FIELDNAME لتوليد عنوان apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,استيراد البريد الإلكتروني من apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,دعوة كمستخدم -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,عنوان المنزل مطلوب +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,عنوان المنزل مطلوب DocType: Data Migration Run,Started,بدأت +DocType: Data Migration Run,End Time,وقت الانتهاء apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,حدد المرفقات apps/frappe/frappe/model/naming.py +113, for {0},ل{0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,كانت هناك أخطاء. الرجاء الإبلاغ عن ذلك. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,كانت هناك أخطاء. الرجاء الإبلاغ عن ذلك. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,لا يسمح لك طباعة هذه الوثيقة apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},جار تحديث {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,الرجاء تعيين قيمة المرشحات في الجدول تقرير تصفية. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,تحميل تقرير +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,الرجاء تعيين قيمة المرشحات في الجدول تقرير تصفية. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,تحميل تقرير apps/frappe/frappe/limits.py +74,Your subscription will expire today.,صلاحية اشتراكك ستنتهي اليوم. DocType: Page,Standard,معيار -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,إرفاق ملف +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,إرفاق ملف +DocType: Data Migration Plan,Preprocess Method,طريقة المعالجة المسبقة apps/frappe/frappe/desk/page/backups/backups.html +13,Size,حجم apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,التنازل الكامل DocType: Desktop Icon,Idx,IDX +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,"

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

" DocType: Address,Madhya Pradesh,ماديا براديش DocType: Deleted Document,New Name,اسم جديد DocType: System Settings,Is First Startup,هو بدء التشغيل الأول DocType: Communication,Email Status,الحالة البريد الإلكتروني apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,الرجاء حفظ المستند قبل إزالة المهمة apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,إدراج فوق -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,لا يمكن تعديل التعليق إلا بواسطة المالك +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,لا يمكن تعديل التعليق إلا بواسطة المالك DocType: Data Import,Do not send Emails,لا ترسل رسائل البريد الإلكتروني apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,الأسماء الشائعة والألقاب سهلة التخمين. DocType: Auto Repeat,Draft,مسودة @@ -1648,14 +1690,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,سحب DocType: Contact,Replied,رد DocType: Newsletter,Test,اختبار DocType: Custom Field,Default Value,القيمة الافتراضية -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,تأكد من +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,تأكد من DocType: Workflow Document State,Update Field,تحديث الحقل DocType: Chat Profile,Enable Chat,تمكين الدردشة DocType: LDAP Settings,Base Distinguished Name (DN),قاعدة الاسم المميز (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,ترك هذه المحادثة -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},خيارات لم يتم تعيين لحقل الرابط {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},خيارات لم يتم تعيين لحقل الرابط {0} DocType: Customize Form,"Must be of type ""Attach Image""",يجب أن يكون من نوع "إرفاق صورة" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,إلغاء تحديد الكل +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,إلغاء تحديد الكل apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},"لا يمكنك ضبط ""للقراءة فقط"" للحقل {0}" DocType: Auto Email Report,Zero means send records updated at anytime,صفر يعني إرسال التحديثات في أي وقت apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,أكمال الإعداد @@ -1671,7 +1713,7 @@ DocType: Social Login Key,Google,جوجل DocType: Email Domain,Example Email Address,مثال عنوان البريد الإلكتروني apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,الأكثر استخداما apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,إلغاء الاشتراك من النشرة الإخبارية -apps/frappe/frappe/www/login.html +83,Forgot Password,هل نسيت كلمة المرور +apps/frappe/frappe/www/login.html +84,Forgot Password,هل نسيت كلمة المرور DocType: Dropbox Settings,Backup Frequency,معدل النسخ الاحتياطي DocType: Workflow State,Inverse,معكوس DocType: DocField,User permissions should not apply for this Link,لا ينبغي تطبيق أذونات المستخدم لهذا الرابط @@ -1688,6 +1730,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,قائمة apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,تم التحديث بنجاح DocType: Activity Log,Logout,خروج apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,ضوابط في المستويات العليا هي أذونات على مستوى الحقل. جميع الحقول لديها مجموعة مستوى الأذونات ضدهم والقواعد المحددة في تلك الأذونات تنطبق على هذا الحقل. وهذا مفيد في حال كنت تريد إخفاء أو جعل حقل معين للقراءة فقط لبعض الصلاحيات. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,الإعداد> تخصيص النموذج DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",أدخل المعلمات URL ثابت هنا (مثلا المرسل = ERPNext، اسم المستخدم = ERPNext، كلمة المرور = 1234 الخ) apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.",إذا هذه التعليمات حيث لم تكن مفيدة ، يرجى إضافة في اقتراحاتكم بشأن قضايا جيثب . DocType: Workflow State,bookmark,المرجعية @@ -1699,12 +1742,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,ت apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} موجود بالفعل. حدد اسما آخر apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,لا تتطابق شروط التعليقات DocType: S3 Backup Settings,None,لا شيء -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,يجب أن يكون حقل الزمني لFIELDNAME صحيح +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,يجب أن يكون حقل الزمني لFIELDNAME صحيح DocType: GCalendar Account,Session Token,رمز الجلسة DocType: Currency,Symbol,رمز -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,الصف # {0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,الصف # {0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,كلمة مرور جديدة عبر البريد الالكتروني -apps/frappe/frappe/auth.py +272,Login not allowed at this time,الدخول غير مسموح به في هذا الوقت +apps/frappe/frappe/auth.py +286,Login not allowed at this time,الدخول غير مسموح به في هذا الوقت DocType: Data Migration Run,Current Mapping Action,إجراء رسم الخرائط الحالي DocType: Email Account,Email Sync Option,مزامنة البريد الإلكتروني الخيار apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,الصف رقم @@ -1720,12 +1763,12 @@ DocType: Address,Fax,فاكس apps/frappe/frappe/config/setup.py +263,Custom Tags,كلمات دلائلية حخصصة DocType: Communication,Submitted,مسجلة DocType: System Settings,Email Footer Address,البريد الإلكتروني تذييل العنوان -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,الجدول محدث +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,الجدول محدث DocType: Activity Log,Timeline DocType,DOCTYPE الزمني DocType: DocField,Text,نص apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,إرسال الافتراضي DocType: Workflow State,volume-off,حجم حالا -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},يحب {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},يحب {0} DocType: Footer Item,Footer Item,تذييل البند ,Download Backups,تحميل النسخ الاحتياطية apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,الصفحة الرئيسية / اختبار المجلد 1 @@ -1733,7 +1776,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me, DocType: DocField,Dynamic Link,الارتباط الحيوي apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,حتى الان apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,مشاهدة فشل الوظائف -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,تفاصيل +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,تفاصيل DocType: Property Setter,DocType or Field,DOCTYPE أو حقل DocType: Communication,Soft-Bounced,لينة المرتجعة DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",إذا تم تمكينه ، يمكن لكافة المستخدمين تسجيل الدخول من أي عنوان IP باستخدام "عامل عامل". يمكن أيضًا تعيين ذلك لمستخدمين محددين في صفحة المستخدم @@ -1744,7 +1787,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,تم نقل البريد الإلكتروني إلى المهملات DocType: Report,Report Builder,تقرير منشئ DocType: Async Task,Task Name,اسم المهمة -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.",انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة. +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.",انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة. DocType: Communication,Workflow,سير العمل DocType: Website Settings,Welcome Message,رسالة الترحيب DocType: Webhook,Webhook Headers,رؤوس ويبهوك @@ -1761,10 +1804,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,طباعة الوثائق DocType: Contact Us Settings,Forward To Email Address,انتقل إلى عنوان البريد الإلكتروني apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,إظهار جميع البيانات -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,يجب أن يكون حقل العنوان ل fieldname صالحة +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,يجب أن يكون حقل العنوان ل fieldname صالحة apps/frappe/frappe/config/core.py +7,Documents,وثائق DocType: Social Login Key,Custom Base URL,عنوان ورل لقاعدة مخصصة DocType: Email Flag Queue,Is Completed,قد اكتمل +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,احصل على الحقول apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} أشار إليك في تعليق apps/frappe/frappe/www/me.html +22,Edit Profile,تعديل الملف الشخصي DocType: Kanban Board Column,Archived,أرشفة @@ -1774,17 +1818,18 @@ myfield 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/form/controls/date.js +49,Today,اليوم +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,اليوم apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",وبمجرد الانتهاء من تعيين هذه ، سوف يكون المستخدمون قادرين فقط الوصول إلى المستندات (على سبيل المثال مدونة بوست) حيث يوجد رابط (مثل مدون ) . DocType: Error Log,Log of Scheduler Errors,سجل من الأخطاء جدولة DocType: User,Bio,نبذة DocType: OAuth Client,App Client Secret,كلمة مرور التطبيق الثانوي apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,تقديم +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,الأصل هو اسم المستند الذي ستتم إضافة البيانات إليه. apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,مشاهدة الاعجاب DocType: DocType,UPPER CASE,الأحرف الكبيرة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,مخصصةHTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,أدخل اسم المجلد -apps/frappe/frappe/auth.py +228,Unknown User,مستخدم غير معروف +apps/frappe/frappe/auth.py +233,Unknown User,مستخدم غير معروف apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,حدد الصلاحية DocType: Communication,Deleted,حذف DocType: Workflow State,adjust,ضبط @@ -1806,21 +1851,21 @@ DocType: Data Migration Connector,Database Name,اسم قاعدة البيانا apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,نموذج التحديث DocType: DocField,Select,حدد apps/frappe/frappe/utils/csvutils.py +29,File not attached,الملف غير مرفق -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,فقد الاتصال، بعض الميزات قد لا تعمل. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,فقد الاتصال، بعض الميزات قد لا تعمل. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess",كما يكرر "AAA" من السهل تخمين -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,دردشة جديدة +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,دردشة جديدة 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,مشاهدة القسم العناوين DocType: Bulk Update,Limit,حد -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},لا توجد في مسار القالب: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,الخروج من جميع الجلسات +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,إضافة قسم جديد +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},لا توجد في مسار القالب: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,ليس لديك حساب البريد الإلكتروني DocType: Communication,Cancelled,إلغاء DocType: Chat Room,Avatar,الصورة الرمزية DocType: Blogger,Posts,المشاركات DocType: Social Login Key,Salesforce,قوة المبيعات DocType: DocType,Has Web View,لديها عرض ويب -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",يجب أن يبدأ اسم DOCTYPE مع بريد إلكتروني ويمكن أن تتكون فقط من الحروف والأرقام والمسافات وأحرف (_) +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",يجب أن يبدأ اسم DOCTYPE مع بريد إلكتروني ويمكن أن تتكون فقط من الحروف والأرقام والمسافات وأحرف (_) DocType: Communication,Spam,بريد مؤذي DocType: Integration Request,Integration Request,التكامل طلب apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,العزيز @@ -1836,16 +1881,18 @@ DocType: Communication,Assigned,تم تحديد المهمة DocType: Print Format,Js,Js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,حدد تنسيق طباعة apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,نماذج لوحة المفاتيح قصيرة من السهل تخمين +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,توليد تقرير جديد DocType: Portal Settings,Portal Menu,البوابة القائمة apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,يجب أن يكون طول {0} بين 1 و 1000 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,البحث عن أي شيء +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,البحث عن أي شيء DocType: Data Migration Connector,Hostname,اسم المضيف DocType: Data Migration Mapping,Condition Detail,حالة التفاصيل apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}",للعملة {0} ، يجب أن يكون الحد الأدنى لمبلغ المعاملة {1} DocType: DocField,Print Hide,طباعة إخفاء -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,أدخل القيمة +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,أدخل القيمة DocType: Workflow State,tint,لون DocType: Web Page,Style,أسلوب +DocType: Prepared Report,Report End Time,تقرير وقت الانتهاء apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,على سبيل المثال: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} تعليقات apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,تم تحديث الإصدار @@ -1858,10 +1905,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,تبديل الرسوم البيانية DocType: Website Settings,Sub-domain provided by erpnext.com,المجال الفرعي مقدم من erpnext.com apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,إعداد النظام الخاص بك +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,أحفاد من DocType: System Settings,dd-mm-yyyy,DD-MM-YYYY -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,يجب أن يكون لديك إذن تقارير للوصول إلى هذا التقرير. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,يجب أن يكون لديك إذن تقارير للوصول إلى هذا التقرير. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,يرجى تحديد الحد الأدنى لسجل كلمة المرور -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,تم الاضافة +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,تم الاضافة apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,لقد اشتركت في خطة مجانية لمستخدم واحد DocType: Auto Repeat,Half-yearly,نصف سنوية apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,يتم إرسالها حدث الموجز اليومي على أحداث التقويم حيث يتم تعيين التذكير. @@ -1872,7 +1920,7 @@ DocType: Workflow State,remove,نزع DocType: Email Domain,If non standard port (e.g. 587),إذا غير المنفذ القياسي (على سبيل المثال 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,تحديث apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,إضافة تصنيف العلامة الدلائلية الخاصة بك -apps/frappe/frappe/desk/query_report.py +227,Total,المجموع +apps/frappe/frappe/desk/query_report.py +312,Total,المجموع DocType: Event,Participants,المشاركين DocType: Integration Request,Reference DocName,إشارة DocName DocType: Web Form,Success Message,رسالة النجاح @@ -1886,7 +1934,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,Build Report,بناء تقرير DocType: Note,Notify users with a popup when they log in,إعلام المستخدمين مع منبثقة عندما يقومون بتسجيل الدخول apps/frappe/frappe/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge",{0} {1} غير موجود ، حدد هدفا جديدا لدمج -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",نتائج البحث عن "{0}" DocType: Data Migration Connector,Python Module,وحدة بيثون DocType: GSuite Settings,Google Credentials,غوغل كريدنتيالز apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,رمز الاستجابة السريعة لتسجيل الدخول @@ -1895,8 +1942,8 @@ DocType: Footer Item,Company,شركة apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,تعيين إلى البيانات apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,قوالب غوغل غسويت للتكامل مع دوكتيبس DocType: User,Logout from all devices while changing Password,الخروج من جميع الأجهزة أثناء تغيير كلمة المرور -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,التحقق من كلمة المرور -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,كانت هناك أخطاء +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,التحقق من كلمة المرور +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,كانت هناك أخطاء apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,أغلق apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,لا يمكن تغيير docstatus 0-2 DocType: File,Attached To Field,مرفق إلى الحقل @@ -1906,7 +1953,7 @@ DocType: Transaction Log,Transaction Hash,عملية تجزئة DocType: Error Snapshot,Snapshot View,لقطة مشاهدة apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,الرجاء حفظ النشرة قبل الإرسال apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,تكوين حسابات لتقويم جوجل -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},يجب أن تكون الخيارات ل DOCTYPE صالحة لحقل {0} في {1} الصف +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},يجب أن تكون الخيارات ل DOCTYPE صالحة لحقل {0} في {1} الصف apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,تحرير خصائص DocType: Patch Log,List of patches executed,قائمة من بقع أعدمت apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} غير مشترك أصلاً @@ -1925,8 +1972,8 @@ DocType: Data Migration Connector,Authentication Credentials,مصادقة بيا DocType: Role,Two Factor Authentication,توثيق ذو عاملين apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,دفع DocType: SMS Settings,SMS Gateway URL,SMS بوابة URL -apps/frappe/frappe/model/base_document.py +508,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} لا يمكن أن يكون ""{2}"". ينبغي أن يكون واحدا من ""{3}""" -apps/frappe/frappe/utils/data.py +638,{0} or {1},{0} أو {1} +apps/frappe/frappe/model/base_document.py +517,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} لا يمكن أن يكون ""{2}"". ينبغي أن يكون واحدا من ""{3}""" +apps/frappe/frappe/utils/data.py +640,{0} or {1},{0} أو {1} apps/frappe/frappe/core/doctype/user/user.py +250,Password Update,تحديث كلمة المرور DocType: Workflow State,trash,القمامة DocType: System Settings,Older backups will be automatically deleted,سيتم حذف النسخ الاحتياطية القديمة تلقائيا @@ -1942,16 +1989,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,انتكس apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,البند لا يمكن أن تضاف إلى أحفاد الخاصة DocType: System Settings,Expiry time of QR Code Image Page,وقت انتهاء صلاحية رمز الاستجابة السريعة صورة الصفحة -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,مشاهدة المجاميع +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,مشاهدة المجاميع DocType: Error Snapshot,Relapses,الانتكاسات DocType: Address,Preferred Shipping Address,عنوان النقل البحري المفضل -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,مع رئيس رسالة +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,مع رئيس رسالة apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} أنشأ {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 +38,Document is only editable by users of role,الوثيقة للتحرير فقط من قبل المستخدمين من دور -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.",مهمة {0}، الذي قمت بتعيينه إلى {1}، تم إغلاق بواسطة {2}. +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.",مهمة {0}، الذي قمت بتعيينه إلى {1}، تم إغلاق بواسطة {2}. DocType: Print Format,Show Line Breaks after Sections,فواصل عرض الخط بعد الأقسام +DocType: Communication,Read by Recipient On,قراءة من قبل المتلقي DocType: Blogger,Short Name,الاسم المختصر -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},الصفحة {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},الصفحة {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},مرتبط ب {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1978,20 +2027,20 @@ DocType: Communication,Feedback,Feedback apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,فتح الترجمة apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,تم إنشاء هذا البريد الإلكتروني تلقائيا DocType: Workflow State,Icon will appear on the button,سيظهر الرمز على الزر -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,سوكتيو غير متصل. يتعذر التحميل +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,سوكتيو غير متصل. يتعذر التحميل DocType: Website Settings,Website Settings,إعدادات الموقع apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,شهر DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: إضافة Reference: {{ reference_doctype }} {{ reference_name }} لإرسال وثيقة مرجعية DocType: DocField,Fetch From,إحضار من apps/frappe/frappe/modules/utils.py +205,App not found,لم يتم العثور على التطبيق -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},لا يمكن إنشاء {0} ضد وثيقة الطفل: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},لا يمكن إنشاء {0} ضد وثيقة الطفل: {1} DocType: Social Login Key,Social Login Key,مفتاح تسجيل الدخول الاجتماعي DocType: Portal Settings,Custom Sidebar Menu,قائمة الشريط الجانبي المخصص DocType: Workflow State,pencil,قلم رصاص apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,.رسائل الدردشة والإخطارات الأخرى apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},إدراج بعد لا يمكن تعيين ك {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,مشاركة {0} مع -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,اعداد حساب البريد الألكتروني فضلا ادخل كلمة السر: +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,اعداد حساب البريد الألكتروني فضلا ادخل كلمة السر: DocType: Workflow State,hand-up,ومن ناحية المتابعة DocType: Blog Settings,Writers Introduction,مقدمة الكاتب DocType: Address,Phone,هاتف @@ -1999,18 +2048,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,غير فعال DocType: Contact,Accounts Manager,مدير حسابات apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,تم إلغاء دفعتك. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,حدد نوع الملف +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,حدد نوع الملف apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,عرض الكل DocType: Help Article,Knowledge Base Editor,محرر قاعدة المعرفة apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,لم يتم العثور على الصفحة DocType: DocField,Precision,دقة DocType: Website Slideshow,Slideshow Items,عرض الشرائح عناصر apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,في محاولة لتجنب الكلمات المكررة وشخصيات -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,هناك عمليات تشغيل فاشلة مع نفس خطة ترحيل البيانات DocType: Event,Groups,مجموعات DocType: Workflow Action,Workflow State,حالة سير العمل apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,واضاف الصفوف -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,نجاح! كنت جيدة للذهاب 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,نجاح! كنت جيدة للذهاب 👍 apps/frappe/frappe/www/me.html +3,My Account,حسابي DocType: ToDo,Allocated To,المخصصة ل apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,الرجاء الضغط على الرابط التالي لتعيين كلمة المرور الجديدة @@ -2018,36 +2066,39 @@ DocType: Notification,Days After,أيام بعد DocType: Newsletter,Receipient,RECEIPIENT DocType: Contact Us Settings,Settings for Contact Us Page,إعدادات صفحة الاتصال بنا DocType: Custom Script,Script Type,نوع البرنامج النصي +DocType: Print Settings,Enable Print Server,تمكين خادم الطباعة apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,قبل {0} أسبوع /أسابيع DocType: Auto Repeat,Auto Repeat Schedule,جدول تكرار تلقائي DocType: Email Account,Footer,تذييل apps/frappe/frappe/config/integrations.py +48,Authentication,المصادقة apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,رابط غير صالح +DocType: Web Form,Client Script,العميل النصي DocType: Web Page,Show Title,اظهار العنوان DocType: Chat Message,Direct,مباشرة DocType: Property Setter,Property Type,نوع الملكية DocType: Workflow State,screenshot,لقطة شاشة apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,مسؤول فقط يمكن حفظ تقرير القياسية. الرجاء إعادة تسمية وحفظ. -DocType: System Settings,Background Workers,عمال الخلفية -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,أسم الحقل {0} متعارض مع الكلمات الدلائلية +DocType: System Settings,Background Workers,قائمة العمليات +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,أسم الحقل {0} متعارض مع الكلمات الدلائلية DocType: Deleted Document,Data,معطيات apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,حالة المستند apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},كنت قد قدمت {0} من {1} DocType: OAuth Authorization Code,OAuth Authorization Code,مصادقة رمز التفويض -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,لا يسمح ل استيراد +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,لا يسمح ل استيراد DocType: Deleted Document,Deleted DocType,DOCTYPE المحذوفة apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,إذن مستويات DocType: Workflow State,Warning,تحذير DocType: Data Migration Run,Percent Complete,في المئة كاملة DocType: Tag Category,Tag Category,العلامة الفئة -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!",تجاهل البند {0} ، لأن مجموعة موجودة بنفس الاسم ! -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,مساعدة +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!",تجاهل البند {0} ، لأن مجموعة موجودة بنفس الاسم ! +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,مساعدة DocType: User,Login Before,تسجيل الدخول قبل DocType: Web Page,Insert Style,إدراج نمط apps/frappe/frappe/config/setup.py +276,Application Installer,مثبت التطبيق -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,اسم التقرير الجديد +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,اسم التقرير الجديد +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,إخفاء عطلة نهاية الأسبوع DocType: Workflow State,info-sign,معلومات تسجيل الدخول، -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,قيمة {0} لا يمكن أن تكون قائمة +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,قيمة {0} لا يمكن أن تكون قائمة DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",كيف ينبغي أن يتم تنسيق هذه العملة؟ إذا لم يتم تعيين و، استخدم افتراضيات النظام apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,إرسال {0} وثائق؟ apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية. @@ -2058,6 +2109,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,اذونات الصلاحيات DocType: Help Article,Intermediate,متوسط apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,تم استعادة المستند الملغى كمسودة +DocType: Data Migration Run,Start Time,توقيت البدء apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},لا يمكن حذف أو إلغاء لأن {0} {1} مرتبط مع {2} {3} {4} apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,يمكنه القراءة apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} الرسم البياني @@ -2068,6 +2120,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,يمكن مشاركة apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,عنوان المستلم غير صالحة DocType: Workflow State,step-forward,خطوة إلى الأمام +DocType: System Settings,Allow Login After Fail,السماح بتسجيل الدخول بعد الفشل apps/frappe/frappe/limits.py +69,Your subscription has expired.,انتهت صلاحية اشتراكك. DocType: Role Permission for Page and Report,Set Role For,تعيين صلاحية لل DocType: GCalendar Account,The name that will appear in Google Calendar,الاسم الذي سيظهر في تقويم Google @@ -2076,7 +2129,7 @@ DocType: Event,Starts on,يبدأ يوم DocType: System Settings,System Settings,إعدادات النظام DocType: GCalendar Settings,Google API Credentials,بيانات اعتماد واجهة برمجة تطبيقات Google apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,فشل بدء الجلسة -apps/frappe/frappe/email/queue.py +499,This email was sent to {0} and copied to {1},وقد أرسلت هذه الرسالة الى {0} ونسخها إلى {1} +apps/frappe/frappe/email/queue.py +511,This email was sent to {0} and copied to {1},وقد أرسلت هذه الرسالة الى {0} ونسخها إلى {1} DocType: Workflow State,th,ال DocType: Social Login Key,Provider Name,اسم المزود apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},انشاء جديد {0} @@ -2090,35 +2143,38 @@ DocType: System Settings,Choose authentication method to be used by all users,ا apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Doctype المطلوبة DocType: Workflow State,ok-sign,علامة OK- apps/frappe/frappe/config/setup.py +146,Deleted Documents,المستندات المحذوفة -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,تنسيق كسف حساس لحالة الأحرف +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,تنسيق كسف حساس لحالة الأحرف apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,رمز سطح المكتب موجود بالفعل apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,مكررة DocType: Newsletter,Create and Send Newsletters,إنشاء وإرسال النشرات الإخبارية -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,يجب أن تكون من تاريخ إلى تاريخ قبل +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,يجب أن تكون من تاريخ إلى تاريخ قبل DocType: Address,Andaman and Nicobar Islands,جُزُر أندامان ونيكوبار -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,وثيقة غسويت -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,يرجى تحديد أي يجب فحص حقل القيمة +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,وثيقة غسويت +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,يرجى تحديد أي يجب فحص حقل القيمة apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""الأم"" يدل على الجدول الأصل الذي يجب أن يضاف هذا الصف" apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,لا يمكن إرسال هذه الرسالة الإلكترونية. لقد تجاوزت حد الإرسال لعدد {0} من رسائل البريد الإلكتروني لهذا اليوم. DocType: Website Theme,Apply Style,تطبيق نمط DocType: Feedback Request,Feedback Rating,ردود الفعل التصويت apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,مشترك مع +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,إرفاق الملفات / عناوين واضافة في الجدول. DocType: Help Category,Help Articles,مقالات المساعدة apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,النوع: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,أخفقت دفعتك. DocType: Communication,Unshared,غير مشارك DocType: Address,Karnataka,كارناتاكا apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,لم يتم العثور على الوحدة برمجية -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: تم تعيين {1} على الحالة {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: تم تعيين {1} على الحالة {2} DocType: User,Location,الموقع ,Permitted Documents For User,المستندات يسمح للمستخدم apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","تحتاج إلى صلاحية ""مشاركة""" DocType: Communication,Assignment Completed,تم إنجاز المهمة -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},تعديل بالجمله {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},تعديل بالجمله {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,تحميل التقرير apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,غير نشطة DocType: About Us Settings,Settings for the About Us Page,إعدادات لمن نحن الصفحة apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,إعدادات بوابة الدفع الشريطية DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,على سبيل المثال pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,توليد مفاتيح apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,استخدام الحقل لتصفية السجلات DocType: DocType,View Settings,عرض إعدادات DocType: Email Account,Outlook.com,Outlook.com @@ -2129,12 +2185,12 @@ DocType: User,Send Me A Copy of Outgoing Emails,أرسل لي نسخة من رس DocType: System Settings,Scheduler Last Event,جدولة الحدث الأخير DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"(UA-89XXX57-1)اضافة تحليلات جوجل رقم تعريفى من فضلك ابحث عن المساعدة فى تحليلات جوجل لمزيد من المعلومات" -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,كلمة السر لا يمكن أن تكون أطول من 100 حرفا +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,كلمة السر لا يمكن أن تكون أطول من 100 حرفا DocType: OAuth Client,App Client ID,هوية العميل للتطبيق DocType: Kanban Board,Kanban Board Name,اسم لوح كانبان DocType: Notification Recipient,"Expression, Optional",التعبير والاختياري DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,انسخ هذه الشفرة والصقها في ملف Code.gs وفريده في مشروعك على script.google.com -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},أرسلت هذه الرسالة إلى {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},أرسلت هذه الرسالة إلى {0} DocType: System Settings,Hide footer in auto email reports,إخفاء تذييل الصفحة في تقارير البريد الإلكتروني التلقائي DocType: DocField,Remember Last Selected Value,تذكر آخر مختارة القيمة DocType: Email Account,Check this to pull emails from your mailbox,التحقق من ذلك لسحب رسائل البريد الإلكتروني من صندوق البريد @@ -2150,15 +2206,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",نتائج التوثيق لـ "{0}" DocType: Workflow State,envelope,مغلف apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,الخيار 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,فشلت الطباعة DocType: Feedback Trigger,Email Field,البريد الإلكتروني الميدان -apps/frappe/frappe/www/update-password.html +68,New Password Required.,كلمة مرور جديدة مطلوبة. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,كلمة مرور جديدة مطلوبة. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} مشاركة هذه الوثيقة مع {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,إضافة تقييمك +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,إضافة تقييمك DocType: Website Settings,Brand Image,صورة العلامة التجارية DocType: Print Settings,A4,أ4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",الإعداد من أعلى الملاحة تذييل وبار والشعار. DocType: Web Form Field,Max Value,القيمة القصوى -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},ل {0} في {1} مستوى في {2} في {3} الصف +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},ل {0} في {1} مستوى في {2} في {3} الصف DocType: User Social Login,User Social Login,المستخدم تسجيل الدخول الاجتماعي DocType: Contact,All,جميع DocType: Email Queue,Recipient,مستلم @@ -2167,27 +2224,27 @@ DocType: Address,Sales User,مستخدم المبيعات apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,سحب وإسقاط أداة لبناء وتخصيص تنسيقات طباعة. DocType: Address,Sikkim,سيكيم apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,مجموعة -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,تم إيقاف نمط طلب البحث هذا +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,تم إيقاف نمط طلب البحث هذا DocType: Notification,Trigger Method,الطريقة الزناد -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},يجب أن يكون المشغل واحدا من {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},يجب أن يكون المشغل واحدا من {0} DocType: Dropbox Settings,Dropbox Access Token,دروببوإكس رمز الوصول DocType: Workflow State,align-right,محاذاة اليمين DocType: Auto Email Report,Email To,البريد الإلكتروني الى apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,المجلد {0} ليست فارغة DocType: Page,Roles,الصلاحيات -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},خطأ: قيمة مفقودة ل {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,الحقل {0} ليس اختيار. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},خطأ: قيمة مفقودة ل {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,الحقل {0} ليس اختيار. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,الدورة انتهاء الاشتراك DocType: Workflow State,ban-circle,دائرة الحظر apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,خطأ Slack Webhook DocType: Email Flag Queue,Unread,غير مقروء DocType: Auto Repeat,Desk,مكتب -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),يجب أن يكون الفلتر عبارة عن قائمة أو قائمة (في قائمة) +apps/frappe/frappe/utils/data.py +805,Filter must be a tuple or list (in a list),يجب أن يكون الفلتر عبارة عن قائمة أو قائمة (في قائمة) apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,كتابة استعلام SELECT. لم يتم ترحيلها علما نتيجة (يتم إرسال جميع البيانات دفعة واحدة). DocType: Email Account,Attachment Limit (MB),الحد مرفق (MB) DocType: Address,Arunachal Pradesh,Arunachal Pradesh -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,الإعداد التلقائي البريد الإلكتروني +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,الإعداد التلقائي البريد الإلكتروني apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,CTRL + Down DocType: Chat Profile,Message Preview,معاينة الرسالة apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,هذا هو كلمة السر المشتركة من أعلى إلى 10. @@ -2210,7 +2267,7 @@ DocType: OAuth Client,Implicit,ضمني DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","إضافة كإتصال ضد نوع المستند ( يجب أن يتضمن على الحقول ، ""الحالة"" ، ""الموضوع"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",محددات لاستقبال رمز التفويض مرة واحدة يتيح للمستخدم الوصول، وكذلك ردود الفشل. عادة ما يكون نقطة النهاية بقية عرضة للخطر من قبل العميل التطبيقات.
على سبيل المثال HTTP: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,لا يسمح لتغيير {0} بعد تقديم +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,لا يسمح لتغيير {0} بعد تقديم DocType: Data Migration Mapping,Migration ID Field,حقل رقم تعريف الترحيل DocType: Communication,Comment Type,تعليق نوع DocType: OAuth Client,OAuth Client,مصادقة المستخدم @@ -2222,6 +2279,7 @@ DocType: DocField,Signature,توقيع apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,مشاركة مع apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,تحميل apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.",أدخل مفاتيح لتمكين تسجيل الدخول عبر الفيسبوك ، وجوجل، جيثب . +DocType: Data Import,Insert new records,أدخل سجلات جديدة apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},تعذر قراءة تنسيق الملف {0} DocType: Auto Email Report,Filter Data,تصفية البيانات apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,يرجى إرفاق ملف الأول. @@ -2238,7 +2296,7 @@ DocType: DocType,Title Case,عنوان القضية DocType: Data Migration Run,Data Migration Run,تشغيل ترحيل البيانات DocType: Blog Post,Email Sent,إرسال البريد الإلكتروني DocType: DocField,Ignore XSS Filter,تجاهل XSS تصفية -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,إزالة +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,إزالة apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,إعدادات النسخ الاحتياطي دروببوإكس apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,إرسال كبريد الالكتروني DocType: Website Theme,Link Color,ارتباط اللون @@ -2254,22 +2312,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,إعدادات LDAP apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,اسم الكيان apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,المعدل apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,إعدادات بوابة الدفع باي بال -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) سيتم اقتطاعه، حيث أن الحد الأقصى المسموح به هو {2} +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) سيتم اقتطاعه، حيث أن الحد الأقصى المسموح به هو {2} DocType: OAuth Client,Response Type,نوع الاستجابة DocType: Contact Us Settings,Send enquiries to this email address,إرسال الاستفسارات إلى عنوان البريد الإلكتروني هذا DocType: Letter Head,Letter Head Name,اسم ترئيس الرسالة DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),عدد الأعمدة للحقل في قائمة عرض أو الشبكة (يجب أن يكون مجموع الأعمدة أقل من 11) apps/frappe/frappe/config/website.py +18,User editable form on Website.,العضو شكل قابل للتحرير على موقع الويب. DocType: Workflow State,file,ملف -apps/frappe/frappe/www/login.html +90,Back to Login,العودة إلى تسجيل الدخول +apps/frappe/frappe/www/login.html +91,Back to Login,العودة إلى تسجيل الدخول DocType: Data Migration Mapping,Local DocType,نوع المستند المحلي apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,تحتاج الى صلاحية كتابة لأعادة التسمية +DocType: Email Account,Use ASCII encoding for password,استخدم ترميز ASCII لكلمة المرور DocType: User,Karma,العاقبة الاخلاقية DocType: DocField,Table,جدول DocType: File,File Size,حجم الملف -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,يجب عليك تسجيل الدخول لتقديم هذا النموذج +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,يجب عليك تسجيل الدخول لتقديم هذا النموذج DocType: User,Background Image,صورة الخلفية -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},لا يمكن تعيين الإعلام على نوع المستند {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},لا يمكن تعيين الإعلام على نوع المستند {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency",اختر بلدك، المنطقة الزمنية والعملات apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,ما بين @@ -2278,7 +2337,7 @@ DocType: Braintree Settings,Use Sandbox,استخدام رمل apps/frappe/frappe/utils/goal.py +101,This month,هذا الشهر apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,تنسيق طباعة مخصص جديد DocType: Custom DocPerm,Create,انشاء -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},تصفية الباطلة: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},تصفية الباطلة: {0} DocType: Email Account,no failed attempts,محاولات فاشلة لا DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,مفتاح وصول التطبيق @@ -2287,7 +2346,7 @@ DocType: Chat Room,Last Message,اخر رسالة DocType: OAuth Bearer Token,Access Token,رمز وصول DocType: About Us Settings,Org History,تاريخ المنظمة apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,حجم النسخ الاحتياطي: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},تم التكرار التلقائي {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},تم التكرار التلقائي {0} DocType: Auto Repeat,Next Schedule Date,تاريخ الجدول التالي DocType: Workflow,Workflow Name,اسم سير العمل DocType: DocShare,Notify by Email,إعلام عبر البريد الإلكتروني @@ -2296,10 +2355,10 @@ DocType: Web Form,Allow Edit,السماح بالتعديل apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,لصق DocType: Webhook,Doc Events,دوك الأحداث DocType: Auto Email Report,Based on Permissions For User,اعتماداً على صلاحيات المستخدم -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},لا يمكن تغيير حالة الوثيقة ملغاة . +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},لا يمكن تغيير حالة الوثيقة ملغاة . DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.",ويسمح النظام لكيفية قيام الولايات التحولات، مثل الدولة والتي المقبل دور في تغيير الدولة الخ. apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} موجود بالفعل -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},إلحاق يمكن أن يكون واحدا من {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},إلحاق يمكن أن يكون واحدا من {0} DocType: DocType,Image View,عرض الصورة apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",يبدو وكأنه شيء على ما يرام أثناء العملية. وبما أننا لم تؤكد عملية الدفع، سوف باي بال برد تلقائيا هذا المبلغ. إذا لم يحدث ذلك، يرجى مراسلتنا على البريد الإلكتروني، وأذكر معرف الارتباط: {0}. apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password",تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور @@ -2309,7 +2368,6 @@ DocType: List Filter,List Filter,تصفية القائمة DocType: Workflow State,signal,إشارة apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,يحتوي على مرفقات DocType: DocType,Show Print First,إظهار الطباعة أوﻻ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,الإعداد> المستخدم apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},إنشاء {0} جديد apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,حساب بريد إلكتروني جديد apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,تمت استعادة المستند @@ -2335,7 +2393,7 @@ DocType: Web Form,Web Form Fields,الحقول نموذج ويب DocType: Website Theme,Top Bar Text Color,أعلى شريط لون الخط DocType: Auto Repeat,Amended From,معدل من apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},تحذير: غير قادر على العثور على {0} في أي جدول المتعلقة {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,هذه الوثيقة في قائمة الانتظار حاليا لتنفيذها. حاول مرة اخرى +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,هذه الوثيقة في قائمة الانتظار حاليا لتنفيذها. حاول مرة اخرى apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,ملف '{0}' لم يتم العثور apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,إزالة القسم DocType: User,Change Password,تغيير كلمة المرور @@ -2345,19 +2403,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,مرحبا apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,إعدادات بوابة الدفع برينتري apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,يجب أن يكون نهاية الحدث بعد بداية apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,سيقوم هذا بتسجيل الخروج {0} من كافة الأجهزة الأخرى -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},لا تتوفر لديك الصلاحية بالحصول على تقرير من : {0} -DocType: System Settings,Apply Strict User Permissions,تطبيق صلاحيات المستخدم الشديده +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},لا تتوفر لديك الصلاحية بالحصول على تقرير من : {0} +DocType: System Settings,Apply Strict User Permissions,تطبيق صلاحيات المستخدم المحدودة DocType: DocField,Allow Bulk Edit,السماح بتحرير الكل DocType: Blog Post,Blog Post,منشور المدونه -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,البحث المتقدم +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,البحث المتقدم apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,لا يسمح لك بعرض الرسالة الإخبارية. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"Level 0 is for document level permissions, \ higher levels for field level permissions.",المستوى 0 هو أذونات مستوى المستند، \ مستويات أعلى لأذونات مستوى المجال. apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,لا يمكن حفظ النموذج اثناء استيراد البيانات. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,فرز حسب DocType: Workflow,States,الدول DocType: Notification,Attach Print,إرفق طباعة -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},اسم المستخدم اقترح: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},اسم المستخدم اقترح: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,يوم ,Modules,وحدات برمجية apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,وضع أيقونات سطح المكتب @@ -2367,11 +2426,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,إلغاء DocType: Web Page,Sidebar and Comments,الشريط الجانبي وتعليقات apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",عند تعديل مستند بعد الغاء وحفظه ، وسوف تحصل على عدد جديد هو نسخة من الرقم القديم . -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",غير مسموح بإرفاق مستند {0} ، يرجى تمكين السماح بالطباعة لـ {0} في "إعدادات الطباعة" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,See the document at {0},انظر المستند على {0} DocType: Stripe Settings,Publishable Key,مفتاح قابل للنشر -apps/frappe/frappe/core/doctype/data_import/data_import.js +68,Start Import,بدء الاستيراد +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,بدء الاستيراد DocType: Workflow State,circle-arrow-left,دائرة السهم اليسار apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,مخبأ خادم رديس يست قيد التشغيل. الرجاء الاتصال بمسؤول / الدعم الفني apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,أنشئ سجل جديد @@ -2379,7 +2438,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching, DocType: Currency,Fraction,جزء DocType: LDAP Settings,LDAP First Name Field,LDAP الاسم الميدان apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,من أجل الإنشاء التلقائي للمستند المتكرر للمتابعة. -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,اختر من القائمة إرفاق ملفات +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,اختر من القائمة إرفاق ملفات DocType: Custom Field,Field Description,وصف الحقل apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,الأسم: لم تحدد عن طريق موجه 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"".",أدخل حقول القيمة الافتراضية (المفاتيح) والقيم. إذا قمت بإضافة قيم متعددة لحقل، سيتم اختيار أول واحد. يتم استخدام هذه الإعدادات الافتراضية أيضا لتعيين قواعد "تطابق" إذن. للاطلاع على قائمة الحقول، انتقل إلى "تخصيص النموذج". @@ -2399,6 +2458,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,احصل على البنود DocType: Contact,Image,صورة DocType: Workflow State,remove-sign,إزالة التوقيع، +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,فشل الاتصال بالخادم apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,لا توجد بيانات ليتم تصديرها DocType: Domain Settings,Domains HTML,النطاقات هتمل apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,اكتب شيئا في مربع البحث للبحث @@ -2426,33 +2486,34 @@ DocType: Address,Address Line 2,العنوان سطر 2 DocType: Address,Reference,مرجع apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,كلف إلى DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,بيانات ترحيل بيانات التفاصيل -DocType: Email Flag Queue,Action,حدث +DocType: Data Import,Action,حدث DocType: GSuite Settings,Script URL,عنوان ورل للنص البرمجي -apps/frappe/frappe/www/update-password.html +119,Please enter the password,الرجاء إدخال كلمة المرور -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,لا يسمح لطباعة الوثائق الملغاة +apps/frappe/frappe/www/update-password.html +111,Please enter the password,الرجاء إدخال كلمة المرور +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,لا يسمح لطباعة الوثائق الملغاة apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,لا يسمح لك بأنشاء اعمدة DocType: Data Import,If you don't want to create any new records while updating the older records.,إذا كنت لا تريد إنشاء أي سجلات جديدة أثناء تحديث السجلات القديمة. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,معلومات: DocType: Custom Field,Permission Level,إذن المستوى DocType: User,Send Notifications for Transactions I Follow,إرسال الإشعارات عن المعاملات التي أتابعها -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة -DocType: Google Maps,Client Key,مفتاح العميل -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,هل أنت متأكد أنك تريد حذف المرفق؟ -apps/frappe/frappe/__init__.py +1097,Thank you,شكرا +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة +DocType: Google Maps Settings,Client Key,مفتاح العميل +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,هل أنت متأكد أنك تريد حذف المرفق؟ +apps/frappe/frappe/__init__.py +1178,Thank you,شكرا apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,حفظ DocType: Print Settings,Print Style Preview,معاينة قبل الطباعة ستايل apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,إختبار_المجلد apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,الرموز -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,لا يسمح لك بتحديث الوثيقة نموذج الويب هذه +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,لا يسمح لك بتحديث الوثيقة نموذج الويب هذه apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,رسائل البريد الإلكتروني apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,يرجى تحديد نوع الوثيقة أولا apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,يرجى تعيين عنوان ورل الأساسي في مفتاح تسجيل الدخول الاجتماعي لفراب DocType: About Us Settings,About Us Settings,إعدادات صفحة من نحن DocType: Website Settings,Website Theme,نسق الموقع +DocType: User,Api Access,الوصول إلى Api DocType: DocField,In List View,في عرض القائمة DocType: Email Account,Use TLS,استخدام TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,تسجيل الدخول أو كلمة المرور غير صالحة -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,تنزيل نموذج +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,تنزيل نموذج apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,إضافة جافا سكريبت الى (forms) ,Role Permissions Manager,مدير ضوابط الصلاحيات apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,اسم الشكل الجديد طباعة @@ -2471,7 +2532,6 @@ DocType: Website Settings,HTML Header & Robots,HTML الرأس والروبوت DocType: User Permission,User Permission,إذن المستخدم apps/frappe/frappe/config/website.py +32,Blog,مدونة apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,لم يتم تثبيت لداب -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,تحميل مع البيانات DocType: Workflow State,hand-right,ومن جهة اليمين DocType: Website Settings,Subdomain,مجال فرعي apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,إعدادات مزود أوث @@ -2483,6 +2543,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,معرف تسجيل الدخول إلى البريد الإلكتروني apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,تم إلغاء الدفعة ,Addresses And Contacts,العناوين و جهات الاتصال +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,يرجى تحديد نوع الوثيقة أولا. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,مسح سجلات سجلات الاخطاء apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,يرجى تحديد تصنيف apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,إعادة تعيين مكتب المدعي العام سر @@ -2491,19 +2552,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,منذ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,تصنيف تدوينات المدونة DocType: Workflow State,Time,الوقت DocType: DocField,Attach,إرفاق -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,إرسال ملاحظات طلب فقط إذا كان هناك اتصال واحد على الأقل متاح للوثيقة. DocType: Custom Role,Permission Rules,إذن قوانين DocType: Braintree Settings,Public Key,المفتاح العمومي DocType: GSuite Settings,GSuite Settings,إعدادات غسويت DocType: Address,Links,الروابط apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,الرجاء تحديد نوع المستند. -apps/frappe/frappe/model/base_document.py +396,Value missing for,قيمة مفقودة لـ +apps/frappe/frappe/model/base_document.py +405,Value missing for,قيمة مفقودة لـ apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,إضافة الطفل apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: لا يمكن حذف سجل مؤكد. DocType: GSuite Templates,Template Name,اسم القالب apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,نوع جديد من الوثيقة -DocType: Custom DocPerm,Read,قرأ +DocType: Communication,Read,قرأ DocType: Address,Chhattisgarh,تشهاتيسجاره DocType: Role Permission for Page and Report,Role Permission for Page and Report,إذن صلاحية الصفحة والتقرير apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,محاذاة القيمة @@ -2513,9 +2574,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,غرفة مباشرة مع {أوثر} موجودة بالفعل. DocType: Has Domain,Has Domain,لديه نطاق apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,إخفاء -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,ليس لديك حساب ؟ تسجيل الدخول +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,ليس لديك حساب ؟ تسجيل الدخول apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,لا يمكن إزالة معرف الحقل -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,{0} : لا يمكن تحديد تعيين بالتعديل إن لم يكن قابل للتأكيد +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,{0} : لا يمكن تحديد تعيين بالتعديل إن لم يكن قابل للتأكيد DocType: Address,Bihar,بيهار DocType: Activity Log,Link DocType,رابط DOCTYPE apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,ليست لديك أية رسائل حتى الآن. @@ -2530,14 +2591,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,وتظهر جداول الطفل بأنه في الشبكة DocTypes أخرى. DocType: Chat Room User,Chat Room User,دردشة غرفة المستخدم apps/frappe/frappe/model/workflow.py +38,Workflow State not set,لم يتم تعيين حالة سير العمل -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},رمز الخطأ: {0} +apps/frappe/frappe/www/404.html +23,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 +26,Error Code: {0},رمز الخطأ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",وصف لصفحة القائمة، في نص عادي، فقط بضعة أسطر. (حد أقصى 140 حرف) DocType: Workflow,Allow Self Approval,اسمح بالموافقة الذاتية apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,فلان الفلاني DocType: DocType,Name Case,اسم القضية apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,مشترك مع الجميع -apps/frappe/frappe/model/base_document.py +392,Data missing in table,البيانات الناقصة في الجدول +apps/frappe/frappe/model/base_document.py +401,Data missing in table,البيانات الناقصة في الجدول DocType: Web Form,Success URL,رابط النجاح DocType: Email Account,Append To,إلحاق ل apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,ارتفاع ثابت @@ -2558,31 +2619,32 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,ملف robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,عذراَ ! المشاركة مع عضو موقع محظور. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,إضافة كافة الأدوار +DocType: Website Theme,Bootstrap Theme,موضوع Bootstrap apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!","الرجاء إدخال كل من البريد الإلكتروني ورسالة حتى نتمكن \ يمكن أن نعود اليكم. شكر!" -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,شكرا لك على اهتمامك في الاشتراك في تحديثاتنا DocType: Braintree Settings,Payment Gateway Name,اسم بوابة الدفع -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,عمود مخصص +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,عمود مخصص DocType: Workflow State,resize-full,تغيير حجم كامل DocType: Workflow State,off,بعيدا apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,استعادة -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,تقرير غير مفعلة {0} +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,تقرير غير مفعلة {0} DocType: Activity Log,Core,جوهر apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,تعيين أذونات DocType: DocField,Set non-standard precision for a Float or Currency field,تعيين الدقة غير القياسية لحقل تعويم أو العملات DocType: Email Account,Ignore attachments over this size,تجاهل إرفاق ملفات أكثر من هذا الحجم DocType: Address,Preferred Billing Address,عنوان الفواتير المفضل apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,حالة سير العمل {0} غير مسموح بها -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,الكثير من يكتب في طلب واحد . يرجى إرسال طلبات أصغر +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,الكثير من يكتب في طلب واحد . يرجى إرسال طلبات أصغر apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,القيم التي تم تغييرها DocType: Workflow State,arrow-up,سهم لأعلى DocType: OAuth Bearer Token,Expires In,ينتهي في DocType: DocField,Allow on Submit,السماح بالإعتماد DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,نوع الاستثناء -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,اختيار الأعمدة +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,اختيار الأعمدة DocType: Web Page,Add code as <script>,إضافة التعليمات البرمجية كما <script> DocType: Webhook,Headers,الترويسات apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,الرجاء إدخال قيم التطبيقات مفتاح الوصول والتطبيقات سر مفتاح @@ -2601,6 +2663,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,ليست هناك جلسات نشطة DocType: Top Bar Item,Right,حق DocType: User,User Type,نوع المستخدم +DocType: Prepared Report,Ref Report DocType,المرجع تقرير DocType apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,انقر الجدول لتعديل DocType: GCalendar Settings,Client ID,معرف العميل DocType: Async Task,Reference Doc,إشارة الوثيقة @@ -2619,18 +2682,18 @@ DocType: Workflow State,Edit,تحرير apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,يمكن أن تدار عن طريق إعداد أذونات & GT. مدير ضوابط الصلاحيات DocType: Website Settings,Chat Operators,مشغلي الدردشة DocType: Contact Us Settings,Pincode,الرقم السري -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,يرجى التأكد من أنه لا توجد أعمدة فارغة في الملف. +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,يرجى التأكد من أنه لا توجد أعمدة فارغة في الملف. apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,يرجى التأكد من أن التعريف الخاص بك لديه عنوان البريد الإلكتروني apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,لديك تغييرات لم يتم حفظها في هذا النموذج، يرجى حفظها اولا قبل الاستمرار DocType: Address,Telangana,تيلانجانا -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,الافتراضي ل{0} يجب أن يكون خيارا +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,الافتراضي ل{0} يجب أن يكون خيارا DocType: Tag Doc Category,Tag Doc Category,العلامة دوك الفئة DocType: User,User Image,صورة المستخدم -apps/frappe/frappe/email/queue.py +338,Emails are muted,رسائل البريد الإلكتروني هي صامتة +apps/frappe/frappe/email/queue.py +341,Emails are muted,رسائل البريد الإلكتروني هي صامتة apps/frappe/frappe/config/integrations.py +88,Google Services,خدمات جوجل apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,CTRL + Up DocType: Website Theme,Heading Style,نمط الترويسة -apps/frappe/frappe/utils/data.py +625,1 weeks ago,منذ اسبوع +apps/frappe/frappe/utils/data.py +627,1 weeks ago,منذ اسبوع DocType: Communication,Error,خطأ DocType: Auto Repeat,End Date,نهاية التاريخ DocType: Data Import,Ignore encoding errors,تجاهل أخطاء الترميز @@ -2638,6 +2701,7 @@ DocType: Chat Profile,Notifications,إخطارات DocType: DocField,Column Break,فاصل عمودي DocType: Event,Thursday,الخميس apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,لا تتوفر لديك الصلاحية للوصول الى هذا الملف +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,حفظ سر API: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},لا يمكن ربط وثيقة إلغاء: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,لا يمكنك التعديل على التقارير القياسية. يرجى نسخ التقريرالقياسي و التعديل على النسخة الجديدة apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","الشركة اجباري , لعنوان شركتك" @@ -2654,9 +2718,9 @@ DocType: Custom Field,Label Help,التسمية تعليمات DocType: Workflow State,star-empty,النجوم فارغة apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,التواريخ غالبا ما تكون سهلة التخمين. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,الإجراءات التالية -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it",لا يمكن تحرير الإشعار القياسي. للتعديل ، يرجى تعطيله وتكراره +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it",لا يمكن تحرير الإشعار القياسي. للتعديل ، يرجى تعطيله وتكراره DocType: Workflow State,ok,حسنا -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,إرسال مراجعة +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,إرسال مراجعة DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,وسيتم تحديث هذه القيم تلقائيا في المعاملات وأيضا سوف تكون مفيدة لتقييد الأذونات لهذا المستخدم على المعاملات التي تحتوي على هذه القيم. apps/frappe/frappe/twofactor.py +312,Verfication Code,رمز التحقق apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,لتوليد المتكررة @@ -2674,12 +2738,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,إعادة تع apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,يرجى الترقية إلى إضافة المزيد من {0} المشتركين DocType: Workflow State,hand-left,اليد اليسرى DocType: Data Import,If you are updating/overwriting already created records.,إذا كنت تقوم بتحديث / الكتابة فوق السجلات التي تم إنشاؤها بالفعل. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ل {1} لا يمكن أن تكون فريدة من نوعها +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ل {1} لا يمكن أن تكون فريدة من نوعها apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,هو عالمي DocType: Email Account,Use SSL,استخدام SSL DocType: Workflow State,play-circle,لعب دائرة apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",تعبير "under_on" غير صالح -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,أسم المجموعة +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,أسم المجموعة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,حدد تنسيق طباعة إلى تحرير DocType: Address,Shipping,الشحن DocType: Workflow State,circle-arrow-down,دائرة السهم لأسفل @@ -2697,23 +2761,23 @@ DocType: SMS Settings,SMS Settings,SMS إعدادات DocType: Company History,Highlight,Highlight DocType: OAuth Provider Settings,Force,فرض DocType: DocField,Fold,طية +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,تصاعدي apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,لا يمكن تحديث تنسيق الطباعة القياسية apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,يغيب -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,يرجى تحديد +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,يرجى تحديد DocType: Communication,Bot,آلي DocType: Help Article,Help Article,مقالة مساعدة DocType: Page,Page Name,اسم الصفحة apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,مساعدة: خصائص الحقل apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},إضافة حقل العملة التابعة {0} apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,فك الضغط -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},قيمة غير صحيحة في الصف {0} : {1} يجب أن يكون {2} {3} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

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

" -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},الوثيقة المسجلة لا يمكن تحويلها إلى مسودة row {0} +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},قيمة غير صحيحة في الصف {0} : {1} يجب أن يكون {2} {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},الوثيقة المسجلة لا يمكن تحويلها إلى مسودة row {0} apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,تكوين تكامل تقويم جوجل الخاص بك -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},حذف {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},حذف {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,تحديد شكل القائمة لتعديل أو اضافة شكل جديد. DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,تجاوز عنوان IP المحظور التحقق في حالة تمكين عامل عامل -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},إنشاء الحقل المخصص {0} في {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},إنشاء الحقل المخصص {0} في {1} DocType: System Settings,Time Zone,منطقة زمنية apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,لا يسمح أحرف خاصة DocType: Communication,Relinked,إعادة ربط @@ -2729,7 +2793,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",حقل "الطريق" إلزامي للويب المشاهدات +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"Field ""route"" is mandatory for Web Views",حقل "الطريق" إلزامي للويب المشاهدات apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +205,Insert Column Before {0},إدراج عمود قبل {0} DocType: Email Account,Add Signature,إضافة التوقيع apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,تركت هذه المحادثة @@ -2739,9 +2803,9 @@ DocType: DocField,No Copy,اي نسخة DocType: Workflow State,qrcode,qrcode DocType: Chat Token,IP Address,عنوان IP DocType: Data Import,Submit after importing,إرسال بعد الاستيراد -apps/frappe/frappe/www/login.html +32,Login with LDAP,تسجيل الدخول مع LDAP +apps/frappe/frappe/www/login.html +33,Login with LDAP,تسجيل الدخول مع LDAP DocType: Web Form,Breadcrumbs,فتات الخبز -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,إذا المالك +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,إذا المالك DocType: Data Migration Mapping,Push,إدفع DocType: OAuth Authorization Code,Expiration time,وقت انتهاء الصلاحية DocType: Web Page,Website Sidebar,الشريط الجانبي الموقع @@ -2752,12 +2816,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} ب apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,جميع الأحرف الكبيرة تكون سهلة التخمين تقريبا كالأحرف الصغيرة DocType: Feedback Trigger,Email Fieldname,البريد الإلكتروني FIELDNAME DocType: Website Settings,Top Bar Items,قطع الشريط العلوي -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","تعريف البريد الألكتروني يجب ان يكون فريد , حساب البريد الألكتروني موجد من قبل / لـ {0}" DocType: Notification,Print Settings,إعدادات الطباعة DocType: Page,Yes,نعم DocType: DocType,Max Attachments,الحد الأقصى للمرفقات -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,مفتاح العميل مطلوب +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,مفتاح العميل مطلوب DocType: Calendar View,End Date Field,حقل تاريخ الانتهاء DocType: Desktop Icon,Page,صفحة apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},لا يمكن أن تجد {0} في {1} @@ -2766,21 +2828,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,قاعدة المعرف DocType: Workflow State,briefcase,حقيبة apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},لا يمكن تغير القيمة ل {0} DocType: Feedback Request,Is Manual,هو دليل -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},الرجاء جد {0} # {1} المرفقه +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},الرجاء جد {0} # {1} المرفقه DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",النمط يمثل لون الزر: النجاح - الخضراء، خطر -، معكوس الأحمر - الأسود، الابتدائية - أزرق داكن، معلومات - أزرق فاتح، تحذير - أورانج apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,حالة الصف DocType: Workflow Transition,Workflow Transition,الانتقال سير العمل apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,قبل {0} أشهر apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,منشئه بواسطه -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,إعداد دروببوإكس +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,إعداد دروببوإكس DocType: Workflow State,resize-horizontal,تغيير حجم الأفقي، DocType: Chat Message,Content,محتوى DocType: Data Migration Run,Push Insert,اضغط إدراج apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,عقدة المجموعة DocType: Communication,Notification,إعلام DocType: DocType,Document,وثيقة -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},الترقيم المتسلسل {0} مستخدم بالفعل في {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,تنسيق ملف غير معتمد +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},الترقيم المتسلسل {0} مستخدم بالفعل في {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,تنسيق ملف غير معتمد DocType: DocField,Code,رمز DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","جميع حالات سير العمل الممكنة وأدوار سير العمل. خيارات Docstatus: 0 هو ""محفوظ"" (1)، هو ""مقدم"" و 2 هو ""ألغي""" DocType: Website Theme,Footer Text Color,تذييل لون الخط @@ -2791,13 +2853,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,أوراق بوابة الدفع غير صالحة DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,هذا هو ملف القالب ولدت مع الصفوف فقط وجود بعض الأخطاء. يجب استخدام هذا الملف للتصحيح والاستيراد. apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,مجموعة ضوابط على أنواع المستندات والصلاحيات -apps/frappe/frappe/model/meta.py +160,No Label,بدون علامة +DocType: Data Migration Run,Remote ID,معرف عن بعد +apps/frappe/frappe/model/meta.py +205,No Label,بدون علامة +DocType: System Settings,Use socketio to upload file,استخدم socketio لتحميل الملف apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,فهرسة مكسورة apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,منعش apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,استئنف apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,عدل من قبل DocType: Address,Tripura,تريبورا DocType: About Us Settings,"""Company History""","""نبذة عن الشركة""" +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,تم تعديل هذا المستند بعد إرسال البريد الإلكتروني. +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,عرض تقرير DocType: Address,Tamil Nadu,تاميل نادو DocType: Email Rule,Email Rule,البريد الإلكتروني القاعدة apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document",لإيقاف إرسال إشعارات الأخطاء المتكررة من النظام ، قمنا بتحديد حقل Disabled (تعطيل) في وثيقة Auto Repeat @@ -2811,7 +2877,7 @@ DocType: Notification,Send alert if this field's value changes,إرسال تنب apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,أختر DocType لتنشئ شكل جديد apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,لم يتم تحديد "المستلمين" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,الآن فقط -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,تطبيق +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,تطبيق DocType: Footer Item,Policy,سياسة apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} إعدادات لم يتم العثور DocType: Module Def,Module Def,تعريف وحدة برمجية @@ -2825,7 +2891,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,ب DocType: Print Settings,Allow page break inside tables,السماح بفواصل الصفحات داخل الجداول DocType: Email Account,SMTP Server,SMTP خادم DocType: Print Format,Print Format Help,تنسيق الطباعة مساعدة -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,مع المجموعات +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,مع المجموعات DocType: DocType,Beta,بيتا apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,حدد خيارات الرمز لجميع المستخدمين. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},استعادة {0} ك {1} @@ -2834,8 +2900,9 @@ DocType: DocField,Translatable,للترجمة DocType: Event,Every Month,كل شهر DocType: Letter Head,Letter Head in HTML,ترئيس الرسالة كصيغة HTML DocType: Web Form,Web Form,نموذج ويب +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},يجب أن يكون التاريخ {0} بالشكل: {1} DocType: About Us Settings,Org History Heading,عنوان تاريخ المنظمة -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,آسف. لقد وصلت إلى حد المستخدم الحد الأقصى للاكتتاب الخاص بك. يمكنك إما تعطيل مستخدم موجود أو شراء خطة الاشتراك أعلى. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,آسف. لقد وصلت إلى حد المستخدم الحد الأقصى للاكتتاب الخاص بك. يمكنك إما تعطيل مستخدم موجود أو شراء خطة الاشتراك أعلى. DocType: Print Settings,Allow Print for Cancelled,السماح بالطباعة للملغيات DocType: Communication,Integrations can use this field to set email delivery status,يمكن التكامل استخدام هذا الحقل لتغيير الحالة تسليم البريد الإلكتروني DocType: Web Form,Web Page Link Text,نص رابط صفحة الانترنت @@ -2848,13 +2915,12 @@ DocType: GSuite Settings,Allow GSuite access,السماح بالدخول إلى DocType: DocType,DESC,تنازلي DocType: DocType,Naming,التسمية DocType: Event,Every Year,كل سنة -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,تحديد الكل +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,تحديد الكل apps/frappe/frappe/config/setup.py +247,Custom Translations,ترجمة مخصصة apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,تقدم apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,حسب الصلاحية apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,حقول مفقودة -apps/frappe/frappe/email/smtp.py +188,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب البريد الإلكتروني لا الإعداد. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,FIELDNAME غير صالح '{0}' في autoname +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,FIELDNAME غير صالح '{0}' في autoname apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,بحث في نوع الوثيقة apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,السماح للحقل بان يبقى قابل للتعديل حتى بعد الارسال DocType: Custom DocPerm,Role and Level,مستوى الصلاحية @@ -2863,14 +2929,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,تقارير مخصصة DocType: Website Script,Website Script,نص الموقع البرمجي DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,إذا كنت لا تستخدم نشر ويباب سكريبت غوغل أبس، فيمكنك استخدام https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec الافتراضية apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,قوالب HTML مخصصة لطباعة المعاملات -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,توجيه +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,توجيه DocType: Workflow,Is Active,نشط -apps/frappe/frappe/desk/form/utils.py +111,No further records,لا توجد سجلات أخرى +apps/frappe/frappe/desk/form/utils.py +114,No further records,لا توجد سجلات أخرى DocType: DocField,Long Text,نص طويل DocType: Workflow State,Primary,أساسي -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},من فضلك لا تغيير الصفوف أعلاه {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},من فضلك لا تغيير الصفوف أعلاه {0} DocType: Web Form,Go to this URL after completing the form (only for Guest users),انتقل إلى عنوان ورل هذا بعد إكمال النموذج (فقط لمستخدمي الضيف) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(كنترول + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(كنترول + G) DocType: Contact,More Information,المزيد من المعلومات DocType: Data Migration Mapping,Field Maps,خرائط ميدانية DocType: Desktop Icon,Desktop Icon,أيقونة سطح المكتب @@ -2891,13 +2957,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,إعدادات الشريط DocType: Data Migration Mapping,Data Migration Mapping,ترحيل بيانات التعيين apps/frappe/frappe/www/login.py +89,Invalid Login Token,صالح رمز الدخول -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,تجاهل +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,تجاهل apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,منذ 1 ساعة DocType: Website Settings,Home Page,الصفحة الرئيسية DocType: Error Snapshot,Parent Error Snapshot,الأم قطة خطأ -DocType: Kanban Board,Filters,فلاتر +DocType: Prepared Report,Filters,فلاتر DocType: Workflow State,share-alt,حصة بديل -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},يجب أن تكون قائمة الانتظار واحدة من {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},يجب أن تكون قائمة الانتظار واحدة من {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2927,13 +2993,13 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,تقارير النصي أو سؤال
 DocType: Workflow Document State,Workflow Document State,سير العمل الوثيقة الدولة
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,الملف كبير جدا
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,حساب البريد الألكتروني اضيف مرات كثيرة
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,حساب البريد الألكتروني اضيف مرات كثيرة
 DocType: Payment Gateway,Payment Gateway,بوابة الدفع
 DocType: Portal Settings,Hide Standard Menu,إخفاء القائمة القياسية
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,إضافة / إدارة مجالات البريد الإلكتروني.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},"لا يمكن إلغاء قبل تسجيل .
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},"لا يمكن إلغاء قبل تسجيل .
 {0}"
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,تنسيق الطباعة {0} تم تعطيل
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,تنسيق الطباعة {0} تم تعطيل
 ,Address and Contacts,عناوين واتصالات
 DocType: Notification,Send days before or after the reference date,إرسال أيام قبل أو بعد التاريخ المرجعي
 DocType: User,Allow user to login only after this hour (0-24),تسمح للمستخدم لتسجيل الدخول فقط بعد هذه الساعة (0-24)
@@ -2943,7 +3009,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,بدائل يمكن التنبؤ بها مثل '@' بدلا من '' لا يساعد كثيرا جدا.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,يسندها عني
 apps/frappe/frappe/utils/data.py +528,Zero,صفر
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"ليس في وضع المطور! يقع في site_config.json أو جعل DOCTYPE ""مخصص""."
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"ليس في وضع المطور! يقع في site_config.json أو جعل DOCTYPE ""مخصص""."
 DocType: Workflow State,globe,العالم
 DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,إخفاء الحقل في تنسيق الطباعة القياسي
@@ -2956,19 +3022,21 @@ DocType: DocType,Allow Import (via Data Import Tool),السماح بالاستي
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,ريال سعودى
 DocType: DocField,Float,رقم عشري
 DocType: Print Settings,Page Settings,إعدادات الصفحة
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,إنقاذ...
 DocType: Auto Repeat,Submit on creation,إرسال على خلق
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,رمز مرور خاطئ
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,رمز مرور خاطئ
 DocType: Contact,Purchase Master Manager,المدير الرئيسي للشراء
 DocType: Module Def,Module Name,اسم وحدة
 DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE هو الجدول / نموذج في التطبيق.
 DocType: Social Login Key,Authorize URL,مصادقة عنوان ورل
 DocType: Email Account,GMail,بريد جوجل
 DocType: Address,Party GSTIN,حزب غستين
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} تقرير
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} تقرير
 DocType: SMS Settings,Use POST,استخدام بوست
 DocType: Communication,SMS,رسالة قصيرة
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,جلب الصور
 DocType: DocType,Web View,عرض ويب
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,تحذير: هذا تنسيق الطباعة في النمط القديم، ولا يمكن أن تتولد عن طريق API.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,تحذير: هذا تنسيق الطباعة في النمط القديم، ولا يمكن أن تتولد عن طريق API.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,المجاميع
 DocType: DocField,Print Width,طباعة العرض
 ,Setup Wizard,معالج الإعدادات
@@ -2977,6 +3045,7 @@ DocType: Chat Message,Visitor,زائر
 DocType: User,Allow user to login only before this hour (0-24),تسمح للمستخدم لتسجيل الدخول فقط قبل هذه الساعة (0-24)
 DocType: Social Login Key,Access Token URL,رابط رمز الدخول
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,المجلد إلزامي
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} تعيين {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,رسالة جديدة من موقع الاتصال الصفحة
 DocType: Notification,Reference Date,المرجع تاريخ
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,الرجاء إدخال أرقام جوال صالحة
@@ -3003,21 +3072,22 @@ DocType: DocField,Small Text,نص صغير
 DocType: Workflow,Allow approval for creator of the document,السماح بالموافقة على منشئ المستند
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,نقطة وصول API Args
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,.{2} المسؤول ولج  {0} بتاريخ {1} عبر العنوان
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,.{2} المسؤول ولج  {0} بتاريخ {1} عبر العنوان
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,تساوي
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"'الارتباط الحيوي ""نوع من الخيارات الميدانية يجب أن يشير إلى رابط حقل آخر مع خيارات باسم' DOCTYPE '"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"'الارتباط الحيوي ""نوع من الخيارات الميدانية يجب أن يشير إلى رابط حقل آخر مع خيارات باسم' DOCTYPE '"
 DocType: About Us Settings,Team Members Heading,عنوان أعضاء الفريق
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,تنسيق CSV غير صالح
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,تعيين عدد من النسخ الاحتياطية
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,يرجى تصحيح
 DocType: DocField,Do not allow user to change after set the first time,لا تسمح للمستخدم لتغيير بعد تعيين أول مرة
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,الخاصة أو العامة؟
-apps/frappe/frappe/utils/data.py +633,1 year ago,منذ سنة
+apps/frappe/frappe/utils/data.py +635,1 year ago,منذ سنة
 DocType: Contact,Contact,اتصل
 DocType: User,Third Party Authentication,مصادقة طرف ثالث
 DocType: Website Settings,Banner is above the Top Menu Bar.,راية فوق أعلى شريط القوائم.
-DocType: Razorpay Settings,API Secret,كلمة مرور API
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,تقرير التصدير:
+DocType: User,API Secret,كلمة مرور API
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} التقويم
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,تقرير التصدير:
 DocType: Data Migration Run,Push Update,دفع التحديث
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,في وثيقة Auto Repeat
 DocType: Email Account,Port,ميناء
@@ -3028,7 +3098,7 @@ DocType: Website Slideshow,Slideshow like display for the website,عرض الش
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,إخطارات الإعداد على أساس معايير مختلفة.
 DocType: Communication,Updated,تحديث
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,اختر وحدة
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,البحث أو إنشاء دردشة جديدة
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,البحث أو إنشاء دردشة جديدة
 apps/frappe/frappe/sessions.py +29,Cache Cleared,تحديث الصفحة
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,بريد إلكتروني جديد
@@ -3044,7 +3114,7 @@ DocType: Print Settings,PDF Settings,إعدادات PDF
 DocType: Kanban Board Column,Column Name,اسم العمود
 DocType: Language,Based On,وبناء على
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,تعيين كإفتراضي
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ل {1} لا يمكن فهرستها
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ل {1} لا يمكن فهرستها
 DocType: Communication,Email Account,حساب البريد الإلكتروني
 DocType: Workflow State,Download,تحميل
 DocType: Blog Post,Blog Intro,بدايه المدونه
@@ -3058,7 +3128,7 @@ DocType: Web Page,Insert Code,إدراج كود
 DocType: Data Migration Run,Current Mapping Type,نوع التعيين الحالي
 DocType: ToDo,Low,منخفض
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,يمكنك إضافة خصائص ديناميكية من المستند باستخدام Jinja templating .
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},حد غير صالح {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},حد غير صالح {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,قائمة نوع مستند
 DocType: Event,Ref Type,المرجع نوع
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","إذا كنت تحميل سجلات جديدة، وترك ""اسم"" (ID) العمود فارغا."
@@ -3080,21 +3150,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,
 DocType: Print Settings,Send Print as PDF,PDF إرسال طباعة بصيغة
 DocType: Web Form,Amount,كمية
 DocType: Workflow Transition,Allowed,سمح
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,يمكن أن يكون هناك واحد فقط طية في شكل
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,يمكن أن يكون هناك واحد فقط طية في شكل
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},تعذر كتابة تنسيق الملف {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,استعادة الإعدادات الافتراضية؟
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,الصفحة الرئيسية غير صالحة
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,تسجيل الدخول غير صالح. حاول ثانية.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},الخيارات المطلوبة للارتباط أو حقل نوع الجدول {0} في الصف {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},الخيارات المطلوبة للارتباط أو حقل نوع الجدول {0} في الصف {1}
 DocType: Auto Email Report,Send only if there is any data,إرسال فقط إذا كان هناك أي بيانات
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,إعادة تعيين المرشحات
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,إعادة تعيين المرشحات
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},احالة مغلقة من قبل {0}
 DocType: Integration Request,Remote,عن بعد
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,إحسب
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,يرجى تحديد DOCTYPE أولا
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,تأكيد البريد الإلكتروني الخاص بك
-apps/frappe/frappe/www/login.html +40,Or login with,أو الدخول مع
+apps/frappe/frappe/www/login.html +41,Or login with,أو الدخول مع
 DocType: Error Snapshot,Locals,السكان المحليين
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ترسل عن طريق {0} على {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} المذكور لكم في تعليق في {1}
@@ -3104,23 +3174,24 @@ DocType: Integration Request,Integration Type,نوع التكامل
 DocType: Newsletter,Send Attachements,إرسال المرفقات
 DocType: Transaction Log,Transaction Log,سجل المعاملات
 DocType: Contact Us Settings,City,مدينة
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,Ctrl + Enter للإرسال
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,Ctrl + Enter للإرسال
 DocType: DocField,Perm Level,بيرم المستوى
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,عرض المستند
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,الأحداث في التقويم اليوم
 DocType: Web Page,Web Page,صفحة على الإنترنت
 DocType: Workflow Document State,Next Action Email Template,التالي عمل قالب البريد الإلكتروني
 DocType: Blog Category,Blogger,مدون
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},"""في البحث العام"" غير مسموح للنوع {0} في الصف {1}"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},"""في البحث العام"" غير مسموح للنوع {0} في الصف {1}"
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,عرض القائمة
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},يجب ان يكون التاريخ بهذا التنسيق: {0}
 DocType: Workflow,Don't Override Status,لا تجاوز الحالة
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,يرجى إعطاء تقدير.
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} طلب ملاحظات
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,مصطلح البحث
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,المستخدم الأول : أنت
 DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
+DocType: Prepared Report,Report Start Time,تقرير وقت البدء
 apps/frappe/frappe/config/setup.py +112,Export Data,تصدير البيانات
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,تحديد الأعمدة
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,تحديد الأعمدة
 DocType: Translation,Source Text,النص المصدر
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,المعلمات المفقودة لتسجيل الدخول
 DocType: Workflow State,folder-open,فتح مجلد
@@ -3133,7 +3204,7 @@ DocType: Property Setter,Set Value,تعيين القيمة
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,إخفاء الحقل في النموذج
 DocType: Webhook,Webhook Data,بيانات ويبهوك
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},إنشاء {0}
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,وصول رمز غير قانوني. حاول مرة اخرى
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,وصول رمز غير قانوني. حاول مرة اخرى
 apps/frappe/frappe/public/js/frappe/desk.js +92,"The application has been updated to a new version, please refresh this page",تم تحديث التطبيق إلى الإصدار الجديد، يرجى تحديث هذه الصفحة
 apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,إعادة إرسال
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,اختياري: سيتم إرسال التنبية إذا كان هذا التعبير صحيح
@@ -3147,8 +3218,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,مستوى
 DocType: Custom DocPerm,Report,تقرير
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,يجب أن تكون كمية أكبر من 0.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} تم حفظها
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,المستخدم {0} لا يمكن إعادة تسمية
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} تم حفظها
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,المستخدم {0} لا يمكن إعادة تسمية
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),يقتصر أسم الحقل إلى 64 حرفا ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,البريد الإلكتروني قائمة المجموعة
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],ملف أيقونة بصيغة ico.  يجب أن تكون 16 × 16 بكسل. تم إنشاؤها باستخدام مولد أيقونات. [favicon-generator.org]
@@ -3161,23 +3232,22 @@ DocType: Website Theme,Background,خلفية
 DocType: Report,Ref DocType,المرجع DOCTYPE
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,الرجاء إدخال معرف العميل قبل تمكين تسجيل الدخول الاجتماعي
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,الرجاء إضافة تقييم
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0} : لا يمكن تعيين تعدل دون الغاء
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{0}: Cannot set Amend without Cancel,{0} : لا يمكن تعيين تعدل دون الغاء
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,صفحة كاملة
 DocType: DocType,Is Child Table,هو الجدول التابع
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} سنة (s) مضت
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} يجب أن يكون واحدا من {1}
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} يجب أن يكون واحدا من {1}
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} يستعرض حالياً هذا المستند
 apps/frappe/frappe/config/core.py +52,Background Email Queue,قائمة معالجة البريد الإلكتروني
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,إعادة تعيين كلمة المرور
 DocType: Communication,Opened,افتتح
 DocType: Workflow State,chevron-left,شيفرون يسار
 DocType: Communication,Sending,إرسال
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,لا يسمح من هذا العنوان IP
+apps/frappe/frappe/auth.py +272,Not allowed from this IP Address,لا يسمح من هذا العنوان IP
 DocType: Website Slideshow,This goes above the slideshow.,هذا يذهب فوق عرض الشرائح.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,تثبيت التطبيقات .
 DocType: Contact,Last Name,اسم العائلة
 DocType: Event,Private,خاص
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,لا تنبيهات لهذا اليوم
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,لا تنبيهات لهذا اليوم
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),إرسال البريد الإلكتروني المرفقات طباعة بصيغة PDF (مستحسن)
 DocType: Web Page,Left,ترك
 DocType: Event,All Day,كل يوم
@@ -3188,10 +3258,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",صورة المي
 apps/frappe/frappe/utils/bot.py +43,I found these: ,لقد وجدت هذه:
 DocType: Event,Send an email reminder in the morning,إرسال رسالة تذكير في الصباح
 DocType: Blog Post,Published On,نشرت في
-apps/frappe/frappe/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. الرجاء إنشاء واحدة جديدة من الإعداد> الطباعة والعلامة التجارية> قالب العنوان.
 DocType: Contact,Gender,جنس
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,معلومات إلزامية مفقود:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,الحقل '{0}' لا يمكن تعيينه فريد من نوعه، كما أن لديها قيمة غير فريدة
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,معلومات إلزامية مفقود:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,الحقل '{0}' لا يمكن تعيينه فريد من نوعه، كما أن لديها قيمة غير فريدة
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,تحقق من عنوان الرابط المطلوب
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,فقط 200 إدراج سمحت في طلب واحد
 DocType: Footer Item,URL,رابط الانترنت
@@ -3207,12 +3276,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,شجرة
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,لا يسمح لك بطباعة هذا التقرير
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,ضوابط المستخدم
 DocType: Workflow State,warning-sign,علامة إنذار
+DocType: Prepared Report,Prepared Report,أعد التقرير
 DocType: Workflow State,User,مستخدم
 DocType: Website Settings,"Show title in browser window as ""Prefix - title""","اظهار العنوان في نافذة المتصفح كما ""بادئة - عنوان"""
 DocType: Payment Gateway,Gateway Settings,إعدادات البوابة
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,النص في نوع الوثيقة
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,تشغيل الاختبارات
-apps/frappe/frappe/handler.py +94,Logged Out,تسجيل الخروج
+apps/frappe/frappe/handler.py +95,Logged Out,تسجيل الخروج
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,المزيد...
 DocType: System Settings,User can login using Email id or Mobile number,يمكن للمستخدم تسجيل الدخول باستخدام معرف البريد الإلكتروني أو رقم الجوال
 DocType: Bulk Update,Update Value,تحديث القيمة
@@ -3220,12 +3290,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,يرجى تحديد اسم جديد لإعادة التسمية
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,عمود غير صالح
 DocType: Data Migration Connector,Data Migration,ترحيل البيانات
+DocType: User,API Key cannot be  regenerated,لا يمكن إعادة إنشاء مفتاح واجهة برمجة التطبيقات
 apps/frappe/frappe/public/js/frappe/request.js +167,Something went wrong,حدث خطأ ما
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,تم عرض الإدخالات {0} فقط. يرجى التصفية للحصول على نتائج أكثر تحديدا.
 DocType: System Settings,Number Format,عدد تنسيق
 DocType: Auto Repeat,Frequency,تردد
 DocType: Custom Field,Insert After,إدراج بعد
-DocType: Report,Report Name,تقرير الاسم
+DocType: Prepared Report,Report Name,تقرير الاسم
 DocType: Desktop Icon,Reverse Icon Color,عكس دلالات اللون
 DocType: Notification,Save,حفظ
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,التاريخ المجدول التالي
@@ -3238,13 +3309,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,الافتراضي
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} أضيف
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',البحث عن '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,يرجى حفظ التقرير الأول
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,يرجى حفظ التقرير الأول
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0}  مشتركين تم اضافتهم
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,ليس في
 DocType: Workflow State,star,نجم
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,محور
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,قيم مفصولة بفواصل
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,Max width for type Currency is 100px in row {0},عرض ماكس لنوع العملة هو 100px في الصف {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +281,values separated by commas,قيم مفصولة بفواصل
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Max width for type Currency is 100px in row {0},عرض ماكس لنوع العملة هو 100px في الصف {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},يرجى حصة ملاحظاتك عن {0}
 apps/frappe/frappe/config/website.py +13,Content web page.,محتوى الويب الصفحة.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,إضافة دور جديد
@@ -3257,15 +3328,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,سيتم تصفية السجلات الخاصة بالمجموعات التالية
 DocType: Blog Settings,Blog Introduction,مقدمة المدونه
 DocType: Address,Office,مكتب
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,وهذا المجلس كانبان يكون القطاع الخاص
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,وهذا المجلس كانبان يكون القطاع الخاص
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,تقارير قياسية
 DocType: User,Email Settings,إعدادات البريد الإلكتروني
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,يرجى إدخال كلمة المرور للمتابعة
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,يرجى إدخال كلمة المرور للمتابعة
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,لا أحد المستخدمين LDAP صحيح
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0}   ليست حالة صالحة
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0}   ليست حالة صالحة
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',يرجى تحديد طريقة دفع أخرى. باي بال لا تدعم المعاملات بالعملة '{0}'
 DocType: Chat Message,Room Type,نوع الغرفة
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,حقل البحث {0} غير صالح
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,حقل البحث {0} غير صالح
 DocType: Workflow State,ok-circle,دائرة OK-
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',يمكنك العثور على الأشياء عن طريق طلب 'find orange in customers'
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,آسف! وينبغي أن يكون المستخدم الوصول الكامل إلى سجل الخاصة بهم.
@@ -3281,21 +3352,21 @@ DocType: DocField,Unique,فريد من نوعه
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,نجاح جزئي
 DocType: Email Account,Service,خدمة
 DocType: File,File Name,اسم الملف
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),لم يتم العثور {0} لـ {0} ( {1} )
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),لم يتم العثور {0} لـ {0} ( {1} )
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that",عذرا، لا يسمح لك ان تعرف ذلك
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,التالي
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,لقد تم تسجيل بنجاح
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,لقد تم تسجيل بنجاح
 DocType: Calendar View,Calendar View,عرض التقويم
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,تحرير تنسيق
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,أكمال التسجيل
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,أكمال التسجيل
 DocType: GCalendar Settings,Enable,تمكين
-DocType: Google Maps,Home Address,عنوان المنزل
+DocType: Google Maps Settings,Home Address,عنوان المنزل
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),{0} جديد (Ctrl+B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,أعلى بار اللون ولون الخط هي نفسها. وينبغي أن يكون على النقيض من الجيد أن تكون قابلة للقراءة.
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),يمكنك تحميل فقط حتى 5000  دفعة واحدة. (قد يكون أقل في بعض الحالات)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},عدم كفاية الإذن {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),لم يتم حفظ التقرير (كانت هناك أخطاء)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,لا يمكن تغيير محتوى الرأس
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),لم يتم حفظ التقرير (كانت هناك أخطاء)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,لا يمكن تغيير محتوى الرأس
 DocType: Print Settings,Print Style,الطباعة ستايل
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,غير مرتبط بأي سجل
 DocType: Custom DocPerm,Import,استيراد
@@ -3325,9 +3396,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,يرجى تحديث للحصول على أحدث وثيقة.
 DocType: User,Security Settings,إعدادات الأمان
 DocType: Website Settings,Operators,العاملين
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,إضافة عمود
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,إضافة عمود
 ,Desktop,سطح المكتب
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},تصدير التقرير: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},تصدير التقرير: {0}
 DocType: Auto Email Report,Filter Meta,تصفية ميتا
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,النص ليتم عرضها لرابط صفحة الانترنت إذا هذا النموذج لديه صفحة على شبكة الإنترنت. الطريق للرابط سيتم تكوينه تلقائيا على أساس `` page_name` وparent_website_route`
 DocType: Feedback Request,Feedback Trigger,ردود الفعل الزناد
@@ -3354,6 +3425,6 @@ DocType: Bulk Update,Max 500 records at a time,500 سجل كحد أقصى في 
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",إذا كانت البيانات في HTML، يرجى نسخ لصق رمز HTML المحدد مع العلامات.
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,غير قادر على فتح الملف المرفق. هل تصديره كما CSV؟
 DocType: DocField,Ignore User Permissions,تجاهل أذونات المستخدم
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,الرجاء اطلب من المشرف التأكد من تسجيلك
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,الرجاء اطلب من المشرف التأكد من تسجيلك
 DocType: Domain Settings,Active Domains,المجالات النشطة
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,إظهار السجل
diff --git a/frappe/translations/bg.csv b/frappe/translations/bg.csv
index a26b829212..e40d8c5ca5 100644
--- a/frappe/translations/bg.csv
+++ b/frappe/translations/bg.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,"Моля, изберете сума Невярно."
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,"Натиснете Esc, за да затворите"
-apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, е определена за Вас от {1}. {2}"
+apps/frappe/frappe/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, е определена за Вас от {1}. {2}"
 DocType: Email Queue,Email Queue records.,Email Queue записи.
 DocType: Address,Punjab,Punjab
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,"Преименуване на много елементи, като качите .csv файл."
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,Уебсайт
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,"Трябва да сте влезли, за да получите достъп до тази страница"
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Забележка: няколко сесии ще бъдат разрешени в случай на мобилно устройство
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},Активирана поща за употреба {потребители}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},Активирана поща за употреба {потребители}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Не може да изпратите този имейл. Можете да са пресекли границата на изпращане {0} имейли за този месец.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,Постоянно изпращане {0}?
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Изтегляне на архивни файлове
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} Дърв
 DocType: User,User Emails,потребителски имейли
 DocType: User,Username,Потребителско име
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,Импортиране на Zip
-apps/frappe/frappe/model/base_document.py +554,Value too big,Стойността е твърде голяма
+apps/frappe/frappe/model/base_document.py +563,Value too big,Стойността е твърде голяма
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,Стартирайте теста на скрипта
 DocType: Data Import,Total Rows,Общо редове
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,Журнали
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,Необходимо е само днес да предприемем това действие за споменатото по-горе повтаряне
 DocType: Custom DocPerm,This role update User Permissions for a user,Тази актуализация роля потребителски разрешения за потребител
-apps/frappe/frappe/public/js/frappe/model/model.js +539,Rename {0},Преименуване на {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},Преименуване на {0}
 DocType: Workflow State,zoom-out,намали
 apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Не може да се отвори {0}, когато си например е отворен"
-apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,Таблица {0} не може да бъде празно
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,Таблица {0} не може да бъде празно
 DocType: SMS Parameter,Parameter,Параметър
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,С регистри
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,Документът е променен!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,С регистри
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,Снимки
 DocType: Activity Log,Reference Owner,Референтен Собственик
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ако е разрешено, потребителят може да влезе от всеки IP адрес с помощта на Two Factor Auth, което също може да бъде зададено за всички потребители в системните настройки"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Най-малък циркулиращ фракция единица (монета). Защото например 1 цент за щатски долари и тя трябва да бъде вписано като 0,01"
 DocType: Social Login Key,GitHub,GitHub
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, Ред {1}"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, Ред {1}"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Моля, дайте пълно име."
-apps/frappe/frappe/model/document.py +1057,Beginning with,Започващи с
+apps/frappe/frappe/model/document.py +1058,Beginning with,Започващи с
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Шаблон за импорт на данни
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Родител
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ако е разрешено, силата на паролата ще бъде наложена въз основа на стойността на минималния парола. Стойност 2 е средно силна и 4 е много силна."
 DocType: About Us Settings,"""Team Members"" or ""Management""","""Членове на екип"" или ""Управление"""
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',Default за "Проверка" тип на полето трябва да е или "0" или "1"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',Default за "Проверка" тип на полето трябва да е или "0" или "1"
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,Вчера
 DocType: Contact,Designation,Предназначение
 DocType: Test Runner,Test Runner,Изпълнител на тест
@@ -66,10 +65,11 @@ DocType: Auto Repeat,Monthly,Месечно
 DocType: Address,Uttarakhand,Uttarakhand
 DocType: Email Account,Enable Incoming,Активиране Incoming
 apps/frappe/frappe/core/doctype/version/version_view.html +47,Danger,Опасност
-apps/frappe/frappe/www/login.html +20,Email Address,Имейл Адрес
+apps/frappe/frappe/www/login.html +21,Email Address,Имейл Адрес
 DocType: Workflow State,th-large,TH-голяма
 DocType: Communication,Unread Notification Sent,Непрочетена изпратеното
 apps/frappe/frappe/public/js/frappe/misc/tools.js +10,Export not allowed. You need {0} role to export.,Износът не оставя. Трябва {0} роля за износ.
+DocType: System Settings,In seconds,В секунди
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,Отменете {0} документи?
 DocType: DocType,Is Published Field,Е публикувано поле
 DocType: GCalendar Settings,GCalendar Settings,Настройки в GCalendar
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,Email група
 DocType: Note,Seen By,Видяно от
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,Добави няколко
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,Не е валидно потребителско изображение.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Настройка> Потребител
 DocType: Success Action,First Success Message,Първото съобщение за успех
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,Не като
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Определете етикета на дисплея за областта
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},Неправилна стойност: {0} трябва да е {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},Неправилна стойност: {0} трябва да е {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","Промени свойства на поле (скрий, само за четене, разрешение и т.н.)"
 DocType: Workflow State,lock,заключен
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,"Настройки на ""Връзка с нас""."
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,Администраторът е логнат
+apps/frappe/frappe/core/doctype/user/user.py +917,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 +34,Add a tag ...,Добавете маркер ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},Нов {0} # {1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},Нов {0} # {1}
 DocType: Data Migration Run,Insert,Вмъкни
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Изберете {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,"Моля, въведете Основен URL адрес"
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,Типове документи
 DocType: Address,Jammu and Kashmir,Jammu and Kashmir
 DocType: Workflow,Workflow State Field,Workflow членка Невярно
-apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,"Моля, регистрирайте се или се логнете за да започнете"
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,"Моля, регистрирайте се или се логнете за да започнете"
 DocType: Blog Post,Guest,Гост
 DocType: DocType,Title Field,Заглавие на поле
 DocType: Error Log,Error Log,Error Log
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"If you think this is unauthorized, please change the Administrator password.","Ако мислите, че това е разрешено, моля, променете паролата на администратора."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} е задължително
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} е задължително
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","Опции за наименуване:
  1. поле: [име на поле] - по поле
  2. naming_series: - по наименование серия (поле, наречено naming_series трябва да присъства
  3. Prompt - Поканване на потребител за име
  4. [серия] - Серия с префикс (разделена с точка); например PRE. #####
  5. свързваме: [fieldname1], [fieldname2], ... [fieldnameX] - по concatenation на полето (можете да свържете колкото се може повече полета, колкото искате.
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,Собственик DocType: Communication,Visit,Посещение DocType: LDAP Settings,LDAP Search String,LDAP стринг за търсене DocType: Translation,Translation,превод -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Настройка> Персонализиране на формуляра apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Господин DocType: Custom Script,Client,Клиент apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,Изберете Колона @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,Журнал на импорта apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Код за добавяне слайдшоу с изображения в интернет страници. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,Изпращам DocType: Workflow Action Master,Workflow Action Name,Име Action Workflow -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,DocType не могат да бъдат слети +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,DocType can not be merged,DocType не могат да бъдат слети DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py +270,Not a zip file,Не е компресиран (zip) файл DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,Събитие за документи apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,Ти DocType: Braintree Settings,Braintree Settings,Настройки на Braintree DocType: Website Theme,lowercase,с малки букви -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,"Моля, изберете Колони, базирани на" apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,Запазване на филтъра DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},Не може да се изтрие {0} +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,Не предшественици на DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,Бютелин с новини вече е бил изпратен apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","Сесията за вход изтече, опресняване на страницата, за да опитате отново" @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,Email Отписване DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Изберете изображение от приблизително ширина 150px с прозрачен фон за най-добри резултати. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Приложения от трети страни apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,Първият потребителят ще стане мениджър System (можете да промените това по-късно). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не бе намерен стандартният шаблон за адреси. Моля, създайте нов от Setup> Printing and Branding> Address Template." apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,DocType трябва да може да се поддава на избраното събитие Doc ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,Стрелка в кръг-нагоре DocType: Email Domain,Email Domain,Email домейн DocType: Workflow State,italic,курсивен -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0}: Не можете да зададете Внос без Създаване +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0}: Не можете да зададете Внос без Създаване DocType: SMS Settings,Enter url parameter for message,Въведете URL параметър за съобщение apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,Преглеждайте отчета в браузъра си apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Събития и други календари. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Всички полета са необходими за изпращане на коментара. +DocType: Print Settings,Printer Name,Име на принтера +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,"Плъзнете, за да сортирате колоните" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Widths могат да се задават в PX или%. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,Начало DocType: Contact,First Name,Име @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,файлове apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Разрешения се прилагат на потребителите въз основа на това, което Ролите са разпределени." apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,"Вие нямате право да изпращате имейли, свързани с този документ" -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,"Моля, изберете поне една колона от {0} за сортиране / групиране" +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,"Моля, изберете поне една колона от {0} за сортиране / групиране" DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Маркирай това, ако ще тествате плащането с помощта на API Sandbox (тестова)" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Не е позволено да изтривате стандартна тема на уебсайт DocType: Data Import,Log Details,Детайли на дневник DocType: Feedback Trigger,Example,Пример DocType: Webhook Header,Webhook Header,Заглавие на Webhook +DocType: Print Settings,Print Server,Print Server DocType: Workflow State,gift,подарък DocType: Workflow Action,Completed By,Завършено от apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Необходим @@ -223,12 +227,13 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS DocType: Bulk Update,Bulk Update,Масова актуализация DocType: Workflow State,chevron-up,Стрелка-нагоре DocType: DocType,Allow Guest to View,Позволете гости да преглеждат -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,Документация +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,Документация DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,Изтриване на {0} елементи за постоянно? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,Не е позволено DocType: DocShare,Internal record of document shares,Вътрешен запис на акции на документи DocType: Workflow State,Comment,Коментар +DocType: Data Migration Plan,Postprocess Method,Метод на последващия процес apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,Направи снимка apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","Можете да промените Подадените документи, като ги анулира, а след това, за изменение на тях." DocType: Data Import,Update records,Актуализиране на записите @@ -236,20 +241,20 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Показ DocType: Email Group,Total Subscribers,Общо Абонати apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,Запази като +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,Запази като DocType: Communication,Seen,Видян apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,Покажи още детайли DocType: System Settings,Run scheduled jobs only if checked,"Стартирай редовни работни места, само ако се проверява" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Ще се показва само ако са разрешени заглавия на раздели apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Архив -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,Качване на файл +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,Качване на файл DocType: Activity Log,Message,Съобщение DocType: Communication,Rating,оценка DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Печат Ширина на полето, ако полето е колона в таблица" DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,Грешно име на поле {0} в add_fetch конфигурация на персонализиран скрипт +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,Грешно име на поле {0} в add_fetch конфигурация на персонализиран скрипт DocType: Workflow State,headphones,слушалки -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,Парола е необходима или изберете Очаква парола +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,Парола е необходима или изберете Очаква парола DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,напр replies@yourcomany.com. Всички отговори ще дойдат на тази пощенска кутия. DocType: Slack Webhook URL,Slack Webhook URL,Откажи URL адреса на Webhook DocType: Data Migration Run,Current Mapping,Текущо картографиране @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Групи DocTypes apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Интеграция с Google Карти DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,Променете паролата си +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,Показване на уикендите DocType: Workflow State,remove-circle,махни-кръг DocType: Help Article,Beginner,Начинаещ DocType: Contact,Is Primary Contact,Е основният Контакт apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,Javascript да се прикрепи към раздела на главата на страницата. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,Не е позволено да отпечатате проекти на документи +apps/frappe/frappe/www/printview.py +80,Not allowed to print draft documents,Не е позволено да отпечатате проекти на документи apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +12,Reset to defaults,Стандартни опции DocType: Workflow,Transition Rules,Правила за прехвърляне apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Пример: -DocType: Google Maps,Google Maps,Google Maps DocType: Workflow,Defines workflow states and rules for a document.,Определя работния процес членки и правила за достъп до документ. DocType: Workflow State,Filter,Филтър apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},Име на поле {0} не може да има специални символи като {1} @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,Акту apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,"Грешка: Документ е бил променен, след като сте го отворили" apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} излезли: {1} DocType: Address,West Bengal,Западен Бенгал -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0}: Cannot set Assign Submit if not Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0}: Cannot set Assign Submit if not Submittable DocType: Transaction Log,Row Index,Индекс на ред DocType: Social Login Key,Facebook,Facebook -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",Филтрирани по "{0}" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",Филтрирани по "{0}" DocType: Salutation,Administrator,Администратор DocType: Activity Log,Closed,Затворен DocType: Blog Settings,Blog Title,Блог - Заглавие apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,Стандартни роли не могат да бъдат изключени -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,Тип на чата +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,Тип на чата DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Бютелин с новини -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,Не може да се използва под-заявка за +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,Не може да се използва под-заявка за DocType: Web Form,Button Help,Бутон Помощ DocType: Kanban Board Column,purple,лилаво DocType: About Us Settings,Team Members,Членове на екипа @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""","SQL услов DocType: User,Get your globally recognized avatar from Gravatar.com,Махни си световно призната аватар от Gravatar.com apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","Абонаментът ви е изтекъл на {0}. За да се поднови, {1}." DocType: Workflow State,plus-sign,плюс знак -apps/frappe/frappe/__init__.py +918,App {0} is not installed,App {0} не е инсталиран +apps/frappe/frappe/__init__.py +994,App {0} is not installed,App {0} не е инсталиран DocType: Data Migration Plan,Mappings,Съответствия DocType: Notification Recipient,Notification Recipient,Получател на известието DocType: Workflow State,Refresh,Обнови DocType: Event,Public,Публичен -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,Няма за какво да се покаже +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,Няма за какво да се покаже DocType: System Settings,Enable Two Factor Auth,Активиране на два фактора -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[Urgent] Грешка при създаване на повтарящи се% s за% s +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[Urgent] Грешка при създаване на повтарящи се% s за% s apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Харесвани от DocType: DocField,Print Hide If No Value,Print Hide Ако няма стойност DocType: Kanban Board Column,yellow,жълт -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,Е публикуван поле трябва да бъде валиден FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,Е публикуван поле трябва да бъде валиден FIELDNAME apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Прикачи файл DocType: Block Module,Block Module,Блок Модул apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,Нова стойност +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,Няма разрешение за редактиране apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Добавяне на колона apps/frappe/frappe/www/contact.html +34,Your email address,Вашата електронна поща DocType: Desktop Icon,Module,Модул DocType: Notification,Send Alert On,Изпрати сигнал при DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Персонализирайте етикет, скриване при печат, по подразбиране т.н." -apps/frappe/frappe/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,"Моля, уверете се, че справочните комуникационни документи не са кръгообразно свързани." +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,"Моля, уверете се, че справочните комуникационни документи не са кръгообразно свързани." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Създайте нов формат apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,Не може да се създаде кофа: {0}. Променете го на по-уникално име. DocType: Webhook,Request URL,URL адрес за заявка @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,Е таблица apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,Приложете потребителско разрешение за следните DocTypes DocType: Email Account,Total number of emails to sync in initial sync process ,"Общ брой на имейли, за да се синхронизира в първоначалния процес синхронизиране" DocType: Website Settings,Set Banner from Image,Определете Banner от изображението -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Глобално търсене +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,Глобално търсене DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},Нов акаунт е създаден за вас в {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,Инструкции по имейл @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag Queue apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,Стилове за печатни формати apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Не може да се идентифицира с отворен {0}. Опитайте нещо друго. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,Вашата информация е подадена -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,Потребителят {0} не може да бъде изтрит +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,Вашата информация е подадена +apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Потребителят {0} не може да бъде изтрит DocType: System Settings,Currency Precision,Десетична точност на валута apps/frappe/frappe/public/js/frappe/request.js +143,Another transaction is blocking this one. Please try again in a few seconds.,"Друга транзакция блокира тази. Моля, опитайте отново след няколко секунди." DocType: DocType,App,App @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Пока DocType: Workflow State,Print,Печат DocType: User,Restrict IP,Ограничаване на IP apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,Табло -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,Не може да се изпращат имейли в този момент -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,Търси или въведи команда +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,Не може да се изпращат имейли в този момент +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,Търси или въведи команда DocType: Activity Log,Timeline Name,Timeline Име DocType: Email Account,e.g. smtp.gmail.com,напр smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,Добави ново правило @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,Родител Заглавие apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Заявката Ви е било получено. Ние ще ви отговорим върна скоро. Ако имате някаква допълнителна информация, моля, отговорете на този имейл." DocType: GCalendar Account,Allow GCalendar Access,Разрешаване на достъп до GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} е задължително поле +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} е задължително поле apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,Изисква се означение за вход DocType: Event,Repeat Till,Повторете до apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,Нов apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,"Моля, задайте URL адрес на скрипта в настройките на Gsuite" +DocType: Google Maps Settings,Google Maps Settings,Настройки на Google Карти apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Зарежда се ... DocType: DocField,Password,Парола apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,"Вашата система се актуализира. Моля, опреснете отново след няколко минути" @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,Няма съвпадащи записи. Търсене нещо ново DocType: Chat Profile,Away,далеч DocType: Currency,Fraction Units,Фракционни единици -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} от {1} до {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} от {1} до {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Маркирайте като Готово DocType: Chat Message,Type,Тип DocType: Activity Log,Subject,Предмет @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,Сума на база на поле apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Потребителят е задължително за споделяне DocType: DocField,Hidden,Скрит DocType: Web Form,Allow Incomplete Forms,Разрешаване на Непълни формуляри -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} трябва да се зададе първо +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,Генерирането на PDF се провали +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} трябва да се зададе първо apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","Използвайте няколко думи, избягвайте общи фрази." DocType: Workflow State,plane,равнина apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако качвате нови рекорди, "именуване Series" става задължителен, ако има такива." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,Абонамент за сигнали за днес -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DocType може да се преименува само от Administrator +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,Абонамент за сигнали за днес +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DocType може да се преименува само от Administrator DocType: Chat Message,Chat Message,Съобщение за чат apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},Имейл не е потвърден с {0} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},променената стойност на {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},променената стойност на {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Ако потребителят има някаква роля, потребителят става "системен потребител". "Системен потребител" има достъп до работния плот" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,"Моля, проверете електронната си поща за проверка" -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,Fold не може да бъде в края на формата +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,"Моля, проверете електронната си поща за проверка" +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,Fold не може да бъде в края на формата DocType: Communication,Bounced,Върнат DocType: Deleted Document,Deleted Name,Изтрито Име apps/frappe/frappe/config/setup.py +14,System and Website Users,Системни и Сайт Потребители @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,Doc Status DocType: Data Migration Run,Pull Update,Издърпайте актуализацията DocType: Auto Email Report,No of Rows (Max 500),Брои редове (максимум 500) DocType: Language,Language Code,Код на език +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Забележка: По подразбиране се изпращат имейли за неуспешни архиви. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","Изтеглянето се строи, това може да отнеме няколко минути, за ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,Добавяне на филтър apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS изпратен на следните номера: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,Вашият рейтинг: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} и {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,Започнете разговор. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,Вашият рейтинг: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Имейл акаунта не е настроен. Моля, създайте нов имейл адрес от Setup> Email> Email Account" +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} и {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,Start a conversation.,Започнете разговор. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Винаги се добави "Проект" Функция за печат проекти на документи DocType: Data Migration Run,Current Mapping Start,Текущо стартиране на картографиране apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,Имейл бе маркиран като спам DocType: About Us Settings,Website Manager,Сайт на мениджъра -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,"Файловото качване е прекъснато. Моля, опитайте отново." -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,Невалидно поле за търсене +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,"Файловото качване е прекъснато. Моля, опитайте отново." apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,Преводи apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,Избрали сте проектирани или анулирани документи -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},Документ {0} е настроен да посочва {1} до {2} -apps/frappe/frappe/model/document.py +1211,Document Queued,Документ Чакащи +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},Документ {0} е настроен да посочва {1} до {2} +apps/frappe/frappe/model/document.py +1212,Document Queued,Документ Чакащи DocType: GSuite Templates,Destination ID,Идентификационен номер на дестинацията DocType: Desktop Icon,List,Списък DocType: Activity Log,Link Name,Препратка - Име -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} на ред {1} не може да бъде скрито и задължително без стойност по подразбиране +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} на ред {1} не може да бъде скрито и задължително без стойност по подразбиране DocType: System Settings,mm/dd/yyyy,дд/мм/гггг -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,Грешна парола: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,Грешна парола: DocType: Print Settings,Send document web view link in email,Изпрати документ уеб оглед връзката в имейл apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Вашата обратна връзка {0} е записана успешно apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Предишен -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,Отн: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} редове за {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,Отн: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} редове за {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Под-валута. Например ""цент""" apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,Име на връзката -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Изберете качен файл +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Изберете качен файл DocType: Letter Head,Check this to make this the default letter head in all prints,"Маркирайте това, за да направите това заглавие на писмо по подразбиране за всички разпечатки" DocType: Print Format,Server,Сървър -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,Нов КАНБАН борд +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,Нов КАНБАН борд DocType: Desktop Icon,Link,Препратка apps/frappe/frappe/utils/file_manager.py +122,No file attached,Няма прикачени файлове DocType: Version,Version,Версия +DocType: S3 Backup Settings,Endpoint URL,URL адрес на крайната точка apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,Графики DocType: User,Fill Screen,Запълване на екрана apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,Профилът за чат за потребител {user} съществува. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,Разрешенията се прилагат автоматично към стандартните отчети и търсения. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,Качването не бе успешно -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,Редакция чрез качване +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,Редакция чрез качване apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","вида документ ..., например на клиенти" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,"Условие ""{0}"" е невалидно" DocType: Workflow State,barcode,баркод @@ -486,22 +496,24 @@ DocType: Country,Country Name,Име на държавата DocType: About Us Team Member,About Us Team Member,За нас Член на Екип apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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,Сряда -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,Полето за изображението трябва да бъде валиден FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,Полето за изображението трябва да бъде валиден FIELDNAME DocType: Chat Token,Token,жетон DocType: Property Setter,ID (name) of the entity whose property is to be set,Идентификато (име) на свойствтото което да се настрои apps/frappe/frappe/limits.py +84,"To renew, {0}.","Да се поднови, {0}." 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 +129,App {0} already installed,Приложението {0} вече е инсталирано -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Няма предварителен преглед +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,Няма предварителен преглед DocType: Workflow State,exclamation-sign,удивителен знак- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Показване на Разрешения -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,Timeline поле трябва да бъде Link или Dynamic Link +DocType: Data Import,New data will be inserted.,Ще бъдат въведени нови данни. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,Timeline поле трябва да бъде Link или Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Период от време apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Гант apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Стр. {0} от {1} DocType: About Us Settings,Introduce your company to the website visitor.,Въвеждане на компанията към уебсайт посетител. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json","Ключът за шифроване е невалиден. Моля, проверете site_config.json" +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json","Ключът за шифроване е невалиден. Моля, проверете site_config.json" DocType: SMS Settings,Receiver Parameter,Приемник на параметъра DocType: Data Migration Mapping Detail,Remote Fieldname,Отдалечено име на поле DocType: Communication,To,Към @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,Размер На Шрифта DocType: System Settings,Disable Standard Email Footer,Забранете стандартният имейл footer DocType: Workflow State,facetime-video,FaceTime видео apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 коментар -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,гледани +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,гледани DocType: Notification,Days Before,Дни преди DocType: Workflow State,volume-down,Намаляване на звука -apps/frappe/frappe/desk/reportview.py +268,No Tags,Няма тагове +apps/frappe/frappe/desk/reportview.py +270,No Tags,Няма тагове DocType: DocType,List View Settings,Списък Преглед на настройките DocType: Email Account,Send Notification to,Изпрати съобщение на DocType: DocField,Collapsible,Свиваем apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Запазен -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,За какво ти е необходима помощ? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,За какво ти е необходима помощ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Опции за избор. Всеки вариант на нов ред. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,Постоянно Отмени {0}? DocType: Workflow State,music,музика +DocType: Website Theme,Text Styles,Текстови стилове apps/frappe/frappe/www/qrcode.html +3,QR Code,QR код -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,Последна дата на промяна +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,Последна дата на промяна DocType: Chat Profile,Settings,Настройки DocType: Print Format,Style Settings,Настройки на стила apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Y Axis Fields -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,Сортиране поле {0} трябва да бъде валиден FIELDNAME -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,Още +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,Сортиране поле {0} трябва да бъде валиден FIELDNAME +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Още DocType: Contact,Sales Manager,Мениджър Продажби -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,Преименувай +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,Преименувай DocType: Print Format,Format Data,Форматирай данни DocType: List Filter,Filter Name,Име на филтъра apps/frappe/frappe/utils/bot.py +91,Like,Харесай @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,Име на стаята за чат DocType: OAuth Client,Grant Type,Вид Grant apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Проверете какви документи са достъпни за Потребител DocType: Deleted Document,Hub Sync ID,Идент -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,използвайте % като маска +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,използвайте % като маска DocType: Auto Repeat,Quarterly,Тримесечно apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Email на домейн не е конфигурирана за този профил, Създаване на един?" DocType: User,Reset Password Key,Reset Password Key @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Минимален резултат за парола DocType: DocType,Fields,Полета DocType: System Settings,Your organization name and address for the email footer.,Име и адрес на организацията ви за долното поле на електронни писма. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Таблица - Родител +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,Таблица - Родител apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 Backup завършен! apps/frappe/frappe/config/desktop.py +60,Developer,Разработчик -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,Създаден +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,Създаден apps/frappe/frappe/client.py +101,No permission for {doctype},Няма разрешение за {doctype} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{0} in row {1} cannot have both URL and child items,{0} на ред {1} не може да има и двете URL и под-артикули +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,Предци на apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Корен {0} не може да бъде изтрит apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,Все още няма коментари apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings","Моля, настройте SMS преди да я зададете като метод за удостоверяване чрез SMS настройки" @@ -576,6 +590,7 @@ DocType: Contact,Open,Отворено DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Определя действия на държави и следващата стъпка и се оставя роли. DocType: Data Migration Mapping,Remote Objectname,Дистанционно име на обекта apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Като най-добри практики, не определя един и същи набор от разрешение правило към различни роли. Вместо това зададете няколко роли в един и същи потребител." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,"Моля, потвърдете действието си до {0} този документ." DocType: Success Action,Next Actions HTML,Следващи действия HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,Само {0} емайл справки са позволени на потребител DocType: Address,Address Title,Адрес Заглавие @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Ежедневно apps/frappe/frappe/config/setup.py +19,User Roles,Потребителски роли DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property сетер надделява стандартен DocType или имущество Невярно -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,Не можете да актуализирате: Неправилно / Изтекла Препратка. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,Не можете да актуализирате: Неправилно / Изтекла Препратка. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,По-добре да добавите още няколко букви или друга дума apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},Регистрационен код за еднократна парола (OTP) от {} DocType: DocField,Set Only Once,Определете само веднъж DocType: Email Queue Recipient,Email Queue Recipient,Email Queue Получател DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,URL адрес на Webhook -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,Потребител {0} вече съществува -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,{0}: Не можете импортирате тъй като {1} не може да бъде импортиран +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Потребител {0} вече съществува +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,{0}: Не можете импортирате тъй като {1} не може да бъде импортиран apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},Има грешка във вашия шаблон на адрес {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} е невалиден имейл адрес в полето "Получатели" DocType: User,Allow Desktop Icon,Разрешаване на икона на работния плот DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,домакин -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Колона {0} вече съществува. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,Колона {0} вече съществува. DocType: ToDo,High,Високо DocType: S3 Backup Settings,Secret Access Key,Таен ключ за достъп apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Мъжки -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret е нулирана. При следващото влизане ще бъде необходима повторна регистрация. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret е нулирана. При следващото влизане ще бъде необходима повторна регистрация. DocType: Communication,From Full Name,От Пълно име -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Вие нямате достъп до отчет: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},Вие нямате достъп до отчет: {0} DocType: User,Send Welcome Email,Изпрати имейл за добре дошли -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,Премахване на филтъра +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,Премахване на филтъра +DocType: Web Form Field,Show in filter,Показване в филтъра DocType: Address,Daman and Diu,Даман и Диу -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,Проект +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,Проект DocType: Address,Personal,Персонален apps/frappe/frappe/config/setup.py +125,Bulk Rename,Масово преименуване DocType: Email Queue,Show as cc,Покажи като куб.см. @@ -625,12 +641,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,проф apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,Не е в режим за разработчици apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,Архивирането на файлове е готово DocType: DocField,In Global Search,В глобално търсене +DocType: System Settings,Brute Force Security,Брутална сигурност DocType: Workflow State,indent-left,ляво подравняване apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,"Рисковано е да изтриете този файл: {0}. Моля, обърнете се към вашия System Manager." DocType: Currency,Currency Name,Валута Име apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,Няма имейли -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,Връзката изтече -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,Изберете Формат на файла +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} години преди +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,Връзката изтече +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,Изберете Формат на файла DocType: Report,Javascript,Javascript DocType: File,Content Hash,Content Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,"Магазини за JSON на последния известен версии на различни инсталирани приложения. Той се използва, за да покаже бележки към изданието." @@ -642,16 +660,15 @@ DocType: Auto Repeat,Stopped,Спряно apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,Не премахва apps/frappe/frappe/desk/like.py +89,Liked,Хареса apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Изпрати сега -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","Стандартният DocType не може да има стандартния формат на печат, използвайте Персонализиране на формуляра" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","Стандартният DocType не може да има стандартния формат на печат, използвайте Персонализиране на формуляра" DocType: Report,Query,Запитване DocType: DocType,Sort Order,Ред на сортиране -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},"""Списъчен изглед"" не е позволен за вид {0} на ред {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},"""Списъчен изглед"" не е позволен за вид {0} на ред {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Изберете етикета след която искате да вмъкнете нова област. ,Document Share Report,Документ Сподели Съобщи DocType: Social Login Key,Base URL,Базов URL адрес DocType: User,Last Login,Последно влизане apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},Не можете да зададете "Translatable" за поле {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},Fieldname се изисква в ред {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Колона DocType: Chat Profile,Chat Profile,Чат профил DocType: Custom Field,Adds a custom field to a DocType,Добавя потребителско поле към DocType @@ -660,6 +677,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,Изберете поне един запис за печат apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,Първо задайте името и запазете записа. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Споделено с {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,Отписване DocType: View log,Reference Name,Референтен номер Име @@ -681,17 +699,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Ва apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} до {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Журнал на грешки по време на заявки. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} е успешно добавен към Email група. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,"Не редактирайте заглавките, които са предварително зададени в шаблона" +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,"Не редактирайте заглавките, които са предварително зададени в шаблона" apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},Код за потвърждение за вход от {} DocType: Address,Uttar Pradesh,Uttar Pradesh +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,Забележка: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,Статус на импорта -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,"Направи файл (а), частен или обществен?" +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,"Направи файл (а), частен или обществен?" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Планирана да изпрати на {0} DocType: Kanban Board Column,Indicator,индикатор DocType: DocShare,Everyone,Всички DocType: Workflow State,backward,назад -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: само едно правило остава с една и съща Роля, Ниво и {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: само едно правило остава с една и съща Роля, Ниво и {1}" DocType: Email Queue,Add Unsubscribe Link,Добави препратка за отписване apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Все още няма коментари. Започнете ново обсъждане. DocType: Workflow State,share,дял @@ -703,6 +722,7 @@ DocType: User,Last IP,Последен IP адрес apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Подновяване / Ъпгрейд apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,Нов документ {0} бе споделен с вас {1}. DocType: Data Migration Connector,Data Migration Connector,Конектор за мигриране на данни +DocType: Email Account,Track Email Status,Проследяване на състоянието на имейла DocType: Note,Notify Users On Every Login,Уведомявайте потребителите при всяко влизане DocType: PayPal Settings,API Password,API парола apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Въведете Python модула или изберете тип конектор @@ -711,6 +731,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Посл apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Вижте Абонати DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,"Не може да се изтрие файла, тъй като принадлежи към {0} {1}, за което нямате разрешения" +DocType: Website Theme,Custom JS,Персонализирано JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Госпожица DocType: Website Theme,Background Color,Цвят На Фона apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,"Имаше грешки при изпращане на имейл. Моля, опитайте отново." @@ -719,21 +740,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,картография DocType: Web Page,0 is highest,0 е най-висока apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,"Сигурни ли сте, че искате да се свържете отново тази комуникация да {0}?" -apps/frappe/frappe/www/login.html +86,Send Password,Изпрати парола +apps/frappe/frappe/www/login.html +87,Send Password,Изпрати парола +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунт от Setup> Email> Email Account" +DocType: Print Settings,Server IP,Сървър IP DocType: Email Queue,Attachments,Приложения apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Нямате права за достъп до този документ DocType: Language,Language Name,Език - Име DocType: Email Group Member,Email Group Member,Email член на група +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,Вашият профил е заключен и ще се възобнови след {0} секунди apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,User Permissions are used to limit users to specific records.,Потребителските разрешения се използват за ограничаване на потребителите до конкретни записи. DocType: Notification,Value Changed,Променената стойност -apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Дублиране име {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},Дублиране име {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,Повторен опит DocType: Web Form Field,Web Form Field,Web Form Поле apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Скриване на поле в Report Builder apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,Имате ново съобщение от: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Редактиране на HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,"Моля, въведете URL адрес за пренасочване" -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Настройка> Потребителски разрешения apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","да бъдат генерирани. Ако бъде забавено, ще трябва да промените ръчно полето "Повторение на деня на месеца" на това" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,Възстановяване на първоначалния Permissions @@ -758,23 +781,25 @@ DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Помощ за отговор по имейл apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Доклади Report Builder се управляват пряко от доклад строител. Нищо за правене. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,"Моля, потвърдете имейл адреса си" -apps/frappe/frappe/model/document.py +1056,none of,никой от +apps/frappe/frappe/model/document.py +1057,none of,никой от apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,Изпрати ми копие DocType: Dropbox Settings,App Secret Key,App Secret Key DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Маркирайте елементи ще бъдат показани на работния плот -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} не може да бъде зададен за Единични видове +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} не може да бъде зададен за Единични видове DocType: Data Import,Data Import,Импортиране на данни apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,Конфигуриране на диаграмата apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} в момента преглеждат този документ DocType: ToDo,Assigned By Full Name,Възложени от Пълно име apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} актуализиран -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,Доклад не може да бъде определен за единични видове +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,Доклад не може да бъде определен за единични видове +DocType: System Settings,Allow Consecutive Login Attempts ,Позволете опити за последователни влизания apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,"Възникна грешка по време на процеса на плащане. Моля, свържете се с нас." apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,Преди {0} дни DocType: Email Account,Awaiting Password,Очаква парола DocType: Address,Address Line 1,Адрес - Ред 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,Не потомците на DocType: Custom DocPerm,Role,Роля apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Настройки... apps/frappe/frappe/utils/data.py +507,Cent,Цент @@ -794,10 +819,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,Спри DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Препратка към страницата, която искате да отворите. Оставете празно, ако искате да го направите група." DocType: DocType,Is Single,Дали Single -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,Регистрацията е забранена -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} напусна разговора в {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,Регистрацията е забранена +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} напусна разговора в {1} {2} DocType: Blogger,User ID of a Blogger,User ID на Blogger -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,Трябва да остане поне един мениджър на системата +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,Трябва да остане поне един мениджър на системата DocType: GCalendar Account,Authorization Code,Оторизационен код DocType: PayPal Settings,Mention transaction completion page URL,Споменете сделка URL завършване страница DocType: Help Article,Expert,Експерт @@ -818,8 +843,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","За да добавите динамичен обект, използвайте Джинджа тагове като
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,Нанесете потребителски разрешения +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},Невалидно поле за търсене {0} DocType: User,Modules HTML,Модули HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Проследявайте дали имейлът ви е бил отворен от получателя.
Забележка: Ако изпращате до няколко получатели, дори и 1 получател да прочете имейла, той ще бъде считан за "Отворен"" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,Липсват задължителни стойности DocType: DocType,Other Settings,Други настройки DocType: Data Migration Connector,Frappe,Frappe @@ -829,15 +857,13 @@ DocType: Customize Form,Change Label (via Custom Translation),Промяна н apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Няма разрешение за {0} {1} {2} DocType: Address,Permanent,постоянен apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,Забележка: Възможно е да се прилагат и други правила за достъп -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/templates/emails/print_link.html +2,View this in your browser,Разгледай това във вашия браузър DocType: DocType,Search Fields,Поле за търсене DocType: System Settings,OTP Issuer Name,Име на емитента на OTP DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Носител Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Няма избран документ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,Вие сте свързани с интернет. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,Вие сте свързани с интернет. DocType: Social Login Key,Enable Social Login,Активиране на социалното влизане DocType: Event,Event,Събитие apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:","На {0}, {1} написа:" @@ -852,7 +878,7 @@ DocType: Print Settings,In points. Default is 9.,В точки. По подра DocType: OAuth Client,Redirect URIs,URI адреси за пренасочване apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},Изпращане на {0} DocType: Workflow State,heart,сърце -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,Изисква се стара парола. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,Изисква се стара парола. DocType: Role,Desk Access,Desk Access DocType: Workflow State,minus,минус DocType: S3 Backup Settings,Bucket,кофа @@ -860,8 +886,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,Камерата не може да се зареди. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,Имейлът за добре дошли е изпратен apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,Нека да се подготви системата за първа употреба. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,Вече Е Регистриран +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,Вече Е Регистриран DocType: System Settings,Float Precision,Прецизност на реални числа +DocType: Notification,Sender Email,Изпращане по имейл apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Само администратор може да редактира apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Име на файл DocType: DocType,Editable Grid,Може да се редактира Grid @@ -872,17 +899,19 @@ DocType: Communication,Clicked,Кликнато apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},Няма разрешение за '{0}' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Планирана да изпратите DocType: DocType,Track Seen,Track Погледнато -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,Този метод може да се използва само за да се създаде коментар +DocType: Dropbox Settings,File Backup,Архивиране на файлове +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,Този метод може да се използва само за да се създаде коментар DocType: Kanban Board Column,orange,оранжев apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,Номер {0} намерен apps/frappe/frappe/config/setup.py +259,Add custom forms.,Добавяне на персонализирани форми. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} в {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,подадено този документ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,подадено този документ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Системата осигурява много предварително определени роли. Можете да добавяте нови роли за да зададете по-фини разрешения. DocType: Communication,CC,CC DocType: Country,Geo,Гео +DocType: Data Migration Run,Trigger Name,Име на задействане DocType: Blog Category,Blog Category,Блог Категория -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,"Не може да се карта, защото следното условие не успее:" +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,"Не може да се карта, защото следното условие не успее:" DocType: Role Permission for Page and Report,Roles HTML,Роли HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Изберете имидж на марката на първо място. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Активен @@ -906,16 +935,17 @@ DocType: Address,Other Territory,Други територии ,Messages,Съобщения apps/frappe/frappe/config/website.py +83,Portal,Портал DocType: Email Account,Use Different Email Login ID,Използвайте различен идентификационен номер за влизане в имейл -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,Трябва да посочите Query да тече +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,Трябва да посочите Query да тече apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Изглежда, че има проблем със конфигурацията на сървъра. Не се притеснявайте, в случай на неуспех, сумата ще бъде възстановена в профила Ви." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,Управление на приложения от трети страни apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","Език, дата и час - Настройки" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Настройка> Потребителски разрешения DocType: User Email,User Email,Потребителски Email DocType: Event,Saturday,Събота DocType: User,Represents a User in the system.,Представлява потребителя в системата. DocType: Communication,Label,Етикет -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Задачата {0}, която сте задали за {1}, е била затворена." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,Моля затворете този прозорец +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","Задачата {0}, която сте задали за {1}, е била затворена." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,Моля затворете този прозорец DocType: Print Format,Print Format Type,Тип печат Format DocType: Newsletter,A Lead with this Email Address should exist,Потенциален клиент с този имейл адрес трябва да съществува apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Приложенията с отворен код за уеб @@ -931,8 +961,8 @@ DocType: Data Export,Excel,Excel apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Паролата ви беше актуализирана. Ето новата ви парола DocType: Email Account,Auto Reply Message,Auto Reply Message DocType: Feedback Trigger,Condition,Състояние -apps/frappe/frappe/utils/data.py +619,{0} hours ago,Преди {0} часа -apps/frappe/frappe/utils/data.py +629,1 month ago,преди 1 месец +apps/frappe/frappe/utils/data.py +621,{0} hours ago,Преди {0} часа +apps/frappe/frappe/utils/data.py +631,1 month ago,преди 1 месец DocType: Contact,User ID,User ID DocType: Communication,Sent,Изпратено DocType: Address,Kerala,Kerala @@ -951,7 +981,7 @@ DocType: GSuite Templates,Related DocType,Свързани DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Редактирайте да добавите съдържание apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,избиране на език apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,Детайли за картата -apps/frappe/frappe/__init__.py +538,No permission for {0},Няма разрешение за {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},Няма разрешение за {0} DocType: DocType,Advanced,Разширени apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,Изглежда API Key или API Secret не е наред !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Референтен номер: {0} {1} @@ -961,13 +991,13 @@ DocType: Address,Address Type,Вид Адрес apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,"Невалиден потребител или Support Password. Моля, поправи и опитайте отново." DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Вашият абонамент изтича утре. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,Грешка в известието +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,Грешка в известието apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Мадам apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Обновен {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Майстор DocType: DocType,User Cannot Create,Потребителят не може да създаде apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,Папка {0} не съществува -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,достъп Dropbox е одобрен! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,достъп Dropbox е одобрен! DocType: Customize Form,Enter Form Type,Въведете Форма Type apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Липсва параметър Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Не са маркирани записи. @@ -976,14 +1006,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,Изпрати уведомление за актуализация на парола apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Разрешаването DocType, DocType. Бъди внимателен!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Индивидуално формати за печат, Email" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,Актуализиран до нова версия +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,Актуализиран до нова версия DocType: Custom Field,Depends On,Зависи От DocType: Kanban Board Column,Green,Зелен DocType: Custom DocPerm,Additional Permissions,Допълнителни Права DocType: Email Account,Always use Account's Email Address as Sender,"Винаги използвайте профил на имейл адрес, както Sender" apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Влез за да коментираш -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Започнете да въвеждате данни под тази линия -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},променени стойности на {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,Започнете да въвеждате данни под тази линия +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},променени стойности на {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","Идентификационният номер на имейла трябва да е уникален, Email адресът вече съществува \ за {0}" DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Персонализирайте ... DocType: Print Format,Align Labels to the Right,Подравнете етикетите надясно @@ -1002,39 +1034,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,Ред DocType: Workflow Action Master,Workflow Action Master,Workflow Action магистър DocType: Custom Field,Field Type,Тип поле apps/frappe/frappe/utils/data.py +537,only.,само. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,OTP тайната може да бъде нулирана само от администратора. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,OTP тайната може да бъде нулирана само от администратора. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,"Избягвайте години, които са свързани с вас." apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,Ограничете потребителя за конкретен документ DocType: GSuite Templates,GSuite Templates,Шаблони за GSuite +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,Низходящо apps/frappe/frappe/utils/goal.py +110,Goal,Цел apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,"Невалиден Mail Server. Моля, поправи и опитайте отново." DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","За връзки, въведете DOCTYPE като обхват. За Select, въведете списък от опции, всяка на нов ред." DocType: Workflow State,film,филм -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},Няма разрешение да чете {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},Няма разрешение да чете {0} apps/frappe/frappe/config/desktop.py +8,Tools,Инструменти apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,Избягва последните години. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,Множество коренни възли не са позволени. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ако е активирано, потребителите ще бъдат уведомявани всеки път, когато влизат. Ако не е активирана, потребителите ще бъдат уведомени само веднъж." -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,Невалидно условие {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,Невалидно условие {0} DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Ако е избрано, потребителите няма да виждат диалоговия прозорец Confirm Access." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,"Поле ID е необходимо да редактирате стойностите, като използвате доклад. Моля изберете полето ID използвайки Колона Picker" apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Коментари -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,Потвърждавам -apps/frappe/frappe/www/login.html +58,Forgot Password?,Забравена парола? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,Потвърждавам +apps/frappe/frappe/www/login.html +59,Forgot Password?,Забравена парола? DocType: System Settings,yyyy-mm-dd,ГГГГ-ММ-ДД apps/frappe/frappe/desk/report/todo/todo.py +19,ID,Идентификатор apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,грешка в сървъра -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Изисква се идентификатор за влизане +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Изисква се идентификатор за влизане DocType: Website Slideshow,Website Slideshow,Website Slideshow apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,Няма Данни DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Препратката, която е първа страница на сайта. Стандартни препратки (индекс, вход, продукти, блог, за, контакт)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Неуспешно удостоверяване, докато получавате имейли от имейл акаунт {0}. Съобщение от сървъра: {1}" +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Неуспешно удостоверяване, докато получавате имейли от имейл акаунт {0}. Съобщение от сървъра: {1}" DocType: Custom Field,Custom Field,Персонализирано поле -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,"Моля, посочете кое поле за дата поле трябва да се проверява" +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,"Моля, посочете кое поле за дата поле трябва да се проверява" DocType: Custom DocPerm,Set User Permissions,Задаване на потребителски права apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},Не е разрешено за {0} = {1} DocType: Email Account,Email Account Name,Email Име на профила -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,"Нещо се обърка, докато генерираха символа за достъп до dropbox. Моля, проверете регистъра на грешките за повече подробности." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,"Нещо се обърка, докато генерираха символа за достъп до dropbox. Моля, проверете регистъра на грешките за повече подробности." DocType: File,old_parent,предишен_родител apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",Бютелин с новини към контакти и потенциални клиенти. DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","например "Подкрепа", "Продажби", "Джери Янг"" @@ -1043,19 +1077,20 @@ DocType: DocField,Description,Описание DocType: Print Settings,Repeat Header and Footer in PDF,Повторете Header и Footer в PDF DocType: Address Template,Is Default,Е по подразбиране DocType: Data Migration Connector,Connector Type,Тип конектор -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,Името на колоната не може да бъде празно -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},Грешка при свързване с имейл акаунт {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,Името на колоната не може да бъде празно +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},Грешка при свързване с имейл акаунт {0} DocType: Workflow State,fast-forward,бързо напред DocType: Communication,Communication,Комуникации apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Маркирай колони, за да изберете, плъзнете, за да зададете подредба." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,Това е постоянното действие и не можете да отмените. Продължи? apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,Влезте и вижте в Браузър DocType: Event,Every Day,Всеки Ден DocType: LDAP Settings,Password for Base DN,Парола за Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Поле на таблица -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,Колони на базата на +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,Колони на базата на apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,"Въведете ключове, за да активирате интегрирането с Google GSuite" DocType: Workflow State,move,ход -apps/frappe/frappe/model/document.py +1254,Action Failed,Действие Неуспешно +apps/frappe/frappe/model/document.py +1255,Action Failed,Действие Неуспешно DocType: List Filter,For User,За потребител DocType: View log,View log,Вижте дневника apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,Сметкоплан @@ -1063,11 +1098,11 @@ DocType: Address,Assam,Асам apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Имате останали {0} дни в абонамента си apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Изходящият имейл акаунт не е правилен DocType: Transaction Log,Chaining Hash,Веригата на веригите -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Увреждания Temperorily +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Увреждания Temperorily apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,"Моля, задайте имейл адрес" DocType: System Settings,Date and Number Format,Форма на дати и числа -apps/frappe/frappe/model/document.py +1055,one of,един от -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,"Проверка. Един момент, моля." +apps/frappe/frappe/model/document.py +1056,one of,един от +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,"Проверка. Един момент, моля." apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Покажи Етикети DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ако е поставена отметка дали е разрешено разрешение за кандидатстване за строго потребителско име и потребителско разрешение е зададено за DocType за потребител, тогава всички документи, в които стойността на връзката е празна, няма да се показва на този потребител" DocType: Address,Billing,Фактуриране @@ -1078,7 +1113,7 @@ DocType: User,Middle Name (Optional),Презиме (по избор) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,Не е разрешен apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,Следните полета имат липсващи стойности: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,Първа транзакция -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,"Вие нямате достатъчно права, за да изпълните действието" +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,"Вие нямате достатъчно права, за да изпълните действието" apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Няма резултати DocType: System Settings,Security,Сигурност apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Планирана да изпрати на {0} получатели @@ -1099,6 +1134,7 @@ DocType: Kanban Board Column,lightblue,светло синьо apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Същото поле се въвежда повече от веднъж apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ясно apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Всеки ден събития трябва да завършат в същия ден. +DocType: Prepared Report,Filter Values,Филтърни стойности DocType: Communication,User Tags,Потребителски етикети DocType: Data Migration Run,Fail,Неуспех DocType: Workflow State,download-alt,изтегляне-н @@ -1106,13 +1142,13 @@ DocType: Data Migration Run,Pull Failed,Пултът не успя DocType: Communication,Feedback Request,Обратна връзка - Заявка apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,Импортиране на данни от CSV / Excel файлове. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Следните полета са изчезнали: -apps/frappe/frappe/www/login.html +28,Sign in,Впиши се +apps/frappe/frappe/www/login.html +29,Sign in,Впиши се apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},Отмяна на {0} DocType: Web Page,Main Section,Основен раздел DocType: Page,Icon,Икона -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","Съвет: Въведете в паролата символи, цифри и главни букви" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","Съвет: Въведете в паролата символи, цифри и главни букви" DocType: DocField,Allow in Quick Entry,Оставете в Quick Entry -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,дд/мм/гггг apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,Тест за скрипт GSuite DocType: System Settings,Backups,Архиви @@ -1129,23 +1165,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,Не е в DocType: Footer Item,Target,Цел DocType: System Settings,Number of Backups,Брой резервни копия DocType: Website Settings,Copyright,Авторско право -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Отивам +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,Отивам DocType: OAuth Authorization Code,Invalid,Невалиден DocType: ToDo,Due Date,Срок за плащане apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,Ден Квартал DocType: Website Settings,Hide Footer Signup,Скриване регистрацията във футъра -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,отмени този документ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,отмени този документ apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Напиши файл Python в същата папка, където това се записва и да се върнете на колоната и резултат." +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,Добавяне към таблицата DocType: DocType,Sort Field,Поле за сортиране DocType: Razorpay Settings,Razorpay Settings,Настройки Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,Редактиране на Филтър -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,Поле {0} от тип {1} не може да бъде задължително +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,Редактиране на Филтър +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,Поле {0} от тип {1} не може да бъде задължително apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Добави още DocType: System Settings,Session Expiry Mobile,Session Изтичане Mobile apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,Неправилен потребител или парола apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,Резултати от търсенето за apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,"Моля, въведете URL адреса за достъп" -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,Изберете да изтеглите: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,Изберете да изтеглите: DocType: Notification,Slack,застой DocType: Custom DocPerm,If user is the owner,Ако потребителят е собственик ,Activity,Дейност @@ -1154,7 +1191,7 @@ DocType: User Permission,Allow,Позволи apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,Нека да се избегнат повтарящи се думи и знаци DocType: Communication,Delayed,Отложен apps/frappe/frappe/config/setup.py +140,List of backups available for download,Списък на резервни копия на разположение за изтегляне -apps/frappe/frappe/www/login.html +71,Sign up,Регистрирай се +apps/frappe/frappe/www/login.html +72,Sign up,Регистрирай се apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,Ред {0}: Не е позволено да деактивирате Задължително за стандартни полета DocType: Test Runner,Output,продукция DocType: Notification,Set Property After Alert,Задайте собственост след предупреждение @@ -1165,7 +1202,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,Тип файл DocType: Workflow State,leaf,листо DocType: Portal Menu Item,Portal Menu Item,Portal Меню -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,Изчистване на потребителските настройки DocType: Contact Us Settings,Email ID,Email ID DocType: Activity Log,Keep track of all update feeds,Следете всички емисии за актуализации DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Списъкът на ресурсите, които Client App ще имат достъп до, след като потребителят го позволява.
напр проект" @@ -1175,7 +1211,7 @@ DocType: Error Snapshot,Timestamp,Клеймо (таймстемп) DocType: Patch Log,Patch Log,Patch Log DocType: Data Migration Mapping,Local Primary Key,Местен първичен ключ apps/frappe/frappe/utils/bot.py +164,Hello {0},Здравейте {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},Добре дошли {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},Добре дошли {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Добави apps/frappe/frappe/www/me.html +40,Profile,Профил DocType: Communication,Sent or Received,Изпратени или получени @@ -1199,7 +1235,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,Настройка за DocType: Workflow State,minus-sign,минус-знак apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,Не е намерен -apps/frappe/frappe/www/printview.py +200,No {0} permission,Няма {0} разрешение +apps/frappe/frappe/www/printview.py +199,No {0} permission,Няма {0} разрешение apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,Експортните персонализирани разрешения DocType: Data Export,Fields Multicheck,Полетата Multicheck DocType: Activity Log,Login,Влизане @@ -1207,7 +1243,7 @@ DocType: Web Form,Payments,Плащания apps/frappe/frappe/www/qrcode.html +9,Hi {0},Здравей {0} DocType: System Settings,Enable Scheduled Jobs,Активиране планирани заявки apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,Забележки: -apps/frappe/frappe/www/message.html +65,Status: {0},Статус: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},Статус: {0} DocType: DocShare,Document Name,Документ Име apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Отбележи като спам DocType: ToDo,Medium,Среда @@ -1225,7 +1261,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},Име на {0 apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,От дата apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Успех apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},Обратна връзка - Заявка за {0} е изпратена до {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,Сесията изтече +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,Сесията изтече DocType: Kanban Board Column,Kanban Board Column,Канбан Табло - колона apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,Правите редове от клавиши са лесни за отгатване DocType: Communication,Phone No.,Телефон No. @@ -1248,17 +1284,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},Игнорирани: {0} до {1} DocType: Address,Gujarat,Гуджарат apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,Журнал на грешки за автоматизирани събития (Scheduler). -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),Не е валиден разделен със запетая (CSV файла) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),Не е валиден разделен със запетая (CSV файла) DocType: Address,Postal,Пощенски DocType: Email Account,Default Incoming,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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Помощ за Търсене -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,Регистрирани но инвалиди +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,Регистрирани но инвалиди DocType: DocType,Hide Copy,Скриване Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,Изчистване на всички роли -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} трябва да е уникално +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} трябва да е уникално apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,Ред apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","CC, BCC и имейл шаблон" DocType: Data Migration Mapping Detail,Local Fieldname,Местно име на поле @@ -1266,7 +1302,7 @@ DocType: User Permission,Linked Doctypes,Свързани доктове DocType: DocType,Track Changes,Проследяването на промените DocType: Workflow State,Check,Провери DocType: Chat Profile,Offline,Извън линия -DocType: Razorpay Settings,API Key,API Key +DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Изпрати отпишете съобщение в имейл apps/frappe/frappe/public/js/frappe/form/toolbar.js +82,Edit Title,Редактиране на заглавие apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,Инсталирайте приложения @@ -1274,6 +1310,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Документи свързани към вас и от вас. DocType: User,Email Signature,Email подпис DocType: Website Settings,Google Analytics ID,Google Analytics ID +DocType: Web Form,"For help see Client Script API and Examples","За помощ вижте приложния интерфейс за клиентски скриптове и примерите" DocType: Website Theme,Link to your Bootstrap theme,Препратка към вашата Bootstrap тема DocType: Custom DocPerm,Delete,Изтрий apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},Нови {0} @@ -1283,10 +1320,10 @@ DocType: Print Settings,PDF Page Size,PDF Page Size DocType: Data Import,Attach file for Import,Прикачи файл за импортиране DocType: Communication,Recipient Unsubscribed,Получателя се отписа DocType: Feedback Request,Is Sent,е изпратен -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,Около +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,Около apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.","За актуализиране, можете да актуализирате само селективни колони." DocType: Chat Token,Country,Страна -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,Адреси +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,Адреси DocType: Communication,Shared,Споделено apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,Прикрепете Документ за печат DocType: Bulk Update,Field,поле @@ -1297,12 +1334,12 @@ DocType: Chat Message,URLs,URL адреси DocType: Data Migration Run,Total Pages,Общо страници DocType: DocField,Attach Image,Прикрепете Изображение DocType: Workflow State,list-alt,Списък-н -apps/frappe/frappe/www/update-password.html +87,Password Updated,Паролата е променена +apps/frappe/frappe/www/update-password.html +79,Password Updated,Паролата е променена apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,Стъпки за потвърждаване на данните за вход apps/frappe/frappe/utils/password.py +50,Password not found,Парола не е намерена DocType: Data Migration Mapping,Page Length,Дължина на страницата DocType: Email Queue,Expose Recipients,Expose Получатели -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,Добавяне към е задължително за входящи съобщения +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,Добавяне към е задължително за входящи съобщения DocType: Contact,Salutation,Поздрав DocType: Communication,Rejected,Отхвърлени apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,Премахване на маркера @@ -1313,14 +1350,14 @@ DocType: User,Set New Password,Въведете нова парола apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%s is not a valid report format. Report format should \ one of the following %s",% не е валиден формат на справка. Форматът на справка трябва \ да е едно от следните неща %s DocType: Chat Message,Chat,Чат -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},Име на поле {0} се среща няколко пъти в редове {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} от {1} до {2} на ред # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},Име на поле {0} се среща няколко пъти в редове {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{0} from {1} to {2} in row #{3},{0} от {1} до {2} на ред # {3} DocType: Communication,Expired,Изтекъл apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +32,Seems token you are using is invalid!,"Изглежда, че означението, което използвате, е невалидно!" DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Брой колони за едно поле в Grid (Общо Колони в мрежа трябва да са по-малко от 11) DocType: DocType,System,Система DocType: Web Form,Max Attachment Size (in MB),Максимален размер на Прикачен файл (в MB) -apps/frappe/frappe/www/login.html +75,Have an account? Login,Имате акаунт? Влезте +apps/frappe/frappe/www/login.html +76,Have an account? Login,Имате акаунт? Влезте apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Неизвестен Print формат: {0} DocType: Workflow State,arrow-down,стрелка надолу apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},Потребителят не му е разрешено да изтрива {0}: {1} @@ -1332,30 +1369,30 @@ DocType: Help Article,Likes,Харесва DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Скрипт код apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,Създаване на потребителски имейл -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,Няма посочени разрешения +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,Няма посочени разрешения apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} не е намерен DocType: Custom Role,Custom Role,Персонализирана Роля apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Начало / Test Folder 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,"Моля, запишете документа, преди да качите." -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,Въведете паролата си +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,Въведете паролата си DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Social Login Key,Social Login Provider,Доставчик на социални данни apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Добави Друг коментар -apps/frappe/frappe/core/doctype/data_import/importer.py +81,No data found in the file. Please reattach the new file with data.,"Няма данни във файла. Моля, презаредете новия файл с данни." +apps/frappe/frappe/core/doctype/data_import/importer.py +80,No data found in the file. Please reattach the new file with data.,"Няма данни във файла. Моля, презаредете новия файл с данни." apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,Редактиране на DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,Отписахте се от бюлетин -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,Сгънете трябва да дойде преди Раздел Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,Сгънете трябва да дойде преди Раздел Break apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,В процес на разработка apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,Отворете документа apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,Последно променено от apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,Редактиране на персонализирането DocType: Workflow State,hand-down,ръка-надолу DocType: Address,GST State,GST State -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0}: Не може да отмените непотвърден документ +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0}: Не може да отмените непотвърден документ DocType: Website Theme,Theme,Тема DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Пренасочването URI длъжен да Код за упълномощаване DocType: DocType,Is Submittable,Дали Правят -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,Ново споменаване +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,Ново споменаване apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Цена поле проверка може да бъде или 0 или 1 apps/frappe/frappe/model/document.py +733,Could not find {0},Не можах да намеря {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,Колона Етикети: @@ -1375,7 +1412,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,Група DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Изберете целеви = "_blank", за да отворите в нова страница." apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,Размер на базата данни: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,Окончателно изтриване на {0}? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,Окончателно изтриване на {0}? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,Един и същи файл вече е приложен към записа apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,"{0} не е валидна държава на работния процес. Моля, актуализирайте работния си процес и опитайте отново." DocType: Workflow State,wrench,гаечен ключ @@ -1389,27 +1426,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Добави коментар DocType: DocField,Mandatory,Задължителен apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Модул за експорт -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0}: Няма основен набор разрешения +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0}: Няма основен набор разрешения apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,Абонаментът ви ще изтече на {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},Изтегляне на връзката за резервната си ще бъде изпратено на следния имейл адрес: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Значение на Знаете, Отмени, изменя" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Да направя DocType: Test Runner,Module Path,Модулен път DocType: Social Login Key,Identity Details,Детайли за самоличността +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),След това от (по желание) DocType: File,Preview HTML,Преглед HTML DocType: Desktop Icon,query-report,заявка-доклад -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Целеви да {0}: {1} DocType: DocField,Percent,Процент apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,Свързан с apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,Редактиране на настройките за автоматично имейл съобщения DocType: Chat Room,Message Count,Брой съобщения DocType: Workflow State,book,книга +DocType: Communication,Read by Recipient,Прочетете от получателя DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Грешка в персонализиран скрипт apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} Име apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,Няма разрешение за определени за тези критерии. DocType: Auto Email Report,Auto Email Report,Auto Email Доклад -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,Изтриване на коментар? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,Изтриване на коментар? DocType: Address Template,This format is used if country specific format is not found,"Този формат се използва, ако не се намери специфичен формат за държавата" DocType: System Settings,Allow Login using Mobile Number,Да се разреши влизането чрез мобилен номер apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Вие нямате достатъчно права за достъп до този ресурс. Моля, свържете се с вашия мениджър, за да получите достъп." @@ -1426,7 +1464,7 @@ DocType: Letter Head,Printing,Печатане DocType: Workflow State,thumbs-up,одобрение DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Шрифтове -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,Прецизността трябва да бъде между 1 и 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,Прецизността трябва да бъде между 1 и 6 apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,и apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},Този отчет бе генериран на {0} @@ -1438,16 +1476,16 @@ DocType: Auto Email Report,Report Filters,Справка Филтри apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,сега DocType: Workflow State,step-backward,стъпка назад apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{app_title} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,"Моля, задайте Dropbox клавишите за достъп в сайта си довереник" +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,Please set Dropbox access keys in your site config,"Моля, задайте Dropbox клавишите за достъп в сайта си довереник" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Изтрий този запис да позволи изпращането на този имейл адрес apps/frappe/frappe/core/doctype/data_import/exporter.py +67,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Само задължителни полета са необходими за нови записи. Можете да изтриете незадължителни колони, ако желаете." -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,Не може да се актуализира събитие -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,Плащането е изпълнено +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,Не може да се актуализира събитие +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,Плащането е изпълнено apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,Кодът за потвърждение е изпратен на регистрирания ви имейл адрес. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,Потиснат -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Филтърът трябва да има 4 стойности (доктоп, име на поле, оператор, стойност): {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,Потиснат +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Филтърът трябва да има 4 стойности (доктоп, име на поле, оператор, стойност): {0}" apps/frappe/frappe/utils/bot.py +89,show,покажи -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},Невалидно име на поле {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},Невалидно име на поле {0} DocType: Address Template,Address Template,Шаблон за адрес DocType: Workflow State,text-height,текст-височина DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Картографиране на плана за миграция на данни @@ -1457,13 +1495,14 @@ DocType: Workflow State,map-marker,Карта-маркер apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Пуснете Issue DocType: Event,Repeat this Event,Повторете това събитие DocType: Address,Maintenance User,Поддържане на потребителя +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,Предпочитания за сортиране apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,"Избягвайте дати и години, които са свързани с вас." DocType: Custom DocPerm,Amend,Промени DocType: Data Import,Generated File,Генериран файл DocType: Transaction Log,Previous Hash,Предишна хеш DocType: File,Is Attachments Folder,Дали Прикачени Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,Отваряне на всички -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,"Изберете чат, за да започнете съобщения." +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,"Изберете чат, за да започнете съобщения." apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,"Моля, първо изберете Тип обект" apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,Изисква валиден Login ID. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,"Моля, изберете валиден CSV файл с данни" @@ -1476,26 +1515,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,Записът apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,първоначалната стойност DocType: Help Category,Help Category,Помощ - Категория apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,Потребителят {0} е деактивиран -apps/frappe/frappe/www/404.html +20,Page missing or moved,Страницата липсва или е преместена +apps/frappe/frappe/www/404.html +21,Page missing or moved,Страницата липсва или е преместена DocType: DocType,Route,маршрут apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay настройки портал на плащане +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,Извличане на приложените изображения от документа DocType: Chat Room,Name,Име DocType: Contact Us Settings,Skype,Skype apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,Надвишихте макс пространство на {0} за плана си. {1}. DocType: Chat Profile,Notification Tones,Тонове за известяване -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Търсене в документите +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,Търсене в документите DocType: OAuth Authorization Code,Valid,Валиден apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,Твоят език apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,Добави ред DocType: Tag Category,Doctypes,Doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,Query трябва да бъде SELECT -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,"Моля, прикачете файл, който да импортирате" -DocType: Auto Repeat,Completed,Завършен +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,Query трябва да бъде SELECT +DocType: Prepared Report,Completed,Завършен DocType: File,Is Private,Е лично DocType: Data Export,Select DocType,Изберете тип документ apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,Размер на файла надвишава максималния допустим размер от {0} MB -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,Създаден на +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,Създаден на DocType: Workflow State,align-center,подравняване-център DocType: Feedback Request,Is Feedback request triggered manually ?,Е заявка за обратна връзка задействана ръчно? DocType: Address,Lakshadweep Islands,Острови Лакшад @@ -1503,7 +1542,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Някои документи, като фактура, не трябва да се променят веднъж като са окончателни. Състоянието за такива документи се нарича Изпратен. Можете да ограничите какви роли може да правят ""Изпращане""." DocType: Newsletter,Test Email Address,Тест имейл адрес DocType: ToDo,Sender,Подател -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,"Грешка при оценката на известието {0}. Моля, поправете шаблона си." +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,"Грешка при оценката на известието {0}. Моля, поправете шаблона си." DocType: GSuite Settings,Google Apps Script,Google Apps Script apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Оставете коментар DocType: Web Page,Description for search engine optimization.,Описание за оптимизация на уеб сайтове. @@ -1513,7 +1552,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,В DocType: System Settings,Allow only one session per user,Оставя само една сесия на потребител apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Начало / Test Folder 1 / Test Folder 3 DocType: Website Settings,<head> HTML,HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,Изберете или плъзгайте по времеви слотове за създаване на ново събитие. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,Изберете или плъзгайте по времеви слотове за създаване на ново събитие. DocType: DocField,In Filter,Във филтър apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Канбан DocType: DocType,Show in Module Section,Покажи в Модул раздел @@ -1525,17 +1564,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",Страницата да се покаже на уеб сайта DocType: Note,Seen By Table,Видян от таблица -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,Изберете шаблон +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,Изберете шаблон apps/frappe/frappe/www/third_party_apps.html +47,Logged in,Влезлият apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,Неправилно потребителско име или парола apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,Изследвай apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Изпращане и входяща кутия по подразбиране DocType: System Settings,OTP App,OTP App +DocType: Dropbox Settings,Send Email for Successful Backup,Изпратете имейл за успешно създаване на резервно копие apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Документ ID DocType: Print Settings,Letter,Писмо -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,Полето за изображението трябва да бъде от тип Прикрепете Изображение +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,Полето за изображението трябва да бъде от тип Прикрепете Изображение DocType: DocField,Columns,Колони -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,Споделено с потребител {0} с достъп за четене +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,Споделено с потребител {0} с достъп за четене DocType: Async Task,Succeeded,Успя apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},Задължителни полета в {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,Фабрични Разрешения за {0}? @@ -1553,14 +1593,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,подравняване-ляво DocType: User,Defaults,Настройки по подразбиране DocType: Feedback Request,Feedback Submitted,Обратна връзка - Изпратена -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,Обединяване със съществуващото +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,Обединяване със съществуващото DocType: User,Birth Date,Рождена Дата DocType: Dynamic Link,Link Title,Препратка - Заглавие DocType: Workflow State,fast-backward,бързо назад DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,Петък -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,Редактиране на цяла страница +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,Редактиране на цяла страница DocType: Report,Add Total Row,Добави сумарен ред apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,"Моля, проверете регистрирания си имейл адрес за инструкции как да продължите. Не затваряйте този прозорец, тъй като ще трябва да се върнете към него." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,"Например, ако откажете и да измени INV004 тя ще се превърне в нов документ INV004-1. Това ви помага да следите всяко изменение." @@ -1581,11 +1621,10 @@ apps/frappe/frappe/www/feedback.html +96,Please give a detailed feebdack.,"Мо DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent",1 Валутна единица = [?] Части. Например: 1 щатски долар = 100 цента DocType: Data Import,Partially Successful,Частично успешно -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Твърде много потребители се влезли наскоро, така че регистрацията е забранена. Моля, опитайте отново след час" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Твърде много потребители се влезли наскоро, така че регистрацията е забранена. Моля, опитайте отново след час" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,Добави ново Правило за Разрешения apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Можете да използвате маска% DocType: Chat Message Attachment,Chat Message Attachment,Прикачване на съобщения в чата -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунт от Setup> Email> Email Account" apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Само разширения за снимка (.gif, .jpg, .jpeg, .tiff, .png, .svg) са позволени" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,Database Engine @@ -1606,7 +1645,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,Филиал DocType: System Settings,In Hours,В Часа apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,С бланки -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,Невалиден Outgoing Mail Server или Port +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,Невалиден Outgoing Mail Server или Port DocType: Custom DocPerm,Write,Напиши apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed to create Query / Script Reports,Само Администратор може да позволи да създадете Справки за заявки / скриптове apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,Актуализиране @@ -1615,28 +1654,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Използвайте тази fieldname за генериране на заглавието apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Импорт на имейл от apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,Покани като Потребител -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,Необходим е домашен адрес +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,Необходим е домашен адрес DocType: Data Migration Run,Started,Започната +DocType: Data Migration Run,End Time,Край (време) apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,Изберете Приложения apps/frappe/frappe/model/naming.py +113, for {0},за {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,"Имаше грешки. Моля, уведомете." +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,"Имаше грешки. Моля, уведомете." apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,Вие нямате право да отпечатате този документ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},Понастоящем се актуализира {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,"Моля, задайте филтри стойност в доклад Филтър маса." -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,Товарене Доклад +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,"Моля, задайте филтри стойност в доклад Филтър маса." +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,Товарене Доклад apps/frappe/frappe/limits.py +74,Your subscription will expire today.,Абонаментът ви ще изтече днес. DocType: Page,Standard,Стандарт -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Прикрепете File +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,Прикрепете File +DocType: Data Migration Plan,Preprocess Method,Метод на предварителна обработка apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Размер apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Назначението е завършено DocType: Desktop Icon,Idx,Idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

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

DocType: Address,Madhya Pradesh,Madhya Pradesh DocType: Deleted Document,New Name,Ново Име DocType: System Settings,Is First Startup,Първото стартиране DocType: Communication,Email Status,Email Статус apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,"Моля, запишете документа, преди да извадите присвояване" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,Вмъкни над -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,Коментарът може да бъде редактиран само от собственика +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,Коментарът може да бъде редактиран само от собственика DocType: Data Import,Do not send Emails,Не изпращайте имейли apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,Общи имена и презимена са лесни за отгатване. DocType: Auto Repeat,Draft,Чернова @@ -1648,14 +1690,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,Отмяна DocType: Contact,Replied,Отговорено DocType: Newsletter,Test,Тест DocType: Custom Field,Default Value,Стойност по подразбиране -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,"Уверете се," +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,"Уверете се," DocType: Workflow Document State,Update Field,Актуализация на поле DocType: Chat Profile,Enable Chat,Активиране на чата DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,Оставете този разговор -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},Опции не са определени за поле {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},Опции не са определени за поле {0} DocType: Customize Form,"Must be of type ""Attach Image""",Трябва да е от тип "Прикрепете Изображение" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,Премахни отметката от всички +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,Премахни отметката от всички apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},Можете да не изключено "Само за четене" за област {0} DocType: Auto Email Report,Zero means send records updated at anytime,Нула - означава изпращане на записи за актуализиране по всяко време apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,Пълна Setup @@ -1671,7 +1713,7 @@ DocType: Social Login Key,Google,Google DocType: Email Domain,Example Email Address,Примерен имейл адрес apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Най-използваният apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,Отписване от бюлетин -apps/frappe/frappe/www/login.html +83,Forgot Password,Забравена парола +apps/frappe/frappe/www/login.html +84,Forgot Password,Забравена парола DocType: Dropbox Settings,Backup Frequency,Честота на архивиране DocType: Workflow State,Inverse,Обратен DocType: DocField,User permissions should not apply for this Link,Потребителски разрешения не следва да се прилагат за този линк @@ -1688,6 +1730,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Списъ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,Актуализирани успешно DocType: Activity Log,Logout,Изход apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,"Разрешения по-високи нива са Невярно разрешенията на ниво. Всички полета имат набор Разрешение Level срещу тях, както и правилата, определени в този разрешения важат за областта. Това е полезно в случай, че искате да скриете или да направите дадена област само за четене за определени роли." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Настройка> Персонализиране на формуляра DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Въведете статични параметри на URL тук (Напр. Подател = ERPNext, потребителско име = ERPNext, парола = 1234 и т.н.)" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Ако тези инструкции, когато не помага, моля Ви добавете във вашите предложения за GitHub въпроси." DocType: Workflow State,bookmark,Отметка @@ -1699,12 +1742,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,"П apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} вече съществува. Изберете друго име apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,Обратните условия не съвпадат DocType: S3 Backup Settings,None,Нито един -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,Timeline поле трябва да бъде валиден FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,Timeline поле трябва да бъде валиден FIELDNAME DocType: GCalendar Account,Session Token,Символ за сесията DocType: Currency,Symbol,Символ -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,Ред # {0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,Ред # {0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,Нова парола е изпратена на емайла -apps/frappe/frappe/auth.py +272,Login not allowed at this time,Не е позволено влизането в този момент +apps/frappe/frappe/auth.py +286,Login not allowed at this time,Не е позволено влизането в този момент DocType: Data Migration Run,Current Mapping Action,Текущо действие за картографиране DocType: Email Account,Email Sync Option,Email Sync опция apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,Ред № @@ -1720,12 +1763,12 @@ DocType: Address,Fax,Факс apps/frappe/frappe/config/setup.py +263,Custom Tags,Персонализирани Tags DocType: Communication,Submitted,Изпратено DocType: System Settings,Email Footer Address,Email Footer Адрес -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,Таблицата е актуализирана +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,Таблицата е актуализирана DocType: Activity Log,Timeline DocType,Timeline DocType DocType: DocField,Text,Текст apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Изпращане по подразбиране DocType: Workflow State,volume-off,Изключване на звука -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},Харесан от {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},Харесан от {0} DocType: Footer Item,Footer Item,Footer точка ,Download Backups,Изтегляне на резервни копия apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Начало / Test Folder 1 @@ -1733,7 +1776,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me, DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,Към Дата apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Покажи провали работни места -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,Детайли +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,Детайли DocType: Property Setter,DocType or Field,DocType или Поле DocType: Communication,Soft-Bounced,Soft-Върната DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Ако е разрешено, всички потребители могат да влизат от всеки IP адрес с помощта на Two Factor Auth. Това може да бъде зададено само за конкретен потребител (и) в потребителската страница" @@ -1744,7 +1787,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,Имейлът бе преместен в кошчето DocType: Report,Report Builder,Report Builder DocType: Async Task,Task Name,Задача Име -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","Сесията ви е изтекла, моля, влезте отново, за да продължите." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","Сесията ви е изтекла, моля, влезте отново, за да продължите." DocType: Communication,Workflow,Workflow DocType: Website Settings,Welcome Message,Добре дошли DocType: Webhook,Webhook Headers,Уиндоук Headers @@ -1761,10 +1804,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,Печат на документи DocType: Contact Us Settings,Forward To Email Address,Препрати на имейл адрес apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Показване на всички данни -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,Заглавие поле трябва да бъде валиден fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,Заглавие поле трябва да бъде валиден fieldname apps/frappe/frappe/config/core.py +7,Documents,Документи DocType: Social Login Key,Custom Base URL,Потребителски базов URL адрес DocType: Email Flag Queue,Is Completed,е завършен +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,Получаване на полета apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} ви спомена в коментар apps/frappe/frappe/www/me.html +22,Edit Profile,Редактирай профил DocType: Kanban Board Column,Archived,Архивиран @@ -1774,17 +1818,18 @@ myfield 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/form/controls/date.js +49,Today,Днес +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,Днес apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"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: Error Log,Log of Scheduler Errors,Журнал на грешки за Scheduler DocType: User,Bio,Био DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Изпращане +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,"Родител е името на документа, към който ще бъдат добавени данните." apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,Покажи харесвания DocType: DocType,UPPER CASE,ГЛАВНИ БУКВИ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,Потребителски HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,Въведете име на папка -apps/frappe/frappe/auth.py +228,Unknown User,Неизвестен потребител +apps/frappe/frappe/auth.py +233,Unknown User,Неизвестен потребител apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,Изберете роля DocType: Communication,Deleted,Изтрити DocType: Workflow State,adjust,регулирайте @@ -1806,21 +1851,21 @@ DocType: Data Migration Connector,Database Name,Име на базата дан apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Обновяване Form DocType: DocField,Select,Изберете apps/frappe/frappe/utils/csvutils.py +29,File not attached,Файлът не е прикачен -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,Изгубената връзка. Възможно е някои функции да не работят. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,Изгубената връзка. Възможно е някои функции да не работят. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess",Повторения като "ААА" са лесни за отгатване -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,Нов чат +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,Нов чат 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,Показване на Раздел Рубрики DocType: Bulk Update,Limit,лимит -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},Не са намерени в пътя шаблон: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,Изход от всички сесии +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,Добавете нова секция +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},Не са намерени в пътя шаблон: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,Без имейл акаунт DocType: Communication,Cancelled,Отменен DocType: Chat Room,Avatar,Аватар DocType: Blogger,Posts,Публикации DocType: Social Login Key,Salesforce,Salesforce DocType: DocType,Has Web View,Има Уеб View -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","име DocType трябва да започва с буква и тя може да се състои само от букви, цифри, интервали и долни" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","име DocType трябва да започва с буква и тя може да се състои само от букви, цифри, интервали и долни" DocType: Communication,Spam,Спам DocType: Integration Request,Integration Request,интеграция Заявка apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,Уважаеми @@ -1836,16 +1881,18 @@ DocType: Communication,Assigned,Присвоен DocType: Print Format,Js,Js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,Изберете Print Format apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,Кратки модели на клавиатурата са лесни за отгатване +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,Генериране на нов отчет DocType: Portal Settings,Portal Menu,Portal Menu apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,Дължина на {0} трябва да бъде между 1 и 1000 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Търсене на нещо +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,Търсене на нещо DocType: Data Migration Connector,Hostname,Име на хост DocType: Data Migration Mapping,Condition Detail,Подробно състояние apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}",За валута {0} минималната стойност на транзакцията трябва да бъде {1} DocType: DocField,Print Hide,Print Скрий -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Въведете стойност +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,Въведете стойност DocType: Workflow State,tint,нюанс DocType: Web Page,Style,Стил +DocType: Prepared Report,Report End Time,Време за край на отчета apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,например: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} коментари apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,Версия актуализирана @@ -1858,10 +1905,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,Превключване на диаграми DocType: Website Settings,Sub-domain provided by erpnext.com,"Под-домейн, предоставен от erpnext.com" apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,Настройване на вашата система +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,Потомци на DocType: System Settings,dd-mm-yyyy,дд-мм-гггг -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,Трябва да има разрешение доклад за достъп до този доклад. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,Трябва да има разрешение доклад за достъп до този доклад. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,"Моля, изберете Минимален парола" -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,Добавен +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,Добавен apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,Абонирал се за един безплатен план за потребителите DocType: Auto Repeat,Half-yearly,Полугодишен apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,"Daily Digest събитие се изпраща за Календар на събитията, където са определени напомняния." @@ -1872,7 +1920,7 @@ DocType: Workflow State,remove,премахнете DocType: Email Domain,If non standard port (e.g. 587),Ако e нестандартeн порт (например 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,Презареди apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,Добавете собствени Tag Категории -apps/frappe/frappe/desk/query_report.py +227,Total,Общо +apps/frappe/frappe/desk/query_report.py +312,Total,Общо DocType: Event,Participants,Участниците DocType: Integration Request,Reference DocName,Референтен DocName DocType: Web Form,Success Message,Съобщение за успех @@ -1886,7 +1934,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,Build Report,Изграждане на справка DocType: Note,Notify users with a popup when they log in,"Уведоми потребителите с изскачащ прозорец, когато влязат" apps/frappe/frappe/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge","{0} {1} не съществува, изберете нова цел за сливане" -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",Резултати от търсенето за "{0}" DocType: Data Migration Connector,Python Module,Модул "Питон" DocType: GSuite Settings,Google Credentials,Удостоверения на Google apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,QR код за проверка на входа @@ -1895,8 +1942,8 @@ DocType: Footer Item,Company,Компания apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Възложен на мен apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Шаблоните на GSuite за интегриране с DocTypes DocType: User,Logout from all devices while changing Password,"Излизайте от всички устройства, докато променяте паролата" -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,Потвърдете Паролата -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Има грешки +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,Потвърдете Паролата +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,Има грешки apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Затвори apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,Не може да се промени docstatus от 0 на 2 DocType: File,Attached To Field,Прикачен към поле @@ -1906,7 +1953,7 @@ DocType: Transaction Log,Transaction Hash,Хеш на транзакция DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,"Моля, запишете бюлетина, преди да го изпратите" apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Конфигурирайте профилите за календара на Google -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},Опции трябва да бъде валиден DocType за поле {0} на ред {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},Опции трябва да бъде валиден DocType за поле {0} на ред {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Редактиране на стойности DocType: Patch Log,List of patches executed,Списък на изпълнени актуализации apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} е вече отписан @@ -1925,8 +1972,8 @@ DocType: Data Migration Connector,Authentication Credentials,Удостовер DocType: Role,Two Factor Authentication,Удостоверяване с два фактора apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,Плащане DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL -apps/frappe/frappe/model/base_document.py +508,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може да бъде ""{2}"". Тя трябва да бъде една от ""{3}""" -apps/frappe/frappe/utils/data.py +638,{0} or {1},{0} или {1} +apps/frappe/frappe/model/base_document.py +517,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може да бъде ""{2}"". Тя трябва да бъде една от ""{3}""" +apps/frappe/frappe/utils/data.py +640,{0} or {1},{0} или {1} apps/frappe/frappe/core/doctype/user/user.py +250,Password Update,Актуализация на парола DocType: Workflow State,trash,боклук DocType: System Settings,Older backups will be automatically deleted,"По-стари архиви, да се изтриват автоматично" @@ -1942,16 +1989,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,Рецидивирал apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Позицията не може да бъде добавена към собствените си потомци DocType: System Settings,Expiry time of QR Code Image Page,Срок на изтичане на QR кода на изображението -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,Показване на Общо +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,Показване на Общо DocType: Error Snapshot,Relapses,Рецидивите DocType: Address,Preferred Shipping Address,Предпочитана Адрес за доставка -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,С бланка +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,С бланка apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} създаде този {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 +38,Document is only editable by users of role,Документ може да се редактира само от потребителите на роля -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.","Задачата {0}, която сте задали за {1}, е затворена от {2}." +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.","Задачата {0}, която сте задали за {1}, е затворена от {2}." DocType: Print Format,Show Line Breaks after Sections,Покажи Line Breaks след раздели +DocType: Communication,Read by Recipient On,Прочетете от получателя DocType: Blogger,Short Name,Кратко Име -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},Стр. {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},Стр. {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},Свързано с {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1978,20 +2027,20 @@ DocType: Communication,Feedback,Обратна връзка apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,Отворете превод apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,Този имейл е автоматично генериран DocType: Workflow State,Icon will appear on the button,Ще се появи иконата на бутона -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Socketio не е свързан. Не може да се качи +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Socketio не е свързан. Не може да се качи DocType: Website Settings,Website Settings,Настройки Сайт apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,Месец DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Добави Reference: {{ reference_doctype }} {{ reference_name }} да изпратите документ за справка DocType: DocField,Fetch From,Извличане от apps/frappe/frappe/modules/utils.py +205,App not found,App не е намерен -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Не може да се създаде {0} срещу подчинен документ: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},Не може да се създаде {0} срещу подчинен документ: {1} DocType: Social Login Key,Social Login Key,Ключ за социално влизане DocType: Portal Settings,Custom Sidebar Menu,Персонализирано странично меню DocType: Workflow State,pencil,молив apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Чат съобщения и други уведомления. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},Вмъкни след не може да бъде зададено като {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Сподели {0} с -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,настройка на имейл акаунт моля въведете парола за: +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,настройка на имейл акаунт моля въведете парола за: DocType: Workflow State,hand-up,ръка-нагоре DocType: Blog Settings,Writers Introduction,Писатели Въведение DocType: Address,Phone,Телефон @@ -1999,18 +2048,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,Пасивен DocType: Contact,Accounts Manager,Роля Мениджър на 'Сметки' apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Плащането Ви е анулирано. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,Изберете Вид на файла +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,Изберете Вид на файла apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,Виж всички DocType: Help Article,Knowledge Base Editor,База от знание - Редактор apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Страницата не е намерена DocType: DocField,Precision,Точност DocType: Website Slideshow,Slideshow Items,Slideshow артикули apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,Опитайте се да се избегне повтарящи се думи и знаци -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,Има неуспешни изпълнения със същия План за мигриране на данни DocType: Event,Groups,Групи DocType: Workflow Action,Workflow State,Workflow-членка apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,Редове добавени -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,Успех! Вие сте добре да отидете 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,Успех! Вие сте добре да отидете 👍 apps/frappe/frappe/www/me.html +3,My Account,Моят Профил DocType: ToDo,Allocated To,Разпределена за apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,"Моля, кликнете върху следния линк, за да зададете нова парола" @@ -2018,36 +2066,39 @@ DocType: Notification,Days After,Дни след DocType: Newsletter,Receipient,Получатели DocType: Contact Us Settings,Settings for Contact Us Page,"Настройки на ""Връзка с нас""" DocType: Custom Script,Script Type,Script Type +DocType: Print Settings,Enable Print Server,Активиране на сървър за печат apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,Преди {0} седмици DocType: Auto Repeat,Auto Repeat Schedule,График за автоматично повтаряне DocType: Email Account,Footer,Footer apps/frappe/frappe/config/integrations.py +48,Authentication,заверка apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,Невалиден линк +DocType: Web Form,Client Script,Клиентски скрипт DocType: Web Page,Show Title,Покажи Заглавие DocType: Chat Message,Direct,Директен DocType: Property Setter,Property Type,Тип на имота DocType: Workflow State,screenshot,скрийншот apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Само администратор може да записва стандартна справка. Моля, преименувате и запазете." DocType: System Settings,Background Workers,Фонов режим Работници -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,"Име на поле {0}, което е в противоречие с мета обект" +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,"Име на поле {0}, което е в противоречие с мета обект" DocType: Deleted Document,Data,Данни apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Статус на документ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Вече са направени {0} от {1} DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Оторизационен код -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,Не е разрешено да импортира +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,Не е разрешено да импортира DocType: Deleted Document,Deleted DocType,Изтрити DocType apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Разрешение Нива DocType: Workflow State,Warning,Предупреждение DocType: Data Migration Run,Percent Complete,Процента завършени DocType: Tag Category,Tag Category,Етикет - Категория -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","Пренебрегването т {0}, защото съществува една група със същото име!" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,Помощ +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","Пренебрегването т {0}, защото съществува една група със същото име!" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,Помощ DocType: User,Login Before,Вход Преди DocType: Web Page,Insert Style,Вмъкни стил apps/frappe/frappe/config/setup.py +276,Application Installer,Application Installer -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,Ново име Справка +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,Ново име Справка +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,Скриване на уикендите DocType: Workflow State,info-sign,Инфо-знак -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Цена {0} не може да бъде даден списък +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,Цена {0} не може да бъде даден списък DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Как трябва да се форматира тази валута? Ако не е зададена, ще използва системните настройки" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,Изпратете {0} документи? apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,"Трябва да влезете в профила и да имате роля на системен мениджър, за да бъдете в състояние за достъп до архиви." @@ -2058,6 +2109,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,Роля - Права DocType: Help Article,Intermediate,Междинен apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,"Отменен документ, възстановен като чернова" +DocType: Data Migration Run,Start Time,Начален Час apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Не може да бъде изтрито или отменено, защото {0} {1} е свързано с {2} {3} {4}" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Може да чете apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} Графика @@ -2068,6 +2120,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Да споделя apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Невалиден адрес на получателя DocType: Workflow State,step-forward,стъпка напред +DocType: System Settings,Allow Login After Fail,Разрешаване на влизането след неуспех apps/frappe/frappe/limits.py +69,Your subscription has expired.,Абонаментът ви е изтекъл. DocType: Role Permission for Page and Report,Set Role For,Задайте роля DocType: GCalendar Account,The name that will appear in Google Calendar,"Името, което ще се показва в Google Календар" @@ -2076,7 +2129,7 @@ DocType: Event,Starts on,Започва на DocType: System Settings,System Settings,Системни настройки DocType: GCalendar Settings,Google API Credentials,Профили на Google API apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,Стартирането на сесията се провали -apps/frappe/frappe/email/queue.py +499,This email was sent to {0} and copied to {1},Този имейл е изпратен на {0} и копие до {1} +apps/frappe/frappe/email/queue.py +511,This email was sent to {0} and copied to {1},Този имейл е изпратен на {0} и копие до {1} DocType: Workflow State,th,тата DocType: Social Login Key,Provider Name,Име на доставчик apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},Създаване на нова {0} @@ -2090,35 +2143,38 @@ DocType: System Settings,Choose authentication method to be used by all users," apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Докторът е задължителен DocType: Workflow State,ok-sign,ОК-знак apps/frappe/frappe/config/setup.py +146,Deleted Documents,Изтрити документи -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,Форматът CSV е чувствителен към главни и малки букви +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,Форматът CSV е чувствителен към главни и малки букви apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,Иконата на работния плот вече съществува apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,Дубликат DocType: Newsletter,Create and Send Newsletters,Създаване и изпращане на бюлетини -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,От дата трябва да е преди днешна дата +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,От дата трябва да е преди днешна дата DocType: Address,Andaman and Nicobar Islands,Островите Андаман и Никобар -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,GSuite документ -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,"Моля, посочете кое поле за стойност трябва да се проверява" +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,GSuite документ +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,"Моля, посочете кое поле за стойност трябва да се проверява" apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Родителска"" означава главната таблица, в която трябва да се добави този ред" apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Този имейл адрес не може да се изпрати. Преминахте прага за изпращане на {0} имейла за този ден. DocType: Website Theme,Apply Style,Нанесете Style DocType: Feedback Request,Feedback Rating,Обратна връзка Рейтинг apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Споделено с +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,Прикачете файлове / URL адреси и добавете в таблицата. DocType: Help Category,Help Articles,Помощни статии apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Тип: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Плащането Ви не бе успешно. DocType: Communication,Unshared,неразделен DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Модулът не е намерен -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} е зададено да посочва {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} е зададено да посочва {2} DocType: User,Location,Местоположение ,Permitted Documents For User,Разрешени документи за потребителя apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",Трябва да има "Share" разрешение DocType: Communication,Assignment Completed,Прехвърляне Завършен -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},Масова редакция {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},Масова редакция {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,Изтегляне на отчета apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Не е активна DocType: About Us Settings,Settings for the About Us Page,"Настройки на ""За нас"" страницата" apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,Настройки на порта за плащане за ленти DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,напр pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,Генериране на клавиши apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Използвайте полето за филтриране на записи DocType: DocType,View Settings,Преглед на настройките DocType: Email Account,Outlook.com,Outlook.com @@ -2128,12 +2184,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,Изпратете ми копие на изходящи имейли DocType: System Settings,Scheduler Last Event,Scheduler последното събитие DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Добави Google Analytics ID: напр. UA-89XXX57-1. Моля потърсете помощ в Google Analytics. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,Парола не може да бъде по-дълга от 100 знака +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,Парола не може да бъде по-дълга от 100 знака DocType: OAuth Client,App Client ID,App Client ID DocType: Kanban Board,Kanban Board Name,Наименование на Канбан Табло DocType: Notification Recipient,"Expression, Optional","Expression, незадължително" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Копирайте и поставете този код във и изпразнете Code.gs в проекта си на script.google.com -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},Този имейл е изпратен на {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},Този имейл е изпратен на {0} DocType: System Settings,Hide footer in auto email reports,Скриване на долния колонтитул в автоматичните имейл съобщения DocType: DocField,Remember Last Selected Value,Запомни Последно избраната стойност DocType: Email Account,Check this to pull emails from your mailbox,Маркирайте това да дръпнете имейли от пощенската си кутия @@ -2149,15 +2205,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",Резултати от документацията за "{0}" DocType: Workflow State,envelope,плик apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Вариант 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,Отпечатването е неуспешно DocType: Feedback Trigger,Email Field,Email Поле -apps/frappe/frappe/www/update-password.html +68,New Password Required.,Нужна е нова парола. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,Нужна е нова парола. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} сподели този документ с {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,Добавете отзива си +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,Добавете отзива си DocType: Website Settings,Brand Image,Изображение на марката DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup на горната навигационна лента, долния и лого." DocType: Web Form Field,Max Value,Максимална стойност -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},За {0} на равнище {1} в {2} в ред {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},За {0} на равнище {1} в {2} в ред {3} DocType: User Social Login,User Social Login,Потребителско социално влизане DocType: Contact,All,Всички DocType: Email Queue,Recipient,Получател @@ -2166,27 +2223,27 @@ DocType: Address,Sales User,Продажби - потребител apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,"Drag и Drop инструмент, за да се изгради и да персонализирате формати на печат." DocType: Address,Sikkim,Сиким apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,Определете -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,Този стил на заявката е прекратен +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,Този стил на заявката е прекратен DocType: Notification,Trigger Method,Trigger Метод -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},Операторът трябва да бъде един от {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},Операторът трябва да бъде един от {0} DocType: Dropbox Settings,Dropbox Access Token,Доказателство за достъп до Dropbox DocType: Workflow State,align-right,подравняване-десен DocType: Auto Email Report,Email To,Email до apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,Папка {0} не е празна DocType: Page,Roles,Роли -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Грешка: липсва стойност за {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,Поле {0} не е избираемо. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},Грешка: липсва стойност за {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,Поле {0} не е избираемо. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,Сесия - Изтичане DocType: Workflow State,ban-circle,бан-кръг apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,Слаба грешка в Webhook DocType: Email Flag Queue,Unread,непрочетен DocType: Auto Repeat,Desk,Бюро -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),Филтърът трябва да е сорт или списък (в списък) +apps/frappe/frappe/utils/data.py +805,Filter must be a tuple or list (in a list),Филтърът трябва да е сорт или списък (в списък) apps/frappe/frappe/core/doctype/report/report.js +8,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) DocType: Address,Arunachal Pradesh,Аруначал Прадеш -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,Setup Auto Email +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Setup Auto Email apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + Надолу DocType: Chat Profile,Message Preview,Преглед на съобщенията apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,Това е топ-10 обща парола. @@ -2209,7 +2266,7 @@ DocType: OAuth Client,Implicit,косвен DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Добавяне като комуникация против този DocType (трябва да има области, "статут", "Тема")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI адреси за получаване на разрешение код веднъж на потребителя ви позволява достъп, както и отговорите на провал. Обикновено почивка крайна точка изложени от Клиента App.
например HTTP: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,Не е позволено да се промени {0} след подаването +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,Не е позволено да се промени {0} след подаването DocType: Data Migration Mapping,Migration ID Field,Поле за ID на миграцията DocType: Communication,Comment Type,Коментар Тип DocType: OAuth Client,OAuth Client,OAuth клиент @@ -2221,6 +2278,7 @@ DocType: DocField,Signature,Подпис apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Сподели с apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,Товарене apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","Въведете клавиши, за да се даде възможност за вход чрез Facebook, Google, GitHub." +DocType: Data Import,Insert new records,Поставете нови записи apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},Файловият формат не може да се чете за {0} DocType: Auto Email Report,Filter Data,Данни за филтриране apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,"Моля, първо прикачете файл." @@ -2237,7 +2295,7 @@ DocType: DocType,Title Case,Заглавие Case DocType: Data Migration Run,Data Migration Run,Мигриране на данни DocType: Blog Post,Email Sent,Email Изпратено DocType: DocField,Ignore XSS Filter,Игнорирайте XSS Филтър -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,премахнат +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,премахнат apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,Настройки на Dropbox архивиране apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,Изпрати като мейл DocType: Website Theme,Link Color,Цвят на Препратка @@ -2253,22 +2311,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,Настройки L apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,Име на обекта apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Променяне на apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal настройки за плащане - шлюз -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: "{1}" ({3}) ще получите пресечен, като макс символи право е {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: "{1}" ({3}) ще получите пресечен, като макс символи право е {2}" DocType: OAuth Client,Response Type,Вид отговор DocType: Contact Us Settings,Send enquiries to this email address,Изпратете запитвания до този имейл адрес DocType: Letter Head,Letter Head Name,Бланка - Име DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Брой колони за област в Списък View или Grid (Общо Колони трябва да са по-малко от 11) apps/frappe/frappe/config/website.py +18,User editable form on Website.,Потребителят може да се редактира формат на уебсайта. DocType: Workflow State,file,файл -apps/frappe/frappe/www/login.html +90,Back to Login,Обратно към вход +apps/frappe/frappe/www/login.html +91,Back to Login,Обратно към вход DocType: Data Migration Mapping,Local DocType,Local DocType apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,"Трябва да имате права за писане, за да преименувате" +DocType: Email Account,Use ASCII encoding for password,Използвайте ASCII кодиране за парола DocType: User,Karma,Карма DocType: DocField,Table,Таблица DocType: File,File Size,Размер на файла -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Трябва да се логнете за да изпратите този формуляр +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,Трябва да се логнете за да изпратите този формуляр DocType: User,Background Image,Изображение за фон -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},Не може да се зададе известие за типа документ {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},Не може да се зададе известие за типа документ {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","Изберете вашата държава, часова зона и валута" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,между @@ -2277,7 +2336,7 @@ DocType: Braintree Settings,Use Sandbox,Използвайте Sandbox apps/frappe/frappe/utils/goal.py +101,This month,Този месец apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,Нов персонализиран Print Format DocType: Custom DocPerm,Create,Създай -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},Невалиден Филтър: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},Невалиден Филтър: {0} DocType: Email Account,no failed attempts,няма неуспешни опити DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App на ключа за достъп @@ -2286,7 +2345,7 @@ DocType: Chat Room,Last Message,Последното съобщение DocType: OAuth Bearer Token,Access Token,Токен за достъп DocType: About Us Settings,Org History,Орг история apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Размер на резервното копие: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},Автоматичното повторение е {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},Автоматичното повторение е {0} DocType: Auto Repeat,Next Schedule Date,Следваща дата на графика DocType: Workflow,Workflow Name,Workflow Име DocType: DocShare,Notify by Email,Изпращайте по имейл @@ -2295,10 +2354,10 @@ DocType: Web Form,Allow Edit,Разрешаване на редакция apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,Поставяне DocType: Webhook,Doc Events,Документи за събития DocType: Auto Email Report,Based on Permissions For User,Въз основа на правата на потребителя -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},Не може да се промени състоянието на Отменен документ. Поредни Transition {0} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},Не може да се промени състоянието на Отменен документ. Поредни Transition {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Правила за това как държавите са преходи, като следващата държава и каква роля е позволено да се промени състоянието и т.н." apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} вече съществува -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},Добавяне към може да бъде един от {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},Добавяне към може да бъде един от {0} DocType: DocType,Image View,Вижте изображението apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Изглежда, че нещо се обърка по време на операцията. Тъй като не са потвърдили плащането, Paypal автоматично ще ви възстанови тази сума. Ако това не стане, моля изпратете ни имейл и Correlation ID: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Въведете в паролата символи, цифри и главни букви" @@ -2308,7 +2367,6 @@ DocType: List Filter,List Filter,Списък филтър DocType: Workflow State,signal,сигнал apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,Има прикачени файлове DocType: DocType,Show Print First,Покажи печатай първи -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Настройка> Потребител apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Направете нов {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,Нов имейл акаунт apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Документ възстановен @@ -2334,7 +2392,7 @@ DocType: Web Form,Web Form Fields,Web Form Полета DocType: Website Theme,Top Bar Text Color,Top Bar Цвят на текста DocType: Auto Repeat,Amended From,Променен от apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},Внимание: Не може да се намери {0} в таблица свързана с {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,"Този документ е в момента опашка за изпълнение. Моля, опитайте отново" +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,"Този документ е в момента опашка за изпълнение. Моля, опитайте отново" apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,"{0}" не е намерен файла apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Махни Раздел DocType: User,Change Password,Смени парола @@ -2344,19 +2402,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,Здрав apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,Настройките на Gateway за плащания на Braintree apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Край на събитието трябва да бъде след началото apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Това ще излезе {0} от всички останали устройства -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Не е нужно разрешение да получите отчет за: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},Не е нужно разрешение да получите отчет за: {0} DocType: System Settings,Apply Strict User Permissions,Прилагане на строги потребителски разрешения DocType: DocField,Allow Bulk Edit,Разрешаване на групово редактиране DocType: Blog Post,Blog Post,Блог - Статия -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,Разширено Търсене +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,Разширено Търсене apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Не ви е позволено да разглеждате бюлетина. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,Инструкции за възстановяване на паролата са изпратени на Вашия имейл +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,Инструкции за възстановяване на паролата са изпратени на Вашия имейл apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Ниво 0 е за разрешения на ниво документ, \ по-високи нива за разрешения на ниво поле." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,"Формулярът не може да бъде запазен, тъй като внасянето на данни е в ход." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,Sort By DocType: Workflow,States,Членки DocType: Notification,Attach Print,Прикрепете Print -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},Примерен Потребител: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Примерен Потребител: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,ден ,Modules,модули apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Задай икони за раб.площ @@ -2366,11 +2425,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,Отменен DocType: Web Page,Sidebar and Comments,Sidebar и Коментари apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Когато се изменя документ след Отмени и спести нея, тя ще получи нов номер, който е версия на стария номер." -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Не е разрешено да поставяте документ {0}, моля, активирайте Разрешаване на отпечатване за {0} в настройките за печат" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,See the document at {0},Вижте документа на {0} DocType: Stripe Settings,Publishable Key,Ключ за публикуване -apps/frappe/frappe/core/doctype/data_import/data_import.js +68,Start Import,Стартирайте импортирането +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,Стартирайте импортирането DocType: Workflow State,circle-arrow-left,Стрелка в кръг-наляво apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,"Redis кеш сървър не работи. Моля, свържете се с администратора / подкрепа Tech" apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Направете нов запис @@ -2378,7 +2437,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching, DocType: Currency,Fraction,Фракция DocType: LDAP Settings,LDAP First Name Field,LDAP Име - Поле apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,"за автоматично създаване на повтарящия се документ, за да продължите." -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,Изберете от съществуващите прикачени файлове +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,Изберете от съществуващите прикачени файлове DocType: Custom Field,Field Description,Поле Описание apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,Името не определя чрез Prompt 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"".","Въведете стойности по подразбиране (ключове) и стойности. Ако добавите няколко стойности за дадено поле, първата ще бъде избрана. Тези по подразбиране се използват и за задаване на правила за разрешение "съвпадение". За да видите списък с полета, отворете "Персонализиране на формуляра"." @@ -2398,6 +2457,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Вземи артикули DocType: Contact,Image,Изображение DocType: Workflow State,remove-sign,махни-знак +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,Не може да се свърже със сървъра apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,Няма данни за експортиране DocType: Domain Settings,Domains HTML,Домейни HTML apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,"Напишете нещо в полето за търсене, за да търсите" @@ -2425,33 +2485,34 @@ DocType: Address,Address Line 2,Адрес - Ред 2 DocType: Address,Reference,Препратка apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Възложените DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Данни за картографиране на данни за мигриране -DocType: Email Flag Queue,Action,Действие +DocType: Data Import,Action,Действие DocType: GSuite Settings,Script URL,URL адрес на скрипта -apps/frappe/frappe/www/update-password.html +119,Please enter the password,"Моля, въведете паролата" -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,Не е позволено да отпечатате анулирани документи +apps/frappe/frappe/www/update-password.html +111,Please enter the password,"Моля, въведете паролата" +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Не е позволено да отпечатате анулирани документи apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,Не е разрешено да се създаде колони DocType: Data Import,If you don't want to create any new records while updating the older records.,Ако не искате да създавате нови записи при актуализирането на по-старите записи. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Инфо: DocType: Custom Field,Permission Level,Ниво на достъп DocType: User,Send Notifications for Transactions I Follow,"Изпращай ми известия за транзакции, които следя" -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Cannot set Submit, Cancel, Amend without Write" -DocType: Google Maps,Client Key,Клиентски ключ -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Сигурни ли сте, че искате да изтриете прикачения файл?" -apps/frappe/frappe/__init__.py +1097,Thank you,Благодаря +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Cannot set Submit, Cancel, Amend without Write" +DocType: Google Maps Settings,Client Key,Клиентски ключ +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,"Сигурни ли сте, че искате да изтриете прикачения файл?" +apps/frappe/frappe/__init__.py +1178,Thank you,Благодаря apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Запазване DocType: Print Settings,Print Style Preview,Печат Style Preview apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,Икони -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Не е позволено да се актуализира този уеб форма Document +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,Не е позволено да се актуализира този уеб форма Document apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,имейли apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,"Моля, изберете първо тип документ" apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,"Моля, задайте базов URL адрес в социалния ключ за вход за Frappe" DocType: About Us Settings,About Us Settings,За нас Настройки DocType: Website Settings,Website Theme,Website Theme +DocType: User,Api Access,Api Access DocType: DocField,In List View,В списъчен изглед DocType: Email Account,Use TLS,Използване на TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Невалидна парола или потребителско име -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,Изтеглете шаблони +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,Изтеглете шаблони apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,Добави JavaScript форми. ,Role Permissions Manager,Мениджър на права за роля apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Името на новия Print Format @@ -2470,7 +2531,6 @@ DocType: Website Settings,HTML Header & Robots,HTML Header & Robots DocType: User Permission,User Permission,Потребителско разрешение apps/frappe/frappe/config/website.py +32,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,LDAP не е инсталиран -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,Свали с данни DocType: Workflow State,hand-right,ръка-надясно DocType: Website Settings,Subdomain,Поддомейн apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,Настройки за OAuth Provider @@ -2482,6 +2542,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,Идентификационен номер за идентификация по име apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,Плащането е отменено ,Addresses And Contacts,Адреси и контакти +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,"Моля, първо изберете типа на документа." apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Изчистване на журнал за грешки apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Моля изберете оценка apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,Нулиране на OTP Secret @@ -2490,19 +2551,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,Пре apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Категоризиране блог постове. DocType: Workflow State,Time,Време DocType: DocField,Attach,Прикрепете -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не е валидна информация за полето. Трябва да бъде {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не е валидна информация за полето. Трябва да бъде {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Изпрати Обратна връзка Заявка само ако има най-малко една комуникация е достъпно за документа. DocType: Custom Role,Permission Rules,Разрешение Правила DocType: Braintree Settings,Public Key,Публичен ключ DocType: GSuite Settings,GSuite Settings,Настройки на GSuite DocType: Address,Links,Връзки apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,"Моля, изберете типа на документа." -apps/frappe/frappe/model/base_document.py +396,Value missing for,Липсва Цена за +apps/frappe/frappe/model/base_document.py +405,Value missing for,Липсва Цена за apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,Добави Поделемент apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Осчетоводен Запис не може да бъде изтрит. DocType: GSuite Templates,Template Name,Име на шаблона apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,нов тип документ -DocType: Custom DocPerm,Read,Четене +DocType: Communication,Read,Четене DocType: Address,Chhattisgarh,Chhattisgarh DocType: Role Permission for Page and Report,Role Permission for Page and Report,Роля АКТ Пейдж и доклад apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Изравнете Value @@ -2512,9 +2573,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,Директната стая с {other} вече съществува. DocType: Has Domain,Has Domain,Има Домейн apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Скрии -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,Не сте регистриран? Регистрирай се +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,Не сте регистриран? Регистрирай се apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,Не може да се премахне полето ID -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,{0}: Cannot set Assign Amend if not Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,{0}: Cannot set Assign Amend if not Submittable DocType: Address,Bihar,Bihar DocType: Activity Log,Link DocType,Препратка DocType apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,Още нямате съобщения. @@ -2529,14 +2590,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Починени таблици са показани като таблица в други DocTypes. DocType: Chat Room User,Chat Room User,Потребител на стаята за чат apps/frappe/frappe/model/workflow.py +38,Workflow State not set,Работният поток не е зададен -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},Код на грешка: {0} +apps/frappe/frappe/www/404.html +23,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 +26,Error Code: {0},Код на грешка: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Описание на обявата страница, в обикновен текст, само няколко линии. (макс 140 знака)" DocType: Workflow,Allow Self Approval,Позволете само одобрение apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,Джон Доу DocType: DocType,Name Case,Име Case apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,Споделено с всички -apps/frappe/frappe/model/base_document.py +392,Data missing in table,Липсващи данни в таблица +apps/frappe/frappe/model/base_document.py +401,Data missing in table,Липсващи данни в таблица DocType: Web Form,Success URL,Успех URL DocType: Email Account,Append To,Добавяне към apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,Фиксирана височина @@ -2557,30 +2618,31 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,Robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,За съжаление! Споделяне с Website Потребителят е забранено. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,Добави всички роли +DocType: Website Theme,Bootstrap Theme,Bootstrap Тема apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!","Моля, въведете и двете си поща и съобщения, така че можем \ може да се свържем с вас. Благодаря!" -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,Не може да се свърже с изходящ сървър за електронна поща +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,Не може да се свърже с изходящ сървър за електронна поща apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Благодарим ви за проявения интерес към абонирате за нашите новини DocType: Braintree Settings,Payment Gateway Name,Име на платежния шлюз -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,Персонализирана колона +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,Персонализирана колона DocType: Workflow State,resize-full,преоразмеряване-пълно DocType: Workflow State,off,край apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,Повторно -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Справка {0} е деактивирана +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,Справка {0} е деактивирана DocType: Activity Log,Core,Сърцевина apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Задаване на разрешения DocType: DocField,Set non-standard precision for a Float or Currency field,Определете нестандартно прецизност за Float или валути поле DocType: Email Account,Ignore attachments over this size,Игнориране на прикачени файлове над този размер DocType: Address,Preferred Billing Address,Предпочитана Billing Адрес apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,Работният поток {0} не е разрешен -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,"Твърде много записи в една заявка. Моля, изпратете по-малки заявки" +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,"Твърде много записи в една заявка. Моля, изпратете по-малки заявки" apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Променени стойности DocType: Workflow State,arrow-up,стрелка нагоре DocType: OAuth Bearer Token,Expires In,Изтича В DocType: DocField,Allow on Submit,Разрешаване на Изпращане DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Тип Изключение -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,Избрани Колони +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Избрани Колони DocType: Web Page,Add code as <script>,"Добави код, както" DocType: Webhook,Headers,Заглавия apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,"Моля, въведете стойности за App ключа за достъп и App Secret Key" @@ -2599,6 +2661,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,Няма активни сесии DocType: Top Bar Item,Right,Дясно DocType: User,User Type,Вид потребител +DocType: Prepared Report,Ref Report DocType,Ref Доклад DocType apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,"Кликнете на таблицата, за да редактирате" DocType: GCalendar Settings,Client ID,Клиентски идентификационен номер DocType: Async Task,Reference Doc,Референтен Doc @@ -2617,18 +2680,18 @@ DocType: Workflow State,Edit,Редактирай apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Разрешения могат да бъдат управлявани чрез Setup> Мениджър Роля Permissions DocType: Website Settings,Chat Operators,Чат оператори DocType: Contact Us Settings,Pincode,ПИН код -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,"Моля, уверете се, че няма празни колони във файла." +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,"Моля, уверете се, че няма празни колони във файла." apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,"Моля, уверете се, че вашият профил има зададен имейл адрес" apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,"Имате незапазени промени в тази форма. Моля, запишете преди да продължите." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,Стойност по подразбиране за {0} трябва да бъде опция +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,Стойност по подразбиране за {0} трябва да бъде опция DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категория DocType: User,User Image,Потребител - Снимка -apps/frappe/frappe/email/queue.py +338,Emails are muted,Имейлите са заглушени +apps/frappe/frappe/email/queue.py +341,Emails are muted,Имейлите са заглушени apps/frappe/frappe/config/integrations.py +88,Google Services,Услуги на Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Ctrl + Нагоре DocType: Website Theme,Heading Style,Заглавие - Стил -apps/frappe/frappe/utils/data.py +625,1 weeks ago,преди 1 седмица +apps/frappe/frappe/utils/data.py +627,1 weeks ago,преди 1 седмица DocType: Communication,Error,Грешка DocType: Auto Repeat,End Date,Крайна Дата DocType: Data Import,Ignore encoding errors,Пренебрегвайте грешките при кодирането @@ -2636,6 +2699,7 @@ DocType: Chat Profile,Notifications,Известия DocType: DocField,Column Break,Разделител на Колона DocType: Event,Thursday,Четвъртък apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,Вие нямате разрешение за достъп до този файл +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,Запазване на тайните на API: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},Не може да се свърже анулирани документи: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,"Не може да редактирате стандартен отчет. Моля, копирайте и създайте нов отчет." apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","Компанията е задължителна, тъй като това е вашата фирмен адрес" @@ -2652,9 +2716,9 @@ DocType: Custom Field,Label Help,Етикет - Помощ DocType: Workflow State,star-empty,звезда-празна apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,Датите са често лесни за отгатване. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,Следващи действия -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Стандартното известие не може да се редактира. За да редактирате, моля, деактивирайте го и го дублирайте" +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Стандартното известие не може да се редактира. За да редактирате, моля, деактивирайте го и го дублирайте" DocType: Workflow State,ok,Добре -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,Изпратете прегледа +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,Изпратете прегледа DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Тези стойности ще бъдат актуализират автоматично при сделки и ще бъде полезен и за ограничаване на разрешения за този потребител върху сделките, съдържащи тези ценности." apps/frappe/frappe/twofactor.py +312,Verfication Code,Код за проверка apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,за генериране на повтарящи се @@ -2672,12 +2736,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Моля Подобрете да добавите повече от {0} абонати DocType: Workflow State,hand-left,ръка-наляво DocType: Data Import,If you are updating/overwriting already created records.,Ако актуализирате / презаписвате вече създадени записи. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} за {1} не може да бъде уникален +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} за {1} не може да бъде уникален apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,Това е глобално DocType: Email Account,Use SSL,Използване на SSL DocType: Workflow State,play-circle,игра-кръг apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",Невалиден израз "зависи_на" -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,Име на групата +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,Име на групата apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Изберете Print Формат за редактиране DocType: Address,Shipping,Доставки DocType: Workflow State,circle-arrow-down,Стрелка в кръг-надолу @@ -2695,23 +2759,23 @@ DocType: SMS Settings,SMS Settings,SMS Настройки DocType: Company History,Highlight,Маркиране DocType: OAuth Provider Settings,Force,сила DocType: DocField,Fold,Гънка +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,Възходящ apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standard Print формат не може да се актуализира apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,мис -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,"Моля, посочете" +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,"Моля, посочете" DocType: Communication,Bot,Bot DocType: Help Article,Help Article,Помощ статия DocType: Page,Page Name,Име на страницата apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Помощ: свойства на поле apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},Също добавяне на полето за зависимото валута {0} apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,Разархивиране -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},Неправилна стойност в ред {0}: {1} трябва да е {2} {3} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

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

-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},Изпратено Документът не може да се превръща отново да изготви проект. Поредни Transition {0} +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},Неправилна стойност в ред {0}: {1} трябва да е {2} {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},Изпратено Документът не може да се превръща отново да изготви проект. Поредни Transition {0} apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,Конфигурирайте интегрирането на вашия календар в Google -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},Изтриване на {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},Изтриване на {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,"Изберете съществуващ формат, за да редактирате или започнете нов формат." DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,"Байпас ограничен контрол на IP адреса, ако е разрешен два фактора Auth" -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},Създаден персонализирано поле {0} в {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},Създаден персонализирано поле {0} в {1} DocType: System Settings,Time Zone,Часова Зона apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Специални знаци не са позволени DocType: Communication,Relinked,свързва отново @@ -2727,7 +2791,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",Полето "маршрут" е задължително за уеб изгледи +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"Field ""route"" is mandatory for Web Views",Полето "маршрут" е задължително за уеб изгледи apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +205,Insert Column Before {0},Вмъкване на колона преди {0} DocType: Email Account,Add Signature,Добави подпис apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Напусна този разговор @@ -2737,9 +2801,9 @@ DocType: DocField,No Copy,Няма копие DocType: Workflow State,qrcode,QRCode DocType: Chat Token,IP Address,IP адрес DocType: Data Import,Submit after importing,Изпратете след импортирането -apps/frappe/frappe/www/login.html +32,Login with LDAP,Влез с LDAP +apps/frappe/frappe/www/login.html +33,Login with LDAP,Влез с LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,Ако Собственик +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,Ако Собственик DocType: Data Migration Mapping,Push,тласък DocType: OAuth Authorization Code,Expiration time,време изтичане DocType: Web Page,Website Sidebar,Сайт Sidebar @@ -2750,12 +2814,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} о apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,"All-главни букви е почти толкова лесно да се отгатне, тъй като всички-малки." DocType: Feedback Trigger,Email Fieldname,Email FIELDNAME DocType: Website Settings,Top Bar Items,Топ Бар артикули -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","Имейл адрес трябва да е уникално, имейл акаунт е вече съществува и \ за {0}" DocType: Notification,Print Settings,Настройки за печат DocType: Page,Yes,Да DocType: DocType,Max Attachments,Максимален брой прикачени файлове -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Клиентският ключ е задължителен +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,Клиентският ключ е задължителен DocType: Calendar View,End Date Field,Поле за край на датата DocType: Desktop Icon,Page,Страница apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Не можах да намеря {0} в {1} @@ -2764,21 +2826,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,База от знани DocType: Workflow State,briefcase,куфарче apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},"Стойността не може да бъде променяна, за {0}" DocType: Feedback Request,Is Manual,Е ръчно -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},Приложено Ви изпращаме {0} # {1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},Приложено Ви изпращаме {0} # {1} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style представлява цвета на бутона: Success - Green, Danger - Red, Inverse - Черно, Основно - Тъмно син, Info - Light Blue, Предупреждение - Orange" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Статус на ред DocType: Workflow Transition,Workflow Transition,Workflow Transition apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,Преди {0} месеца apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Създаден от -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,Dropbox Setup +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,Dropbox Setup DocType: Workflow State,resize-horizontal,преоразмеряване-хоризонтална DocType: Chat Message,Content,Съдържание DocType: Data Migration Run,Push Insert,Натиснете Insert apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,Група - Елемент DocType: Communication,Notification,нотификация DocType: DocType,Document,Документ -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},Номерация {0} вече се използва в {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,Неподдържан файлов формат +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},Номерация {0} вече се използва в {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,Неподдържан файлов формат DocType: DocField,Code,Код DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Всичко е възможно Workflow членки и роли на работния процес. Docstatus варианти: 0 е "Saved", 1 е "Внесена" и 2 е "Анулирани"" DocType: Website Theme,Footer Text Color,Footer Текст Color @@ -2789,13 +2851,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Невалидни пълномощията на шлюза за плащане DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Това е шаблонният файл, генериран само с някои грешки. Трябва да използвате този файл за корекция и импортиране." apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Задаване на разрешения за видовете и Роли на документи -apps/frappe/frappe/model/meta.py +160,No Label,Няма етикет +DocType: Data Migration Run,Remote ID,Дистанционно ID +apps/frappe/frappe/model/meta.py +205,No Label,Няма етикет +DocType: System Settings,Use socketio to upload file,Използвайте socketio за качване на файл apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,Индексирането е нарушено apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,Обновяване apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,Продължи apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,Променено от DocType: Address,Tripura,Трипура DocType: About Us Settings,"""Company History""","История на фирмата" +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,Този документ бе променен след изпращането на имейла. +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,Показване на отчета DocType: Address,Tamil Nadu,Tamil Nadu DocType: Email Rule,Email Rule,Email правило apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document","За да спрете изпращането на известия за повтарящи се грешки от системата, сме проверили полето Забранено в документа за автоматично повтаряне" @@ -2809,7 +2875,7 @@ DocType: Notification,Send alert if this field's value changes,"Изпрати apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Изберете DocType да се направи нов формат apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,"Получатели" не са посочени apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,точно сега -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Приложи +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,Приложи DocType: Footer Item,Policy,Полица apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} Настройки не са намерени DocType: Module Def,Module Def,Модул Дефиниция @@ -2823,7 +2889,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,О DocType: Print Settings,Allow page break inside tables,Разрешаване на пренос на страница вътре в таблица DocType: Email Account,SMTP Server,SMTP сървър DocType: Print Format,Print Format Help,Print Format Помощ -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,С групи +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,С групи DocType: DocType,Beta,Бета apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,Ограничете избор на икона за всички потребители. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},възстановено {0} като {1} @@ -2832,8 +2898,9 @@ DocType: DocField,Translatable,преводим DocType: Event,Every Month,Всеки Месец DocType: Letter Head,Letter Head in HTML,Бланка в HTML DocType: Web Form,Web Form,Web Form +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},Дата {0} трябва да бъде във формат: {1} DocType: About Us Settings,Org History Heading,Орг История - Заглавие -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Извинете. Вие сте достигнали максималния лимит на потребителя за вашия абонамент. Можете да деактивирате съществуващ потребител или купуват по-висок абонаментен план. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Извинете. Вие сте достигнали максималния лимит на потребителя за вашия абонамент. Можете да деактивирате съществуващ потребител или купуват по-висок абонаментен план. DocType: Print Settings,Allow Print for Cancelled,Разрешаване на печат за Отменен документ DocType: Communication,Integrations can use this field to set email delivery status,Интеграции могат да използват тази област да се създаде статут на имейл доставка DocType: Web Form,Web Page Link Text,Web Page Link Текст @@ -2846,13 +2913,12 @@ DocType: GSuite Settings,Allow GSuite access,Разрешете достъп н DocType: DocType,DESC,DESC DocType: DocType,Naming,Именуване DocType: Event,Every Year,Всяка Година -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,Избери всички +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,Избери всички apps/frappe/frappe/config/setup.py +247,Custom Translations,Персонализирани Преводи apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,Прогрес apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,от Роля apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,липсващи полета -apps/frappe/frappe/email/smtp.py +188,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Имейл акаунта не е настроен. Моля, създайте нов имейл адрес от Настройка> Имейл> Имейл акаунт" -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,Невалиден FIELDNAME "{0}" в autoname +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,Невалиден FIELDNAME "{0}" в autoname apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Търсене във вида на документ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,"Оставя се поле, за да остане редактира дори след подаването" DocType: Custom DocPerm,Role and Level,Роля и Ниво @@ -2861,14 +2927,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Персонализи DocType: Website Script,Website Script,Website Script DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Ако не използвате собствена публикация за Google Apps Script webapp, можете да използвате стандартната https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec" apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,Персонализиран HTML шаблон за печат на транзакции. -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,ориентация +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,ориентация DocType: Workflow,Is Active,Е активен -apps/frappe/frappe/desk/form/utils.py +111,No further records,Няма повече записи +apps/frappe/frappe/desk/form/utils.py +114,No further records,Няма повече записи DocType: DocField,Long Text,Дълъг текст DocType: Workflow State,Primary,Първичен -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},"Моля, не променяйте редовете над {0}" +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},"Моля, не променяйте редовете над {0}" DocType: Web Form,Go to this URL after completing the form (only for Guest users),Отидете на този URL след попълване на формуляра (само за Гост потребители) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Ctrl + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Повече информация DocType: Data Migration Mapping,Field Maps,Полеви карти DocType: Desktop Icon,Desktop Icon,Икона за Работен плот @@ -2889,13 +2955,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,Настройки на ивицата DocType: Data Migration Mapping,Data Migration Mapping,Мапинг на миграцията на данни apps/frappe/frappe/www/login.py +89,Invalid Login Token,Невалиден токън за вход -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,Отхвърляне +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,Отхвърляне apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,преди 1 час DocType: Website Settings,Home Page,Начална страница DocType: Error Snapshot,Parent Error Snapshot,Родител Snapshot Error -DocType: Kanban Board,Filters,Филтри +DocType: Prepared Report,Filters,Филтри DocType: Workflow State,share-alt,share-alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},Опашката трябва да бъде една от {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},Опашката трябва да бъде една от {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2914,12 +2980,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,Script или Query доклади
 DocType: Workflow Document State,Workflow Document State,Workflow Document членка
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,Файлът е твърде голям
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,Имейл акаунт добавя няколко пъти
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,Имейл акаунт добавя няколко пъти
 DocType: Payment Gateway,Payment Gateway,Портал за плащания
 DocType: Portal Settings,Hide Standard Menu,Скриване на стандартното меню
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,Добави / Управление на имейл домейни.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},Не може да се отмени преди изпращане. Вижте Transition {0}
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,Print Format {0} е деактивиран
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},Не може да се отмени преди изпращане. Вижте Transition {0}
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Format {0} е деактивиран
 ,Address and Contacts,Адрес и контакти
 DocType: Notification,Send days before or after the reference date,Изпрати дни преди или след референтната дата
 DocType: User,Allow user to login only after this hour (0-24),Позволи на потребителя да се логнете само след този час (0-24)
@@ -2929,7 +2995,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,Предвидими замествания като "@" вместо "а" не помагат много.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Възложени от мен
 apps/frappe/frappe/utils/data.py +528,Zero,нула
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не е в режим на програмиста! Разположен в site_config.json или да направите "по поръчка" DocType.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не е в режим на програмиста! Разположен в site_config.json или да направите "по поръчка" DocType.
 DocType: Workflow State,globe,глобус
 DocType: System Settings,dd.mm.yyyy,дд.мм.гггг
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,Скриване на поле в стандартен формат за печат
@@ -2942,19 +3008,21 @@ DocType: DocType,Allow Import (via Data Import Tool),Позволете Import (
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,Номер
 DocType: DocField,Float,Плаващ
 DocType: Print Settings,Page Settings,Настройки на страницата
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,Се запазва ...
 DocType: Auto Repeat,Submit on creation,Подаване на създаване
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,грешна парола
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,грешна парола
 DocType: Contact,Purchase Master Manager,Покупка Майстор на мениджъра
 DocType: Module Def,Module Name,Модул име
 DocType: DocType,DocType is a Table / Form in the application.,DocType е таблица / Form в заявлението.
 DocType: Social Login Key,Authorize URL,Упълномощен URL адрес
 DocType: Email Account,GMail,GMail
 DocType: Address,Party GSTIN,Партия GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} Доклад
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Доклад
 DocType: SMS Settings,Use POST,Използвайте POST
 DocType: Communication,SMS,SMS
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,Извличане на изображения
 DocType: DocType,Web View,уеб View
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,Внимание: Този формат за печат е в стар стил и не може да бъде генериран чрез API.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,Внимание: Този формат за печат е в стар стил и не може да бъде генериран чрез API.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,Общо
 DocType: DocField,Print Width,Print Width
 ,Setup Wizard,Помощник за инсталиране
@@ -2963,6 +3031,7 @@ DocType: Chat Message,Visitor,посетител
 DocType: User,Allow user to login only before this hour (0-24),Позволи на потребителя да се логнете само преди този час (0-24)
 DocType: Social Login Key,Access Token URL,URL адрес за достъп до тон
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,Папка е задължително
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} възложено {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,Ново съобщение от Website Свържи Page
 DocType: Notification,Reference Date,Референтен Дата
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,Моля въведете валидни мобилни номера
@@ -2989,21 +3058,22 @@ DocType: DocField,Small Text,Малък Текст
 DocType: Workflow,Allow approval for creator of the document,Позволете одобрение за създателя на документа
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,API Endpoint Args
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,Администратора е влизал на {0} на {1} чрез IP адрес {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,Администратора е влизал на {0} на {1} чрез IP адрес {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,Равно
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Тип на полето Options "Dynamic Link" трябва да сочи към друг Link Невярно с опции като "DocType"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Тип на полето Options "Dynamic Link" трябва да сочи към друг Link Невярно с опции като "DocType"
 DocType: About Us Settings,Team Members Heading,Членове на екипа - заглавие
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,Невалиден CSV формат
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Определете брой резервни копия
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,"Моля, поправете"
 DocType: DocField,Do not allow user to change after set the first time,Да не се допуска потребител да се промени след задаване за първи път
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Private или Public?
-apps/frappe/frappe/utils/data.py +633,1 year ago,Преди 1 година
+apps/frappe/frappe/utils/data.py +635,1 year ago,Преди 1 година
 DocType: Contact,Contact,Контакт
 DocType: User,Third Party Authentication,Автентикация от трета страна
 DocType: Website Settings,Banner is above the Top Menu Bar.,Рекламата е над Top Menu Bar.
-DocType: Razorpay Settings,API Secret,API Secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,Export Доклад:
+DocType: User,API Secret,API Secret
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} Календар
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,Export Доклад:
 DocType: Data Migration Run,Push Update,Натиснете Update
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,в документа за автоматично повтаряне
 DocType: Email Account,Port,Порт
@@ -3014,7 +3084,7 @@ DocType: Website Slideshow,Slideshow like display for the website,Slideshow ка
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,Известия за настройка въз основа на различни критерии.
 DocType: Communication,Updated,Обновено
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,Изберете Module
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,Търсете или създайте нов чат
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,Търсете или създайте нов чат
 apps/frappe/frappe/sessions.py +29,Cache Cleared,Кешът е изчистен
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,Нов имейл
@@ -3030,7 +3100,7 @@ DocType: Print Settings,PDF Settings,PDF Настройки
 DocType: Kanban Board Column,Column Name,Колона Име
 DocType: Language,Based On,Базиран на
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Направи по подразбиране
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} за {1} не може да се индексира
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} за {1} не може да се индексира
 DocType: Communication,Email Account,Имейл акаунт
 DocType: Workflow State,Download,Изтегляне
 DocType: Blog Post,Blog Intro,Блог - Въведение
@@ -3044,7 +3114,7 @@ DocType: Web Page,Insert Code,Вмъкни код
 DocType: Data Migration Run,Current Mapping Type,Текущ тип на картографиране
 DocType: ToDo,Low,Нисък
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,"Можете да добавите динамични свойства на документа, с помощта Джинджа темплейт."
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Невалиден лимит {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},Невалиден лимит {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Списък на тип документ
 DocType: Event,Ref Type,Ref Type
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ако качвате нови рекорди, оставете "име" (ID) колона заготовката."
@@ -3066,21 +3136,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,
 DocType: Print Settings,Send Print as PDF,Изпрати Принтирай като PDF
 DocType: Web Form,Amount,Стойност
 DocType: Workflow Transition,Allowed,Разрешен
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,Не може да има само едно стадо във форма
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,Не може да има само едно стадо във форма
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},Не може да се напише файлов формат за {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Възстановяване на настройките по подразбиране?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Невалиден Home Page
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,Невалиден вход. Опитайте пак.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},"Опциите, които се изискват за поле на връзката или тип таблица {0} на ред {1}"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},"Опциите, които се изискват за поле на връзката или тип таблица {0} на ред {1}"
 DocType: Auto Email Report,Send only if there is any data,Изпрати само ако има някаква информация
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,Премахване на филтрите
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0}: Разрешение на ниво 0 трябва да бъде зададено преди да се определят по-високи нива
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,Премахване на филтрите
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0}: Разрешение на ниво 0 трябва да бъде зададено преди да се определят по-високи нива
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Назначението е затворено от {0}
 DocType: Integration Request,Remote,отдалечен
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Изчисли
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Моля, изберете DocType първо"
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,Потвърдете Вашият Email
-apps/frappe/frappe/www/login.html +40,Or login with,Или влезте с
+apps/frappe/frappe/www/login.html +41,Or login with,Или влезте с
 DocType: Error Snapshot,Locals,Местните жители
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Съобщено посредством {0} от {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} ви спомена в коментар в {1}
@@ -3090,23 +3160,24 @@ DocType: Integration Request,Integration Type,Вид интеграция
 DocType: Newsletter,Send Attachements,Изпрати прикачванията
 DocType: Transaction Log,Transaction Log,Дневник на транзакциите
 DocType: Contact Us Settings,City,Град
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,Ctrl + Enter за изпращане
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,Ctrl + Enter за изпращане
 DocType: DocField,Perm Level,Ниво на достъп
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,Преглед на документа
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Събития в днешния Calendar
 DocType: Web Page,Web Page,Уеб Страница
 DocType: Workflow Document State,Next Action Email Template,Следващ шаблон за имейл действия
 DocType: Blog Category,Blogger,Списвач на блог
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},"В глобалното търсене" не е разрешено за тип {0} на ред {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},"В глобалното търсене" не е разрешено за тип {0} на ред {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,Вижте Списък
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},Датата трябва да бъде във формат: {0}
 DocType: Workflow,Don't Override Status,Не променяй статуса
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Моля, дайте оценка."
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Заявка за Обратна връзка
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Дума за търсене
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,Първият потребител: Вие
 DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
+DocType: Prepared Report,Report Start Time,Докладвайте за началното време
 apps/frappe/frappe/config/setup.py +112,Export Data,Експорт на данни
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,Изберете Колони
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,Изберете Колони
 DocType: Translation,Source Text,Източник Текст
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,Липсващи параметри за влизане
 DocType: Workflow State,folder-open,папка-отворена
@@ -3119,7 +3190,7 @@ DocType: Property Setter,Set Value,Зададена стойност
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Скриване поле във форма
 DocType: Webhook,Webhook Data,Webhook Данни
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},Създаване на {0}
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,"Неправомерен токън за достъп. Моля, опитайте отново"
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,"Неправомерен токън за достъп. Моля, опитайте отново"
 apps/frappe/frappe/public/js/frappe/desk.js +92,"The application has been updated to a new version, please refresh this page","Заявлението беше обновен до нова версия, моля обновите тази страница"
 apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Повторно изпращане
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,"По желание: Сигналът ще бъде изпратен, ако този израз е вярно"
@@ -3133,8 +3204,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,Ниво
 DocType: Custom DocPerm,Report,Справка
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Сумата трябва да бъде по-голямо от 0.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} е записан
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,Потребителят {0} не може да бъде преименуван
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} е записан
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,Потребителят {0} не може да бъде преименуван
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),FIELDNAME е ограничен до 64 знака ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,Списък Group Email
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Икона на файл с разширение .ico. Трябва да бъде 16 х 16 пиксела. Образувани с помощта на уеб иконата генератор. [favicon-generator.org]
@@ -3147,23 +3218,22 @@ DocType: Website Theme,Background,Фонов режим
 DocType: Report,Ref DocType,Ref DocType
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,"Моля, въведете Клиентски идентификатор, преди да е активирано социалното влизане"
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Моля, добавете рейтинг"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0}: Cannot set Amend without Cancel
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{0}: Cannot set Amend without Cancel,{0}: Cannot set Amend without Cancel
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Пълна страница
 DocType: DocType,Is Child Table,Е подчинена таблица
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} години преди
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} трябва да бъде един от {1}
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} трябва да бъде един от {1}
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} в момента разглежда този документ
 apps/frappe/frappe/config/core.py +52,Background Email Queue,Опашка за имейли във фонов режим
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,Задаване на нова парола
 DocType: Communication,Opened,Отворен
 DocType: Workflow State,chevron-left,Стрелка-ляво
 DocType: Communication,Sending,Изпращане
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,Не е позволено от този IP адрес
+apps/frappe/frappe/auth.py +272,Not allowed from this IP Address,Не е позволено от този IP адрес
 DocType: Website Slideshow,This goes above the slideshow.,Това се отнася по-горе слайдшоу.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,Инсталиране на приложения.
 DocType: Contact,Last Name,Фамилия
 DocType: Event,Private,Частен
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,Няма сигнали за днес
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,Няма сигнали за днес
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Изпрати Email Print Прикачени като PDF (препоръчително)
 DocType: Web Page,Left,Наляво
 DocType: Event,All Day,Цял Ден
@@ -3174,10 +3244,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",Полето за
 apps/frappe/frappe/utils/bot.py +43,I found these: ,Намерих тези:
 DocType: Event,Send an email reminder in the morning,Изпращане на електронна поща напомняне на сутринта
 DocType: Blog Post,Published On,Публикуван на
-apps/frappe/frappe/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не бе намерен стандартният шаблон за адреси. Моля, създайте нов от Setup> Printing and Branding> Address Template."
 DocType: Contact,Gender,Пол
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Задължителната информация липсва:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0} ""не може да бъде зададено като уникално, тъй като има не-уникални стойности"
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,Задължителната информация липсва:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0} ""не може да бъде зададено като уникално, тъй като има не-уникални стойности"
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Проверете URL адреса
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,Само 200 добавяния се допускат в една заявка
 DocType: Footer Item,URL,URL
@@ -3193,12 +3262,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Дърво
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,Не е разрешено да се отпечатва отчета
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Потребителски права
 DocType: Workflow State,warning-sign,предупредителен-знак
+DocType: Prepared Report,Prepared Report,Готов доклад
 DocType: Workflow State,User,Потребител
 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Покажи заглавие в прозореца на браузъра като "Prefix - заглавие"
 DocType: Payment Gateway,Gateway Settings,Настройки на порта
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,текст на вида документ
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Изпълнявайте тестове
-apps/frappe/frappe/handler.py +94,Logged Out,Излязохте
+apps/frappe/frappe/handler.py +95,Logged Out,Излязохте
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Повече...
 DocType: System Settings,User can login using Email id or Mobile number,Потребителят може да влезе с имейл или мобилен номер
 DocType: Bulk Update,Update Value,Актуализация на стойността
@@ -3206,12 +3276,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,"Моля, изберете ново име, което да преименувате"
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,Невалидна колона
 DocType: Data Migration Connector,Data Migration,Мигриране на данни
+DocType: User,API Key cannot be  regenerated,API ключът не може да бъде регенериран
 apps/frappe/frappe/public/js/frappe/request.js +167,Something went wrong,Нещо се обърка
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,"Показват се само {0} записа. Моля, филтрирайте за по-конкретни резултати."
 DocType: System Settings,Number Format,Number Format
 DocType: Auto Repeat,Frequency,честота
 DocType: Custom Field,Insert After,Вмъкни след
-DocType: Report,Report Name,Справка Име
+DocType: Prepared Report,Report Name,Справка Име
 DocType: Desktop Icon,Reverse Icon Color,Обратните Икона Color
 DocType: Notification,Save,Запази
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,Следваща насрочена дата
@@ -3224,13 +3295,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,Неустойка
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} добавен
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Търсене за '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,"Моля, запишете справката първо"
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Моля, запишете справката първо"
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,Добавени {0} абонати
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,Не в
 DocType: Workflow State,star,звезда
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,Главина
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,"стойности, разделени със запетаи"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,Max width for type Currency is 100px in row {0},Max ширина за вид валута е 100px в ред {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +281,values separated by commas,"стойности, разделени със запетаи"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Max width for type Currency is 100px in row {0},Max ширина за вид валута е 100px в ред {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Моля, споделете вашето мнение за {0}"
 apps/frappe/frappe/config/website.py +13,Content web page.,Съдържание уеб страница.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Добави нова роля
@@ -3243,15 +3314,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,Записите за следващите доктове ще бъдат филтрирани
 DocType: Blog Settings,Blog Introduction,Блог - Въведение
 DocType: Address,Office,Офис
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,Това Kanban табло ще бъде частно
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,Това Kanban табло ще бъде частно
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Стандартни отчети
 DocType: User,Email Settings,Email настройки
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,"Моля, въведете паролата си, за да продължите"
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,"Моля, въведете паролата си, за да продължите"
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,Не е валидно потребителско LDAP
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} не е валидна Област
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} не е валидна Област
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',"Моля, изберете друг начин на плащане. PayPal не поддържа транзакции с валута "{0}""
 DocType: Chat Message,Room Type,Тип стая
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,Поле за търсене {0} не е валидно
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,Поле за търсене {0} не е валидно
 DocType: Workflow State,ok-circle,OK-кръг
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Можете да намерите неща, като попита "намери оранжево в клиенти""
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,За съжаление! Потребителят трябва да има пълен достъп до собствения си рекорд.
@@ -3267,21 +3338,21 @@ DocType: DocField,Unique,Уникален
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Частичен успех
 DocType: Email Account,Service,Обслужване
 DocType: File,File Name,Име На Файл
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),Не намерихте {0} за {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),Не намерихте {0} за {0} ({1})
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Опа, не ви е позволено да се знае, че"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Следващ
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,Вие излязохте от системата успешно
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,Вие излязохте от системата успешно
 DocType: Calendar View,Calendar View,Календарен изглед
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Редактиране на Формат
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,Пълна Регистрация
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,Пълна Регистрация
 DocType: GCalendar Settings,Enable,Активиране
-DocType: Google Maps,Home Address,Начален адрес
+DocType: Google Maps Settings,Home Address,Начален адрес
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),Нов {0} (Ctrl + B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar Цвят и Цвят на текста са еднакви. Те трябва да се имат добра разлика може да се чете.
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Можете да качите само до запълването 5000 записи с един замах. (Може да бъде по-малко в някои случаи)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},Недостатъчно разрешение за {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),Справката не беше запазена (имаше грешки)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,Не може да се промени съдържанието на заглавката
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),Справката не беше запазена (имаше грешки)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,Не може да се промени съдържанието на заглавката
 DocType: Print Settings,Print Style,Print Style
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Не е свързан с никакви записи
 DocType: Custom DocPerm,Import,Импорт
@@ -3310,9 +3381,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,"Моля, опреснете, за да получите най-новата документа."
 DocType: User,Security Settings,Настройки за сигурност
 DocType: Website Settings,Operators,Операторите
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,Добави Колона
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,Добави Колона
 ,Desktop,Работен плот
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},Експортиран отчет: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},Експортиран отчет: {0}
 DocType: Auto Email Report,Filter Meta,Филтър Meta
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Текст, за да бъде показана за Линк към Web Page ако този формуляр има уеб страница. Link маршрут автоматично ще се генерира на базата на `page_name` и` parent_website_route`"
 DocType: Feedback Request,Feedback Trigger,Обратна връзка Trigger
@@ -3339,6 +3410,6 @@ DocType: Bulk Update,Max 500 records at a time,Не повече от 500 зап
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ако данните са ви в HTML, моля копирате и поставите точния HTML код с таговете."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,Не може да се отвори прикачен файл. Експортирахте ли го като CSV?
 DocType: DocField,Ignore User Permissions,Игнориране на потребителски права
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,"Моля, посъветвайте се с администратора си, за да потвърдите регистрацията"
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,"Моля, посъветвайте се с администратора си, за да потвърдите регистрацията"
 DocType: Domain Settings,Active Domains,Активни домейни
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,Покажи дневник
diff --git a/frappe/translations/bn.csv b/frappe/translations/bn.csv
index 56e2929c6e..fcf2d2fcf9 100644
--- a/frappe/translations/bn.csv
+++ b/frappe/translations/bn.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,একটি পরিমাণ ক্ষেত্র নির্বাচন করুন.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Esc চাপুন প্রেস বন্ধ করার
-apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","একটি নতুন টাস্ক, {0}, {1} দ্বারা আপনার জন্য নির্দিষ্ট করা হয়েছে. {2}"
+apps/frappe/frappe/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}","একটি নতুন টাস্ক, {0}, {1} দ্বারা আপনার জন্য নির্দিষ্ট করা হয়েছে. {2}"
 DocType: Email Queue,Email Queue records.,ইমেল সারি রেকর্ড.
 DocType: Address,Punjab,পাঞ্জাব
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,একটি CSV ফাইল আপলোড করে অনেক জিনিস নামান্তর.
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,ওয়েবসাইট
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,আপনি এই পৃষ্ঠায় যাওয়ার জন্য লগ ইন করতে হবে
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,নোট: একাধিক সেশন মোবাইল ডিভাইস এর ক্ষেত্রে অনুমতি দেওয়া হবে
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},ব্যবহারকারীর জন্য সক্রিয় ইমেইল ইনবক্সে {ব্যবহারকারীদের}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},ব্যবহারকারীর জন্য সক্রিয় ইমেইল ইনবক্সে {ব্যবহারকারীদের}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,এই ইমেইল পাঠাতে পারবেন না. আপনি এই মাসের জন্য {0} ইমেইল পাঠানোর সীমা অতিক্রম করেছেন.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,স্থায়ীভাবে {0} পাঠাবেন?
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,ফাইল ব্যাকআপ ডাউনলোড করুন
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} বৃক
 DocType: User,User Emails,ব্যবহারকারীর ই-মেইল
 DocType: User,Username,ইউজারনেম
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,জিপ আমদানি করুন
-apps/frappe/frappe/model/base_document.py +554,Value too big,মান অত্যন্ত বড়
+apps/frappe/frappe/model/base_document.py +563,Value too big,মান অত্যন্ত বড়
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,চালান স্ক্রিপ্ট টেস্ট
 DocType: Data Import,Total Rows,মোট সারি
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,লগ
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,উপরে উল্লিখিত পুনরাবৃত্তির জন্য নিজেই আজ এই পদক্ষেপ নেওয়া প্রয়োজন
 DocType: Custom DocPerm,This role update User Permissions for a user,একটি ব্যবহারকারীর জন্য এই ভূমিকা আপডেট ব্যবহারকারীর অনুমতি
-apps/frappe/frappe/public/js/frappe/model/model.js +539,Rename {0},পুনঃনামকরণ {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},পুনঃনামকরণ {0}
 DocType: Workflow State,zoom-out,ছোট করা
 apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,এটি খোলা যাবে না {0} তার উদাহরণস্বরূপ খোলা থাকলে
-apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,ছক {0} খালি রাখা যাবে না
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,ছক {0} খালি রাখা যাবে না
 DocType: SMS Parameter,Parameter,স্থিতিমাপ
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,লেজার দিয়ে
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,নথি পরিবর্তন করা হয়েছে!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,লেজার দিয়ে
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,চিত্র
 DocType: Activity Log,Reference Owner,রেফারেন্স মালিক
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","যদি সক্রিয় থাকে, ব্যবহারকারী দুটি ফ্যাক্টর Auth ব্যবহার করে যেকোনো IP ঠিকানা থেকে লগইন করতে পারবেন, এটি সিস্টেম সেটিংসে সমস্ত ব্যবহারকারীর জন্যও সেট করা যেতে পারে"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,ক্ষুদ্রতম প্রচারক ভগ্নাংশ ইউনিট (মুদ্রা). এটা 0.01 হিসাবে প্রবেশ করা উচিত এবং ইউএসডি জন্য যেমন 1 শতাংশ
 DocType: Social Login Key,GitHub,গিটহাব
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, সারি {1}"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, সারি {1}"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,একটি FULLNAME দিন দয়া করে।
-apps/frappe/frappe/model/document.py +1057,Beginning with,শুরু
+apps/frappe/frappe/model/document.py +1058,Beginning with,শুরু
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,ডেটা আমদানি টেমপ্লেট
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,মাতা
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","সক্রিয় করা হলে, পাসওয়ার্ড ক্ষমতা নূন্যতম পাসওয়ার্ড স্কোরের মান উপর ভিত্তি করে প্রয়োগ করা হবে। 2 এর একটি মান মাঝারি শক্তিশালী হচ্ছে এবং 4 খুব শক্তিশালী হচ্ছে।"
 DocType: About Us Settings,"""Team Members"" or ""Management""","টিম সদস্য" বা "ম্যানেজমেন্ট"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',মাঠের 'চেক' টাইপ-এর জন্য ডিফল্ট হয় '0' বা '1' হতে হবে
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',মাঠের 'চেক' টাইপ-এর জন্য ডিফল্ট হয় '0' বা '1' হতে হবে
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,গতকাল
 DocType: Contact,Designation,উপাধি
 DocType: Test Runner,Test Runner,টেস্ট রানার
@@ -66,10 +65,11 @@ DocType: Auto Repeat,Monthly,মাসিক
 DocType: Address,Uttarakhand,উত্তরাখন্ডে
 DocType: Email Account,Enable Incoming,ইনকামিং সক্রিয়
 apps/frappe/frappe/core/doctype/version/version_view.html +47,Danger,ঝুঁকি
-apps/frappe/frappe/www/login.html +20,Email Address,ইমেল ঠিকানা
+apps/frappe/frappe/www/login.html +21,Email Address,ইমেল ঠিকানা
 DocType: Workflow State,th-large,ম-বড়
 DocType: Communication,Unread Notification Sent,প্রেরিত অপঠিত বিজ্ঞপ্তি
 apps/frappe/frappe/public/js/frappe/misc/tools.js +10,Export not allowed. You need {0} role to export.,রপ্তানি অনুমোদিত নয়. আপনি এক্সপোর্ট করতে {0} ভূমিকা প্রয়োজন.
+DocType: System Settings,In seconds,সেকন্ডেই
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,{0} নথি বাতিল করবেন?
 DocType: DocType,Is Published Field,প্রকাশিত ক্ষেত্র
 DocType: GCalendar Settings,GCalendar Settings,GCalendar সেটিংস
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,ই-মেইল গ্রুপ
 DocType: Note,Seen By,দ্বারা দেখা
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,একাধিক যোগ করুন
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,একটি বৈধ ব্যবহারকারী চিত্র নয়
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,সেটআপ> ব্যবহারকারী
 DocType: Success Action,First Success Message,প্রথম সফল বার্তা
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,এমন না
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,ক্ষেত্রের জন্য প্রদর্শনের লেবেল সেট
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},ভুল মান: {0} হতে হবে {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},ভুল মান: {0} হতে হবে {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","পরিবর্তন ক্ষেত্রের বৈশিষ্ট্য (আড়াল, কেবলমাত্র অনুমতি ইত্যাদি)"
 DocType: Workflow State,lock,তালা
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,আমাদের সাথে যোগাযোগ করুন পৃষ্ঠা জন্য সেটিংস.
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,অ্যাডমিনিস্ট্রেটর লগ ইন
+apps/frappe/frappe/core/doctype/user/user.py +917,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 +34,Add a tag ...,একটি ট্যাগ সংযুক্তকর ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},নতুন {0}: # {1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},নতুন {0}: # {1}
 DocType: Data Migration Run,Insert,সন্নিবেশ
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},নির্বাচন {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,দয়া করে ভিত্তি URL লিখুন
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,নথি ধরনের
 DocType: Address,Jammu and Kashmir,জম্মু ও কাশ্মীর
 DocType: Workflow,Workflow State Field,কর্মপ্রবাহ রাজ্য মাঠ
-apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,সাইন-আপ বা শুরু করার জন্য লগইন করুন
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,সাইন-আপ বা শুরু করার জন্য লগইন করুন
 DocType: Blog Post,Guest,অতিথি
 DocType: DocType,Title Field,শিরোনাম মাঠ
 DocType: Error Log,Error Log,ত্রুটি লগ
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"If you think this is unauthorized, please change the Administrator password.","আপনি এই অননুমোদিত যদি মনে করেন, অ্যাডমিনিস্ট্রেটর পাসওয়ার্ড পরিবর্তন করুন."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} বাধ্যতামূলক
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} বাধ্যতামূলক
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","নামকরণ বিকল্প:
  1. ক্ষেত্র: [ক্ষেত্রের নাম] - ক্ষেত্রের দ্বারা
  2. naming_series: - নামকরণ সিরিজ দ্বারা (ক্ষেত্র নামকরণ_সরিজ নামক উপস্থিত থাকা আবশ্যক
  3. প্রম্পট - একটি নাম জন্য প্রম্পট ব্যবহারকারী
  4. [সিরিজ] - উপসর্গ দ্বারা সিরিজ (একটি ডট দ্বারা পৃথক); উদাহরণস্বরূপ PRE। #####
  5. সংকলন: [fieldname1], [fieldname2], ... [fieldnameX] - ক্ষেত্রের নাম সংকলন দ্বারা (আপনি যতটা ক্ষেত্র পছন্দ করতে পারেন হিসাবে সন্নিবেশ করতে পারেন। সিরিজ বিকল্পটিও কাজ করে)
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,মালিক DocType: Communication,Visit,দর্শন DocType: LDAP Settings,LDAP Search String,দ্বারা LDAP অনুসন্ধান স্ট্রিং DocType: Translation,Translation,অনুবাদ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,সেটআপ> কাস্টমাইজ ফরম apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,জনাব DocType: Custom Script,Client,মক্কেল apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,কলাম নির্বাচন করুন @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,আমদানি লগ apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,ওয়েবসাইটের পেজ এম্বেড ইমেজ স্লাইডশো. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,পাঠান DocType: Workflow Action Master,Workflow Action Name,কর্মপ্রবাহ কর্ম নাম -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,DOCTYPE মার্জ করা যাবে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,DocType can not be merged,DOCTYPE মার্জ করা যাবে না DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py +270,Not a zip file,না একটি জিপ ফাইল DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,ডক ইভেন্ট apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,আপনি DocType: Braintree Settings,Braintree Settings,ব্রেইনট্রি সেটিংস DocType: Website Theme,lowercase,ছোট হাতের -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,কলাম ভিত্তি করে নির্বাচন করুন apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,ফিল্টার সংরক্ষণ করুন DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},{0} মুছে ফেলা যাবে না +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,না পূর্বপুরুষ এর DocType: Address,Jharkhand,ঝাড়খণ্ড apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,নিউজলেটার ইতিমধ্যে পাঠানো হয়েছে apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","লগইন সেশন মেয়াদ উত্তীর্ণ, পুনরায় চেষ্টা করার জন্য পৃষ্ঠা রিফ্রেশ করুন" @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,ইমেইল আনসাবস DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ভাল ফলাফলের জন্য একটি স্বচ্ছ পটভূমি সঙ্গে প্রায় প্রস্থ 150px এর একটি চিত্র নির্বাচন করুন. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,তৃতীয় পক্ষের অ্যাপস apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,সিস্টেম ম্যানেজার হয়ে যাবে প্রথম ব্যবহারকারী (আপনি পরে তা পরিবর্তন করতে পারবেন). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোনও ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায়নি। দয়া করে সেটআপ> মুদ্রণ এবং ব্রান্ডিং> ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন। apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,নির্বাচিত ডক ইভেন্টের জন্য ডক টাইপ সাবমিট করা আবশ্যক ,App Installer,অ্যাপ্লিকেশন ইনস্টলার DocType: Workflow State,circle-arrow-up,বৃত্ত-তীর-আপ DocType: Email Domain,Email Domain,ইমেল ডোমেন DocType: Workflow State,italic,বাঁকা ছাঁদে গঠিত -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0}: তৈরি ছাড়া আমদানি সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0}: তৈরি ছাড়া আমদানি সেট করা যায় না DocType: SMS Settings,Enter url parameter for message,বার্তা জন্য URL প্যারামিটার লিখুন apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,আপনার ব্রাউজারে রিপোর্ট দেখুন apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ঘটনা এবং অন্যান্য ক্যালেন্ডার. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,সমস্ত ক্ষেত্র মন্তব্য জমা দিতে প্রয়োজন। +DocType: Print Settings,Printer Name,প্রিন্টারের নাম +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,কলাম সাজাতে ড্র্যাগ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,প্রস্থ px এর বা% নির্ধারণ করা যাবে. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,শুরু DocType: Contact,First Name,প্রথম নাম @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,নথি পত্র apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,অনুমতি তারা নির্ধারিত হয় কি ভূমিকা উপর ভিত্তি করে ব্যবহারকারী উপর প্রয়োগ করা হয়. apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,আপনি এই নথির সাথে সম্পর্কিত ইমেল পাঠাতে অনুমতি দেওয়া হয় না -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,দয়া করে {0} সাজাতে / গ্রুপ থেকে অন্তত 1 টি কলাম নির্বাচন +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,দয়া করে {0} সাজাতে / গ্রুপ থেকে অন্তত 1 টি কলাম নির্বাচন DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,এই চেক আপনি আপনার পেমেন্ট স্যান্ডবক্স API ব্যবহার করে পরীক্ষা করা হয় যদি apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,আপনি একটি প্রমিত ওয়েবসাইট বিষয়বস্তু মুছে দিতে অনুমতি দেওয়া হয় না DocType: Data Import,Log Details,লগ বিবরণ দেখুন DocType: Feedback Trigger,Example,উদাহরণ DocType: Webhook Header,Webhook Header,ওয়েবহাইকার হেডার +DocType: Print Settings,Print Server,প্রিন্ট সার্ভার DocType: Workflow State,gift,উপহার DocType: Workflow Action,Completed By,দ্বারা সম্পন্ন apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Reqd @@ -223,12 +227,13 @@ 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/ui/toolbar/navbar.html +64,Documentation,ডকুমেন্টেশন +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,ডকুমেন্টেশন DocType: Webhook,on_change,পরিবর্তন বিষয়ক apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,স্থায়ীভাবে {0} আইটেমগুলি মুছবেন? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,অনুমতি নেই DocType: DocShare,Internal record of document shares,ডকুমেন্ট শেয়ারের অভ্যন্তরীণ রেকর্ড DocType: Workflow State,Comment,মন্তব্য +DocType: Data Migration Plan,Postprocess Method,পোস্টপ্রসেস পদ্ধতি apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,ছবি তোল apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","আপনি তাদের সংশোধনের, তারপর তাদের বাতিল ও জমা নথি পরিবর্তন করতে পারেন." DocType: Data Import,Update records,রেকর্ড আপডেট করুন @@ -236,20 +241,20 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,প্রদর্শন DocType: Email Group,Total Subscribers,মোট গ্রাহক apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,সংরক্ষণ করুন +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,সংরক্ষণ করুন DocType: Communication,Seen,দেখা apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,অধিক বিবরণের দেখাও DocType: System Settings,Run scheduled jobs only if checked,চেক যদি শুধুমাত্র নির্ধারিত কাজ চালান apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,শুধুমাত্র যদি অধ্যায় শিরোনামের সক্রিয় করা হয় প্রদর্শন করা হবে apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,সংরক্ষাণাগার -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,ফাইল আপলোড করুন +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,ফাইল আপলোড করুন DocType: Activity Log,Message,বার্তা DocType: Communication,Rating,নির্ধারণ DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table",ক্ষেত্রের একটি টেবিল একটি কলাম যদি ক্ষেত্রের প্রস্থ মুদ্রণ DocType: Dropbox Settings,Dropbox Access Key,ড্রপবক্স অ্যাক্সেস কী -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,কাস্টম স্ক্রিপ্টের add_fetch কনফিগারেশনে ভুল ক্ষেত্রের নাম {0} +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,কাস্টম স্ক্রিপ্টের add_fetch কনফিগারেশনে ভুল ক্ষেত্রের নাম {0} DocType: Workflow State,headphones,হেডফোন -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,পাসওয়ার্ড প্রয়োজন বা প্রতীক্ষমাণ পাসওয়ার্ড নির্বাচন করা হয় +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,পাসওয়ার্ড প্রয়োজন বা প্রতীক্ষমাণ পাসওয়ার্ড নির্বাচন করা হয় DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,যেমন replies@yourcomany.com. সব জবাব এই ইনবক্সে আসা হবে. DocType: Slack Webhook URL,Slack Webhook URL,স্ল্যাক ওয়েহুক ইউআরএল DocType: Data Migration Run,Current Mapping,বর্তমান ম্যাপিং @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes গ্রু apps/frappe/frappe/config/integrations.py +93,Google Maps integration,গুগল ম্যাপস ইন্টিগ্রেশন DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,আপনার পাসওয়ার্ড পুনরায় সেট করুন +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,বিকেলে দেখান DocType: Workflow State,remove-circle,অপসারণ-বৃত্ত DocType: Help Article,Beginner,শিক্ষানবিস DocType: Contact,Is Primary Contact,প্রাথমিক পরিচিতি apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,জাভাস্ক্রিপ্ট পৃষ্ঠার মাথা অধ্যায় লিখবেন. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,খসড়া নথি প্রিন্ট করতে পারবেন না +apps/frappe/frappe/www/printview.py +80,Not allowed to print draft documents,খসড়া নথি প্রিন্ট করতে পারবেন না apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +12,Reset to defaults,ডিফল্টে রিসেট করুন DocType: Workflow,Transition Rules,স্থানান্তরণ বিধি apps/frappe/frappe/core/doctype/report/report.js +11,Example:,উদাহরণ: -DocType: Google Maps,Google Maps,গুগল মানচিত্র DocType: Workflow,Defines workflow states and rules for a document.,একটি নথি জন্য কর্মপ্রবাহ যুক্তরাষ্ট্র ও নিয়ম নির্ধারণ করা হয়. DocType: Workflow State,Filter,ফিল্টার apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} মত বিশেষ অক্ষর থাকতে পারে না {1} @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,এক apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,ত্রুটি: আপনি এটা খোলা আছে নথি পরিবর্ধিত হয়েছে apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} লগ আউট: {1} DocType: Address,West Bengal,পশ্চিমবঙ্গ -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0}: বরাদ্দ Submittable না হলে জমা সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0}: বরাদ্দ Submittable না হলে জমা সেট করা যায় না DocType: Transaction Log,Row Index,সারি সূচক DocType: Social Login Key,Facebook,ফেসবুক -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",দ্বারা ফিল্টার "{0}" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",দ্বারা ফিল্টার "{0}" DocType: Salutation,Administrator,প্রশাসক DocType: Activity Log,Closed,বন্ধ DocType: Blog Settings,Blog Title,ব্লগ শিরোনাম apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,স্ট্যান্ডার্ড ভূমিকা অক্ষম করা যাবে না -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,চ্যাট প্রকার +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,চ্যাট প্রকার DocType: Address,Mizoram,মিজোরাম DocType: Newsletter,Newsletter,নিউজলেটার -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,দ্বারা অনুক্রমে উপ-ক্যোয়ারী ব্যবহার করা যাবে না +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,দ্বারা অনুক্রমে উপ-ক্যোয়ারী ব্যবহার করা যাবে না DocType: Web Form,Button Help,বোতাম সাহায্য DocType: Kanban Board Column,purple,রক্তবর্ণ DocType: About Us Settings,Team Members,দলের সদস্যরা @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",এসকিউ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com থেকে আপনার বিশ্বব্যাপী স্বীকৃত অবতার করুন apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","আপনার সাবস্ক্রিপশন {0} এ উত্তীর্ণ হয়েছে. পুনর্জীবন দান করা, {1}." DocType: Workflow State,plus-sign,প্লাস-সাইন -apps/frappe/frappe/__init__.py +918,App {0} is not installed,অ্যাপ {0} ইনস্টল করা নেই +apps/frappe/frappe/__init__.py +994,App {0} is not installed,অ্যাপ {0} ইনস্টল করা নেই DocType: Data Migration Plan,Mappings,ম্যাপিং DocType: Notification Recipient,Notification Recipient,বিজ্ঞপ্তি প্রাপক DocType: Workflow State,Refresh,সতেজ করা DocType: Event,Public,প্রকাশ্য -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,কিছুই দেখাতে +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,কিছুই দেখাতে DocType: System Settings,Enable Two Factor Auth,দুটি ফ্যাক্টর Auth সক্ষম করুন -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[ঊর্ধ্বতন]% s এর জন্য% s পুনরাবৃত্তি তৈরির সময় ত্রুটি +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[ঊর্ধ্বতন]% s এর জন্য% s পুনরাবৃত্তি তৈরির সময় ত্রুটি apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,পছন্দ DocType: DocField,Print Hide If No Value,প্রিন্ট লুকালেও কোন মূল্য DocType: Kanban Board Column,yellow,হলুদ -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,প্রকাশিত হয় ফিল্ড আবশ্যক একটি বৈধ FIELDNAME হতে +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,প্রকাশিত হয় ফিল্ড আবশ্যক একটি বৈধ FIELDNAME হতে apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,আপলোড সংযুক্তি DocType: Block Module,Block Module,ব্লক মডিউল apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,নতুন মান +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,কোন অনুমতি সম্পাদনা করতে apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,একটি কলাম যোগ apps/frappe/frappe/www/contact.html +34,Your email address,আপনার ইমেইল ঠিকানা DocType: Desktop Icon,Module,মডিউল DocType: Notification,Send Alert On,সতর্কতা পাঠান DocType: Customize Form,"Customize Label, Print Hide, Default etc.","ট্যাগ, প্রিন্ট লুকান কাস্টমাইজ, ডিফল্ট ইত্যাদি" -apps/frappe/frappe/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,অনুগ্রহ করে নিশ্চিত করুন যে রেফারেন্স ডকস বৃত্তিকভাবে সংযুক্ত নয়। +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,অনুগ্রহ করে নিশ্চিত করুন যে রেফারেন্স ডকস বৃত্তিকভাবে সংযুক্ত নয়। apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,একটি নতুন বিন্যাস তৈরি apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,বালতি তৈরি করতে অক্ষম: {0}। এটি একটি আরও অনন্য নাম পরিবর্তন করুন। DocType: Webhook,Request URL,অনুরোধ URL টি @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,টেবিল apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,DocTypes অনুসরণ করার জন্য ব্যবহারকারীর অনুমতি প্রয়োগ করুন DocType: Email Account,Total number of emails to sync in initial sync process ,ইমেইলের মোট সংখ্যা প্রাথমিক সিঙ্ক প্রক্রিয়ায় সিঙ্ক করার জন্য DocType: Website Settings,Set Banner from Image,চিত্র থেকে সেট ব্যানার -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,গ্লোবাল অনুসন্ধান +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,গ্লোবাল অনুসন্ধান DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},একটি নতুন অ্যাকাউন্ট তৈরি এ আপনার জন্য তৈরি করা হয়েছে {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,নির্দেশাবলী ইমেল করা @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,ভার্ডানা DocType: Email Flag Queue,Email Flag Queue,ইমেল পতাকা সারি apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,মুদ্রণ ফরম্যাটের জন্য স্টাইলশীট apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,খোলা চিহ্নিত করা যাবে না {0}. অন্য কিছু করার চেষ্টা করুন. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,আপনার তথ্য জমা দেওয়া হয়েছে -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,{0} ব্যবহারকারী মোছা যাবে না +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,আপনার তথ্য জমা দেওয়া হয়েছে +apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,{0} ব্যবহারকারী মোছা যাবে না DocType: System Settings,Currency Precision,মুদ্রা যথার্থ apps/frappe/frappe/public/js/frappe/request.js +143,Another transaction is blocking this one. Please try again in a few seconds.,অথবা অন্য কোন গন্তব্যে এই এক ব্লক করা হয়. কয়েক সেকেন্ডের মধ্যে আবার চেষ্টা করুন. DocType: DocType,App,অ্যাপ @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,সব DocType: Workflow State,Print,ছাপা DocType: User,Restrict IP,আইপি সীমাবদ্ধ apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,ড্যাশবোর্ড -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,এই সময়ে ইমেইল পাঠাতে অক্ষম -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,অনুসন্ধান বা কমান্ডটি টাইপ করুন +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,এই সময়ে ইমেইল পাঠাতে অক্ষম +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,অনুসন্ধান বা কমান্ডটি টাইপ করুন DocType: Activity Log,Timeline Name,সময়রেখা নাম DocType: Email Account,e.g. smtp.gmail.com,যেমন smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,একটি নতুন নিয়ম যোগ @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,মূল ট্যাগ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","আপনার প্রশ্নের সাথে গৃহীত হয়েছে. আমরা খুব শীঘ্রই ফিরে উত্তর দিতে হবে. আপনি কোন অতিরিক্ত তথ্য আছে, এই মেইল উত্তর দয়া করে." DocType: GCalendar Account,Allow GCalendar Access,GCalendar অ্যাক্সেসের অনুমতি দিন -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} একটি বাধ্যতামূলক ক্ষেত্র +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} একটি বাধ্যতামূলক ক্ষেত্র apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,লগইন টোকেন প্রয়োজন DocType: Event,Repeat Till,পর্যন্ত একই পদ্ধতি পুনরাবৃত্তি করুন apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,নতুন apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Gsuite সেটিংস স্ক্রিপ্ট URL- সেট করুন +DocType: Google Maps Settings,Google Maps Settings,Google মানচিত্র সেটিংস apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,লোড হচ্ছে ... DocType: DocField,Password,পাসওয়ার্ড apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,আপনার সিস্টেমের আপডেট করা হচ্ছে. কয়েক মুহূর্তের পর আবার রিফ্রেশ করুন @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,আপনার সাথে মেলে এমন রেকর্ড। অনুসন্ধান করুন নতুন কিছু DocType: Chat Profile,Away,দূরে DocType: Currency,Fraction Units,ভগ্নাংশ ইউনিট -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} থেকে {1} থেকে {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} থেকে {1} থেকে {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,সম্পন্ন হিসাবে চিহ্নিত করুন DocType: Chat Message,Type,শ্রেণী DocType: Activity Log,Subject,বিষয় @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,পরিমাণ ক্ষেত্র apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,ব্যবহারকারী শেয়ার জন্য বাধ্যতামূলক DocType: DocField,Hidden,গোপন DocType: Web Form,Allow Incomplete Forms,অসম্পূর্ণ ফরম মঞ্জুর করুন -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} প্রথমে সেট করা আবশ্যক +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,পিডিএফ প্রজন্ম ব্যর্থ হয়েছে +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} প্রথমে সেট করা আবশ্যক apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","একটি কয়েকটি শব্দ ব্যবহার করুন, সাধারণ বাক্যাংশ এড়ানো." DocType: Workflow State,plane,সমতল apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","আপনি নতুন রেকর্ড আপলোড করা হয় তাহলে যদি থাকে, "সিরিজ নামকরণ", বাধ্যতামূলক হয়ে যায়." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,আজকের সতর্ক বার্তা গ্রহণ করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DOCTYPE শুধুমাত্র অ্যাডমিনিস্ট্রেটর দ্বারা পালটে যাবে +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,আজকের সতর্ক বার্তা গ্রহণ করুন +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DOCTYPE শুধুমাত্র অ্যাডমিনিস্ট্রেটর দ্বারা পালটে যাবে DocType: Chat Message,Chat Message,চ্যাট বার্তা apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},{0} এর সাথে ইমেল যাচাই করা হয়নি -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},পরিবর্তিত মান {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},পরিবর্তিত মান {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","ব্যবহারকারীর কোনো ভূমিকা আছে কিনা, তাহলে ব্যবহারকারী একটি "সিস্টেম ব্যবহারকারী" হয়ে উঠবে। "সিস্টেম ব্যবহারকারী" ডেস্কটপে অ্যাক্সেস আছে" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,যাচাইয়ের জন্য আপনার ইমেইল চেক করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,ফোল্ড ফর্মের শেষে হতে পারে না +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,যাচাইয়ের জন্য আপনার ইমেইল চেক করুন +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,ফোল্ড ফর্মের শেষে হতে পারে না DocType: Communication,Bounced,ফেরত DocType: Deleted Document,Deleted Name,মোছা নাম apps/frappe/frappe/config/setup.py +14,System and Website Users,সিস্টেম এবং ওয়েবসাইট ব্যবহারকারীদের @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,ডক স্থিতি DocType: Data Migration Run,Pull Update,আপডেট টানুন DocType: Auto Email Report,No of Rows (Max 500),সারি কোন (সর্বোচ্চ 500) DocType: Language,Language Code,ভাষার কোড +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,দ্রষ্টব্য: ব্যর্থ ব্যাকআপের জন্য ডিফল্ট ইমেলগুলি পাঠানো হয়। apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","আপনার ডাউনলোড নির্মিত হচ্ছে, এই কয়েক মিনিট সময় নিতে পারে ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,ফিল্টার যোগ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},এসএমএস নিম্নলিখিত সংখ্যা পাঠানো: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,আপনার রেটিং: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} এবং {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,একটি কথোপকথন শুরু করুন +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,আপনার রেটিং: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ না দয়া করে সেটআপ থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন> ইমেল> ইমেল অ্যাকাউন্ট +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} এবং {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,Start a conversation.,একটি কথোপকথন শুরু করুন DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",সর্বদা মুদ্রণ খসড়া নথি জন্য শিরোলেখ "খসড়া" যোগ DocType: Data Migration Run,Current Mapping Start,বর্তমান ম্যাপিং শুরু apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,ইমেইল স্প্যাম হিসাবে চিহ্নিত হয়েছে DocType: About Us Settings,Website Manager,ওয়েবসাইট ম্যানেজার -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,ফাইল আপলোড সংযোগ বিচ্ছিন্ন। অনুগ্রহপূর্বক আবার চেষ্টা করুন. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,অবৈধ অনুসন্ধান ক্ষেত্র +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,ফাইল আপলোড সংযোগ বিচ্ছিন্ন। অনুগ্রহপূর্বক আবার চেষ্টা করুন. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,অনুবাদ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,আপনার কাছে নির্বাচিত খসড়া বা বাতিল কাগজপত্র -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},ডকুমেন্ট {0} রাষ্ট্র {1} দ্বারা {2} অনুসারে নির্ধারণ করা হয়েছে -apps/frappe/frappe/model/document.py +1211,Document Queued,ডকুমেন্ট-টি সারিভুক্ত +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},ডকুমেন্ট {0} রাষ্ট্র {1} দ্বারা {2} অনুসারে নির্ধারণ করা হয়েছে +apps/frappe/frappe/model/document.py +1212,Document Queued,ডকুমেন্ট-টি সারিভুক্ত DocType: GSuite Templates,Destination ID,গন্তব্যস্থান আইডি DocType: Desktop Icon,List,তালিকা DocType: Activity Log,Link Name,লিংক নাম -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,মাঠ {0} সারিতে {1} আড়াল করা যাবে না এবং ডিফল্ট ছাড়া বাধ্যতামূলক +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,মাঠ {0} সারিতে {1} আড়াল করা যাবে না এবং ডিফল্ট ছাড়া বাধ্যতামূলক DocType: System Settings,mm/dd/yyyy,মিমি / ডিডি / YYYY -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,অবৈধ পাসওয়ার্ড: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,অবৈধ পাসওয়ার্ড: DocType: Print Settings,Send document web view link in email,পাঠান ইমেল নথি ওয়েব ভিউতে লিংক apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,নথির জন্য আপনার প্রতিক্রিয়া {0} সফলভাবে সংরক্ষিত হয় apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,পূর্ববর্তী -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,লিখেছেন: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} সারি {1} এর জন্য +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,লিখেছেন: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} সারি {1} এর জন্য DocType: Currency,"Sub-currency. For e.g. ""Cent""",উপ-কারেন্সি. যেমন "সেন্ট" জন্য apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,সংযোগের নাম -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,আপলোড করা ফাইল নির্বাচন করুন +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,আপলোড করা ফাইল নির্বাচন করুন DocType: Letter Head,Check this to make this the default letter head in all prints,সব প্রিন্ট এই ডিফল্ট চিঠি মাথা করতে এই পরীক্ষা DocType: Print Format,Server,সার্ভার -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,নিউ Kanban বোর্ড +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,নিউ Kanban বোর্ড DocType: Desktop Icon,Link,লিংক apps/frappe/frappe/utils/file_manager.py +122,No file attached,সংযুক্ত কোন ফাইল DocType: Version,Version,সংস্করণ +DocType: S3 Backup Settings,Endpoint URL,শেষ পয়েন্ট URL apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,চার্ট DocType: User,Fill Screen,পর্দা ভরাট apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,ব্যবহারকারী {ব্যবহারকারী} প্রোফাইলের জন্য চ্যাট প্রোফাইল বিদ্যমান। apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,অনুমতি স্বয়ংক্রিয়ভাবে স্ট্যান্ডার্ড প্রতিবেদন এবং অনুসন্ধানগুলিতে প্রয়োগ করা হয় apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,আপলোড ব্যর্থ হয়েছে -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,আপলোডের মাধ্যমে সম্পাদনা +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,আপলোডের মাধ্যমে সম্পাদনা apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","নথি প্রকার ..., যেমন গ্রাহক" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,কন্ডিশন '{0}' অবৈধ DocType: Workflow State,barcode,বারকোড @@ -486,22 +496,24 @@ DocType: Country,Country Name,দেশের নাম DocType: About Us Team Member,About Us Team Member,আমাদের টিম সদস্য সম্পর্কে apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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,বুধবার -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,চিত্র ক্ষেত্রের একটি বৈধ FIELDNAME হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,চিত্র ক্ষেত্রের একটি বৈধ FIELDNAME হবে DocType: Chat Token,Token,টোকেন DocType: Property Setter,ID (name) of the entity whose property is to be set,যার সম্পত্তি সত্তা আইডি (নাম) নির্ধারণ করা হয় apps/frappe/frappe/limits.py +84,"To renew, {0}.",নবীকরণের জন্য {0}. DocType: Website Settings,Website Theme Image Link,ওয়েবসাইট থিম ইমেজ লিংক DocType: Web Form,Sidebar Items,সাইডবার চলছে +DocType: Web Form,Show as Grid,গ্রিড হিসাবে দেখান apps/frappe/frappe/installer.py +129,App {0} already installed,অ্যাপ {0} ইতিমধ্যে ইনস্টল -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,কোন পূর্বরূপ +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,কোন পূর্বরূপ DocType: Workflow State,exclamation-sign,বিস্ময়বোধক চিহ্ন apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,দেখান অনুমতিসমূহ -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,সময়রেখা ক্ষেত্রের একটি লিংক বা ডাইনামিক লিংক হতে হবে +DocType: Data Import,New data will be inserted.,নতুন তথ্য ঢোকানো হবে। +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,সময়রেখা ক্ষেত্রের একটি লিংক বা ডাইনামিক লিংক হতে হবে apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,তারিখের পরিসীমা apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},পাতা {0} এর {1} DocType: About Us Settings,Introduce your company to the website visitor.,ওয়েবসাইট পরিদর্শক আপনার কোম্পানীর পরিচয় করিয়ে. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json","এনক্রিপশন কী অবৈধ, অনুগ্রহ করে site_config.json পরীক্ষা" +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json","এনক্রিপশন কী অবৈধ, অনুগ্রহ করে site_config.json পরীক্ষা" DocType: SMS Settings,Receiver Parameter,রিসিভার পরামিতি DocType: Data Migration Mapping Detail,Remote Fieldname,দূরবর্তী ক্ষেত্রের নাম DocType: Communication,To,থেকে @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,অক্ষরের আকার DocType: System Settings,Disable Standard Email Footer,স্ট্যান্ডার্ড ইমেইল পাদলেখ অক্ষম DocType: Workflow State,facetime-video,এ FaceTime ভিডিও apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 টি মন্তব্য -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,দেখা +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,দেখা DocType: Notification,Days Before,দিন আগে DocType: Workflow State,volume-down,শব্দ কম -apps/frappe/frappe/desk/reportview.py +268,No Tags,কোন ট্যাগ +apps/frappe/frappe/desk/reportview.py +270,No Tags,কোন ট্যাগ DocType: DocType,List View Settings,সেটিংস তালিকা দৃশ্য DocType: Email Account,Send Notification to,বিজ্ঞপ্তি পাঠাতে DocType: DocField,Collapsible,বন্ধ হইতে সক্ষম apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,সংরক্ষিত -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,আপনি সাহায্য প্রয়োজন কি? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,আপনি সাহায্য প্রয়োজন কি? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,নির্বাচন করার জন্য বিকল্প. একটি নতুন লাইন প্রতিটি বিকল্প. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,স্থায়ীভাবে বাতিল {0}? DocType: Workflow State,music,সঙ্গীত +DocType: Website Theme,Text Styles,পাঠ্য শৈলী apps/frappe/frappe/www/qrcode.html +3,QR Code,QR কোড -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,সর্বশেষ সংশোধিত তারিখ +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,সর্বশেষ সংশোধিত তারিখ DocType: Chat Profile,Settings,সেটিংস DocType: Print Format,Style Settings,স্টাইল সেটিংস apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Y অক্ষ ক্ষেত্র -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,বাছাই ক্ষেত্র {0} একটি বৈধ FIELDNAME হবে -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,অধিক +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,বাছাই ক্ষেত্র {0} একটি বৈধ FIELDNAME হবে +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,অধিক DocType: Contact,Sales Manager,বিক্রয় ব্যবস্থাপক -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,পুনঃনামকরণ +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,পুনঃনামকরণ DocType: Print Format,Format Data,বিন্যাসে তথ্য DocType: List Filter,Filter Name,ফিল্টার নাম apps/frappe/frappe/utils/bot.py +91,Like,মত @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,রুম নাম চ্যাট ক DocType: OAuth Client,Grant Type,গ্রান্ট প্রকার apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,কোনো ব্যবহারকারীর দ্বারা পাঠযোগ্য যা দস্তাবেজ চেক DocType: Deleted Document,Hub Sync ID,হাব সিঙ্ক আইডি -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,ওয়াইল্ডকার্ড হিসেবে% ব্যবহার +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,ওয়াইল্ডকার্ড হিসেবে% ব্যবহার DocType: Auto Repeat,Quarterly,ত্রৈমাসিক apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","ইমেল ডোমেন এই অ্যাকাউন্টের জন্য কনফিগার করা না থাকে, এক তৈরি করতে চান?" DocType: User,Reset Password Key,পাসওয়ার্ড রিসেট করুন কী @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,নূন্যতম পাসওয়ার্ড স্কোর DocType: DocType,Fields,ক্ষেত্রসমূহ DocType: System Settings,Your organization name and address for the email footer.,ইমেল পাদচরণ জন্য আপনার প্রতিষ্ঠানের নাম ও ঠিকানা. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,মূল ছক +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,মূল ছক apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 ব্যাকআপ সম্পূর্ণ! apps/frappe/frappe/config/desktop.py +60,Developer,ডেভেলপার -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,নির্মিত +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,নির্মিত apps/frappe/frappe/client.py +101,No permission for {doctype},{Doctype} জন্য কোন অনুমতি নেই apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{0} in row {1} cannot have both URL and child items,{0} সারিতে {1} উভয় URL এবং সন্তানের আইটেম থাকতে পারে না +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,পূর্বপুরুষদের apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,{0} রুট মোছা যাবে না apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,এখনো কোন মন্তব্য নেই apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings",এসএমএস সেটিংস এর মাধ্যমে এটি একটি প্রমাণীকরণ পদ্ধতি হিসাবে সেট করার আগে এসএমএস সেট আপ করুন @@ -576,6 +590,7 @@ DocType: Contact,Open,খোলা DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,যুক্তরাষ্ট্র উপর ক্রিয়া এবং পরবর্তী পদক্ষেপ এবং অনুমোদিত ভূমিকা নির্ধারণ করে. DocType: Data Migration Mapping,Remote Objectname,দূরবর্তী বস্তু নাম apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","একটি ভাল অভ্যাস হিসেবে, বিভিন্ন ভূমিকা অনুমতি নিয়ম একই সেট ধার্য না. পরিবর্তে, একই ব্যবহারকারী যাও একাধিক ভূমিকা পালন করে." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,দয়া করে এই ডকুমেন্টটি {0} -এ আপনার ক্রিয়াটি নিশ্চিত করুন। DocType: Success Action,Next Actions HTML,পরবর্তী পদক্ষেপ এইচটিএমএল apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,শুধু {0} ইমেল রিপোর্ট ব্যবহারকারী প্রতি অনুমতি দেওয়া হয় DocType: Address,Address Title,ঠিকানা শিরোনাম @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,দৈনিক apps/frappe/frappe/config/setup.py +19,User Roles,ব্যবহারকারী ভূমিকা DocType: Property Setter,Property Setter overrides a standard DocType or Field property,প্রপার্টি সেটার একটি স্ট্যান্ডার্ড DOCTYPE বা ক্ষেত্র সম্পত্তি অগ্রাহ্য করা -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,আপডেট করতে পারবেন না: ভুল / মেয়াদউত্তীর্ণ লিংক. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,আপডেট করতে পারবেন না: ভুল / মেয়াদউত্তীর্ণ লিংক. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,ভালো আরো কয়েকটি অক্ষর বা অন্য শব্দ যোগ apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},এক সময় পাসওয়ার্ড (OTP) থেকে নিবন্ধন কোড {} DocType: DocField,Set Only Once,শুধু একবার সেট DocType: Email Queue Recipient,Email Queue Recipient,ইমেল সারি প্রাপক DocType: Address,Nagaland,নাগাল্যান্ডের DocType: Slack Webhook URL,Webhook URL,ওয়েবহুক URL -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,ইউজারনেম {0} আগে থেকেই আছে -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,{0}: {1} আমদানিযোগ্য নয় হিসাবে আমদানি সেট করা যায় না +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,ইউজারনেম {0} আগে থেকেই আছে +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,{0}: {1} আমদানিযোগ্য নয় হিসাবে আমদানি সেট করা যায় না apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},আপনার ঠিকানা টেমপ্লেট মধ্যে একটি ত্রুটি আছে {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} 'প্রাপকদের' একটি অবৈধ ইমেল ঠিকানা DocType: User,Allow Desktop Icon,ডেস্কটপ আইকন অনুমতি দিন DocType: Footer Item,"target = ""_blank""",টার্গেট = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,নিমন্ত্রণকর্তা -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,কলাম {0} ইতিমধ্যে বিদ্যমান. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,কলাম {0} ইতিমধ্যে বিদ্যমান. DocType: ToDo,High,উচ্চ DocType: S3 Backup Settings,Secret Access Key,গোপন অ্যাক্সেস কী apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,পুরুষ -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,OTP সিক্রেট রিসেট করা হয়েছে। পরবর্তী লগইনতে পুনরায় নিবন্ধীকরণের প্রয়োজন হবে। +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,OTP সিক্রেট রিসেট করা হয়েছে। পরবর্তী লগইনতে পুনরায় নিবন্ধীকরণের প্রয়োজন হবে। DocType: Communication,From Full Name,পূর্ণ নাম থেকে -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},আপনি রিপোর্ট করতে এক্সেস আছে না: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},আপনি রিপোর্ট করতে এক্সেস আছে না: {0} DocType: User,Send Welcome Email,স্বাগতম ইমেইল পাঠান -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,ফিল্টার অপসারণ +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,ফিল্টার অপসারণ +DocType: Web Form Field,Show in filter,ফিল্টার দেখান DocType: Address,Daman and Diu,দমন ও দিউ -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,প্রকল্প +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,প্রকল্প DocType: Address,Personal,ব্যক্তিগত apps/frappe/frappe/config/setup.py +125,Bulk Rename,বাল্ক পুনঃনামকরণ DocType: Email Queue,Show as cc,সিসি হিসেবে দেখান @@ -625,12 +641,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,অধ্ apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,না বিকাশকারী মোডে apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,ফাইল ব্যাকআপ প্রস্তুত DocType: DocField,In Global Search,বৈশ্বিক অনুসন্ধান +DocType: System Settings,Brute Force Security,ব্রাউন ফোর্স নিরাপত্তা DocType: Workflow State,indent-left,ইন্ডেন্ট-বাম apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,এটা এই ফাইলটি মোছার জন্য ঝুঁকিপূর্ণ: {0}. আপনার সিস্টেম ম্যানেজার সাথে যোগাযোগ করুন. DocType: Currency,Currency Name,মুদ্রার নাম apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,কোন ইমেল -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,লিংক মেয়াদ শেষ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,ফাইল বিন্যাস নির্বাচন করুন +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} বছর (গুলি) আগে +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,লিংক মেয়াদ শেষ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,ফাইল বিন্যাস নির্বাচন করুন DocType: Report,Javascript,জাভাস্ক্রিপ্ট DocType: File,Content Hash,বিষয়বস্তু হ্যাশ DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,দোকান বিভিন্ন ইনস্টল Apps এর সর্বশেষ সংস্করণ JSON. এটা রিলিজ নোট দেখানোর জন্য ব্যবহৃত হয়. @@ -642,16 +660,15 @@ DocType: Auto Repeat,Stopped,বন্ধ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,অপসারণ করা হয়নি apps/frappe/frappe/desk/like.py +89,Liked,পছন্দ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,এখন পাঠান -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","স্ট্যান্ডার্ড DOCTYPE ডিফল্ট মুদ্রণ বিন্যাসে থাকতে পারে না, কাস্টমাইজ ফর্মটি ব্যবহার" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","স্ট্যান্ডার্ড DOCTYPE ডিফল্ট মুদ্রণ বিন্যাসে থাকতে পারে না, কাস্টমাইজ ফর্মটি ব্যবহার" DocType: Report,Query,প্রশ্ন DocType: DocType,Sort Order,সজ্জাক্রম -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},সারি {1} এর টাইপ {0} জন্য 'তালিকা দেখুন' অনুমোদিত নয় +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},সারি {1} এর টাইপ {0} জন্য 'তালিকা দেখুন' অনুমোদিত নয় DocType: Custom Field,Select the label after which you want to insert new field.,"আপনি নতুন ক্ষেত্র সন্নিবেশ করতে চান, যা পরে ট্যাগ নির্বাচন করুন." ,Document Share Report,ডকুমেন্ট শেয়ার প্রতিবেদন DocType: Social Login Key,Base URL,বেস URL DocType: User,Last Login,সর্বশেষ লগইন apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},আপনি ক্ষেত্রের জন্য 'অনুবাদযোগ্য' সেট করতে পারবেন না {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},FIELDNAME সারিতে প্রয়োজন বোধ করা হয় {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,স্তম্ভ DocType: Chat Profile,Chat Profile,প্রোফাইল প্রোফাইল DocType: Custom Field,Adds a custom field to a DocType,একটি DOCTYPE একটি কাস্টম ক্ষেত্র যোগ @@ -660,6 +677,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,মুদ্রণের জন্য অন্তত 1 রেকর্ড নির্বাচন করুন apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,প্রথমে নাম সেট করুন এবং রেকর্ডটি সংরক্ষণ করুন। apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},এদের সাথে শেয়ার {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,সদস্যতা ত্যাগ করুন DocType: View log,Reference Name,রেফারেন্স নাম @@ -681,17 +699,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ব apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} এ {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,অনুরোধ সময় ত্রুটির লগ ইন করুন. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} সফলভাবে ইমেইল গ্রুপে যোগ করা হয়েছে. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,টেমপ্লেটের মধ্যে পূর্বনির্ধারিত যা হেডার সম্পাদনা করবেন না +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,টেমপ্লেটের মধ্যে পূর্বনির্ধারিত যা হেডার সম্পাদনা করবেন না apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},লগইন যাচাই কোড {} DocType: Address,Uttar Pradesh,উত্তর প্রদেশ +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,বিঃদ্রঃ: DocType: Address,Pondicherry,পুদুচেরি DocType: Data Import,Import Status,আমদানি স্থিতি -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,ফাইল (গুলি) বেসরকারী বা পাবলিক করুন? +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,ফাইল (গুলি) বেসরকারী বা পাবলিক করুন? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},পাঠাতে তফসিলি {0} DocType: Kanban Board Column,Indicator,ইনডিকেটর DocType: DocShare,Everyone,সবাই DocType: Workflow State,backward,অনুন্নত -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: একই ভূমিকা, শ্রেনী এবং ক্রেডিট সঙ্গে অনুমতি দেওয়া শুধু একটা রুল {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: একই ভূমিকা, শ্রেনী এবং ক্রেডিট সঙ্গে অনুমতি দেওয়া শুধু একটা রুল {1}" DocType: Email Queue,Add Unsubscribe Link,যোগ আনসাবস্ক্রাইব লিঙ্ক apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,এখনো কোন মন্তব্য নেই. একটি নতুন আলোচনা শুরু করুন. DocType: Workflow State,share,ভাগ @@ -703,6 +722,7 @@ DocType: User,Last IP,সর্বশেষ আইপি apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,নবীকরণ / আপগ্রেড apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,একটি নতুন ডকুমেন্ট {0} আপনার সাথে ভাগ করা হয়েছে {1}। DocType: Data Migration Connector,Data Migration Connector,ডেটা মাইগ্রেশন সংযোগকারী +DocType: Email Account,Track Email Status,ট্র্যাক ইমেইল স্থিতি DocType: Note,Notify Users On Every Login,প্রতিটি লগইনে অনুপ্রেরিত আমাকে অবহিত ব্যবহারকারীরা DocType: PayPal Settings,API Password,এপিআই পাসওয়ার্ড apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,পাইথন মডিউল লিখুন বা সংযোজক প্রকার নির্বাচন করুন @@ -711,6 +731,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,সর্ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,দেখুন সদস্যবৃন্দ DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,ফাইলটিকে {0} {1} এর জন্য মুছে ফেলা যাবে না যার জন্য আপনার অনুমতি নেই +DocType: Website Theme,Custom JS,কাস্টম জব apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,শ্রীমতি DocType: Website Theme,Background Color,পিছনের রঙ apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,ইমেইল পাঠানোর সময় কিছু সমস্যা হয়েছে. অনুগ্রহ করে আবার চেষ্টা করুন. @@ -719,21 +740,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,ম্যাপিং DocType: Web Page,0 is highest,0 সর্বোচ্চ apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,আপনি কি নিশ্চিত যে আপনি {0} এই যোগাযোগের পুনঃলিঙ্ক ইচ্ছুক? -apps/frappe/frappe/www/login.html +86,Send Password,পাসওয়ার্ডটি পাঠান +apps/frappe/frappe/www/login.html +87,Send Password,পাসওয়ার্ডটি পাঠান +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,সেটআপ থেকে ডিফল্ট ইমেইল অ্যাকাউন্ট সেট আপ করুন> ইমেইল> ইমেল অ্যাকাউন্ট +DocType: Print Settings,Server IP,সার্ভার আইপি DocType: Email Queue,Attachments,সংযুক্তি apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,আপনি এই দস্তাবেজটি অ্যাক্সেস করতে অনুমতি নেই DocType: Language,Language Name,ভাষার নাম DocType: Email Group Member,Email Group Member,ইমেল গ্রুপের সদস্য +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,আপনার অ্যাকাউন্ট লক করা হয়েছে এবং {0} সেকেন্ড পরে পুনরায় চালু হবে apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,User Permissions are used to limit users to specific records.,ব্যবহারকারীর অনুমতি নির্দিষ্ট ব্যবহারকারীদের রেকর্ড নির্দিষ্ট করার জন্য ব্যবহার করা হয়। DocType: Notification,Value Changed,মান পরিবর্তন -apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},সদৃশ নাম {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},সদৃশ নাম {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,পুনরায় চেষ্টা করা DocType: Web Form Field,Web Form Field,ওয়েব ফরম ক্ষেত্র apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,প্রতিবেদন নির্মাতা লুকান ক্ষেত্রের apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,আপনার কাছ থেকে একটি নতুন বার্তা আছে: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,HTML সম্পাদনা করুন apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,দয়া করে পুনঃনির্দেশ URL লিখুন -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,সেটআপ> ব্যবহারকারী অনুমতিগুলি apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","উত্পন্ন করা হবে বিলম্বিত হলে, আপনাকে এই "মাস মাসের পুনরাবৃত্তি" ক্ষেত্রটিকে ম্যানুয়ালি পরিবর্তন করতে হবে" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,মৌলিক অনুমতি পুনরুদ্ধার @@ -758,23 +781,25 @@ DocType: Address,Rajasthan,রাজস্থান DocType: Email Template,Email Reply Help,ইমেল উত্তর সাহায্য apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,প্রতিবেদন নির্মাতা রিপোর্ট প্রতিবেদন নির্মাতা দ্বারা সরাসরি পরিচালিত হয়. কিছুই করার নাই. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,আপনার ইমেল ঠিকানা যাচাই করুন -apps/frappe/frappe/model/document.py +1056,none of,কেউ +apps/frappe/frappe/model/document.py +1057,none of,কেউ apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,আমাকে একটি কপি পাঠান DocType: Dropbox Settings,App Secret Key,অ্যাপ সিক্রেট কী DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,ওয়েব সাইট apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,চেক আইটেম ডেস্কটপে প্রদর্শিত হবে -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} একক ধরনের জন্য নির্ধারণ করা যাবে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} একক ধরনের জন্য নির্ধারণ করা যাবে না DocType: Data Import,Data Import,ডেটা আমদানি apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,চার্ট কনফিগার করুন apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} বর্তমানে এই ডকুমেন্ট দেখছেন DocType: ToDo,Assigned By Full Name,পূর্ণ নাম দ্বারা নিয়োগ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} আপডেট করা হয়েছে -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,গালাগাল প্রতিবেদন একা ধরনের জন্য নির্ধারণ করা যাবে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,গালাগাল প্রতিবেদন একা ধরনের জন্য নির্ধারণ করা যাবে না +DocType: System Settings,Allow Consecutive Login Attempts ,অনুলিপি লগইন প্রচেষ্টা অনুমোদন apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,পেমেন্ট প্রক্রিয়ার সময় একটি ত্রুটি ঘটেছে। আমাদের সাথে যোগাযোগ করুন. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,{0} দিন আগে DocType: Email Account,Awaiting Password,প্রতীক্ষমাণ পাসওয়ার্ড DocType: Address,Address Line 1,ঠিকানা লাইন 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,না DocType: Custom DocPerm,Role,ভূমিকা apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,সেটিংস... apps/frappe/frappe/utils/data.py +507,Cent,সেন্ট @@ -794,10 +819,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,থামুন DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,আপনি খুলতে চান পাতা লিংক. আপনি এটি একটি গ্রুপ ঊর্ধ্বতন করতে চান তাহলে ফাঁকা ছেড়ে দিন. DocType: DocType,Is Single,একা -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,সাইন আপ করুন নিষ্ক্রিয় করা হয়েছে -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} মধ্যে কথোপকথন ত্যাগ করেছে {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,সাইন আপ করুন নিষ্ক্রিয় করা হয়েছে +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} মধ্যে কথোপকথন ত্যাগ করেছে {1} {2} DocType: Blogger,User ID of a Blogger,একটি ব্লগার এর ইউজার আইডি -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,অন্তত একটি সিস্টেম ম্যানেজার থাকা উচিত +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,অন্তত একটি সিস্টেম ম্যানেজার থাকা উচিত DocType: GCalendar Account,Authorization Code,অনুমোদন কোড DocType: PayPal Settings,Mention transaction completion page URL,উল্লেখ লেনদেন completion পৃষ্ঠার URL DocType: Help Article,Expert,বিশেষজ্ঞ @@ -818,8 +843,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","গতিশীল বিষয় যোগ করার জন্য, মত Jinja ট্যাগ ব্যবহার
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,ব্যবহারকারীর অনুমতি প্রয়োগ +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},অবৈধ অনুসন্ধান ক্ষেত্র {0} DocType: User,Modules HTML,মডিউল এইচটিএমএল +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","প্রাপক দ্বারা যদি আপনার ইমেলটি খোলা হয় তবে ট্র্যাক করুন
দ্রষ্টব্য: আপনি একাধিক প্রাপক পাঠিয়ে থাকেন, এমনকি যদি 1 প্রাপক ইমেলটি পড়ে থাকেন তবে এটি "খোলা" হিসাবে বিবেচিত হবে" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,অনুপস্থিত মানের প্রয়োজনীয় DocType: DocType,Other Settings,অন্যান্য সেটিংস্ DocType: Data Migration Connector,Frappe,ফ্র্যাপে @@ -829,15 +857,13 @@ DocType: Customize Form,Change Label (via Custom Translation),ট্যাগ apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},কোন অনুমতি {0} {1} {2} DocType: Address,Permanent,স্থায়ী apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,দ্রষ্টব্য: অন্য অনুমতি নিয়ম জন্যও প্রযোজ্য হতে পারে -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/templates/emails/print_link.html +2,View this in your browser,আপনার ব্রাউজারে এই দৃশ্য DocType: DocType,Search Fields,অনুসন্ধান ক্ষেত্র DocType: System Settings,OTP Issuer Name,OTP প্রবর্তক নাম DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth এর বিয়ারার টোকেন apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,নির্বাচিত কোন দলীল apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ডাঃ -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,আপনি ইন্টারনেটে সংযুক্ত আছেন +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,আপনি ইন্টারনেটে সংযুক্ত আছেন DocType: Social Login Key,Enable Social Login,সামাজিক লগইন সক্ষম করুন DocType: Event,Event,ঘটনা apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:","{0} উপর, {1} লিখেছেন:" @@ -852,7 +878,7 @@ DocType: Print Settings,In points. Default is 9.,পয়েন্ট ইন. DocType: OAuth Client,Redirect URIs,URIs পুনঃনির্দেশ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},জমা দেওয়া {0} DocType: Workflow State,heart,হৃদয় -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,পুরনো পাসওয়ার্ড আবশ্যক। +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,পুরনো পাসওয়ার্ড আবশ্যক। DocType: Role,Desk Access,ডেস্ক অ্যাক্সেস DocType: Workflow State,minus,ঋণচিহ্ন DocType: S3 Backup Settings,Bucket,বালতি @@ -860,8 +886,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,ক্যামেরা লোড করা যায়নি apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,স্বাগতম ইমেইল পাঠানো apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,প্রথম ব্যবহারের জন্য সিস্টেম প্রস্তুত করা যাক. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,ইতিমধ্যে নিবন্ধভুক্ত +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,ইতিমধ্যে নিবন্ধভুক্ত DocType: System Settings,Float Precision,ফ্লোট যথার্থ +DocType: Notification,Sender Email,প্রেরক ইমেল apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,কেবলমাত্র প্রশাসক সম্পাদনা করতে পারেন apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,ফাইলের নাম DocType: DocType,Editable Grid,সম্পাদনযোগ্য গ্রিড @@ -872,17 +899,19 @@ DocType: Communication,Clicked,ক্লিক apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},কোন অনুমতি '{0}' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,পাঠাতে তফসিলি DocType: DocType,Track Seen,ট্র্যাক Seen -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,এই পদ্ধতি শুধুমাত্র একটি মন্তব্য তৈরি করতে ব্যবহার করা যেতে পারে +DocType: Dropbox Settings,File Backup,ফাইল ব্যাকআপ +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,এই পদ্ধতি শুধুমাত্র একটি মন্তব্য তৈরি করতে ব্যবহার করা যেতে পারে DocType: Kanban Board Column,orange,কমলা apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,কোন {0} পাওয়া apps/frappe/frappe/config/setup.py +259,Add custom forms.,নিজস্ব ফর্ম যুক্ত করো. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} মধ্যে {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,এই দলিল পেশ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,এই দলিল পেশ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,সিস্টেম অনেক পূর্ব নির্ধারিত ভূমিকা প্রদান করে. আপনি তীক্ষ্ণ স্বরূপ অনুমতি সেট করতে নতুন ভূমিকা যোগ করতে পারেন. DocType: Communication,CC,সিসি DocType: Country,Geo,জিও +DocType: Data Migration Run,Trigger Name,ট্রিগার নাম DocType: Blog Category,Blog Category,ব্লগ বিভাগ -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,নিম্নলিখিত শর্ত ব্যর্থ কারণ ম্যাপ করা যাবে না: +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,নিম্নলিখিত শর্ত ব্যর্থ কারণ ম্যাপ করা যাবে না: DocType: Role Permission for Page and Report,Roles HTML,ভূমিকা এইচটিএমএল apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,প্রথম একটি ব্র্যান্ড ইমেজ নির্বাচন করুন. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,সক্রিয় @@ -906,16 +935,17 @@ DocType: Address,Other Territory,অন্যান্য টেরিটরি ,Messages,বার্তা apps/frappe/frappe/config/website.py +83,Portal,পোর্টাল DocType: Email Account,Use Different Email Login ID,আলাদা ইমেল লগইন আইডি ব্যবহার করুন -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,চালানোর জন্য একটি কোয়েরি উল্লেখ করা আবশ্যক +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,চালানোর জন্য একটি কোয়েরি উল্লেখ করা আবশ্যক apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","সার্ভারের বক্ররেখা কনফিগারেশন সঙ্গে একটি সমস্যা বলে মনে হচ্ছে ব্যর্থতার ক্ষেত্রে চিন্তা করবেন না, আপনার অ্যাকাউন্টে অর্থ ফেরত দেওয়া হবে।" apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,তৃতীয় পক্ষের অ্যাপ্লিকেশনগুলি পরিচালনা করুন apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","ভাষা, তারিখ এবং সময় সংক্রান্ত পছন্দসমূহ" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,সেটআপ> ব্যবহারকারী অনুমতিগুলি DocType: User Email,User Email,ব্যবহারকারী ইমেইল DocType: Event,Saturday,শনিবার DocType: User,Represents a User in the system.,সিস্টেমের মধ্যে একটি ব্যবহারকারীর তথ্য উপস্থিত. DocType: Communication,Label,লেবেল -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","টাস্ক {0}, আপনি {1}, বন্ধ করা হয়েছে নির্ধারিত হয়." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,এই উইন্ডোটি বন্ধ করুন দয়া করে +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","টাস্ক {0}, আপনি {1}, বন্ধ করা হয়েছে নির্ধারিত হয়." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,এই উইন্ডোটি বন্ধ করুন দয়া করে DocType: Print Format,Print Format Type,মুদ্রণ বিন্যাস ধরন DocType: Newsletter,A Lead with this Email Address should exist,এই ইমেইল ঠিকানা দিয়ে একটি লিড এখোনো apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,ওয়েব জন্য ওপেন সোর্স অ্যাপ্লিকেশন @@ -931,8 +961,8 @@ DocType: Data Export,Excel,সীমা অতিক্রম করা apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,আপনার পাসওয়ার্ড আপডেট করা হয়েছে. এখানে আপনার তৈরিকৃত খেলার পাসওয়ার্ড DocType: Email Account,Auto Reply Message,স্বয়ংক্রিয় উত্তর বার্তা DocType: Feedback Trigger,Condition,শর্ত -apps/frappe/frappe/utils/data.py +619,{0} hours ago,{0} ঘণ্টা আগে -apps/frappe/frappe/utils/data.py +629,1 month ago,1 মাস আগে +apps/frappe/frappe/utils/data.py +621,{0} hours ago,{0} ঘণ্টা আগে +apps/frappe/frappe/utils/data.py +631,1 month ago,1 মাস আগে DocType: Contact,User ID,ব্যবহারকারী আইডি DocType: Communication,Sent,প্রেরিত DocType: Address,Kerala,কেরল @@ -951,7 +981,7 @@ DocType: GSuite Templates,Related DocType,সংশ্লিষ্ট DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,কন্টেন্ট যোগ করতে সম্পাদন apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,ভাষা নির্বাচন apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,কার্ড বিবরণ -apps/frappe/frappe/__init__.py +538,No permission for {0},জন্য কোন অনুমতি {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},জন্য কোন অনুমতি {0} DocType: DocType,Advanced,অগ্রসর apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,API কী মনে হয় বা API সিক্রেট ভুল হয় !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},রেফারেন্স: {0} {1} @@ -961,13 +991,13 @@ DocType: Address,Address Type,ঠিকানা টাইপ করুন apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,অবৈধ ব্যবহারকারী নাম বা সাপোর্ট পাসওয়ার্ড. ত্রুটিমুক্ত এবং আবার চেষ্টা করুন. DocType: Email Account,Yahoo Mail,ইয়াহু মেইল apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,আপনার সাবস্ক্রিপশন আগামীকাল এর মেয়াদ শেষ হবে. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,বিজ্ঞপ্তিতে ত্রুটি +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,বিজ্ঞপ্তিতে ত্রুটি apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,ঠাকরূণ apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},আপডেট করা হয়েছে {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,গুরু DocType: DocType,User Cannot Create,ইউজার তৈরি করতে পারবেন না apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,ফোল্ডার {0} অস্তিত্ব নেই -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,ড্রপবক্স এক্সেস অনুমোদিত! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,ড্রপবক্স এক্সেস অনুমোদিত! DocType: Customize Form,Enter Form Type,ফরম প্রকার লিখুন apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,অনুপস্থিত পরামিতি Kanban বোর্ডের নাম apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,কোন রেকর্ড বাঁধা. @@ -976,14 +1006,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,পাসওয়ার্ড আপডেট বিজ্ঞপ্তি পাঠান apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE সক্ষম হবেন. সতর্ক হোন!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","মুদ্রণ, ইমেইল জন্য কাস্টমাইজড ফর্ম্যাট" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,নতুন সংস্করণে আপডেট করা হয়েছে +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,নতুন সংস্করণে আপডেট করা হয়েছে DocType: Custom Field,Depends On,নির্ভর করে DocType: Kanban Board Column,Green,সবুজ DocType: Custom DocPerm,Additional Permissions,অতিরিক্ত অনুমতির DocType: Email Account,Always use Account's Email Address as Sender,সর্বদা প্রেরকের হিসাবে অ্যাকাউন্টের ইমেইল ঠিকানা ব্যবহার apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,মন্তব্য করতে লগ ইন করুন -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,এই রেখার নিচের তথ্য লিখে শুরু -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},জন্য পরিবর্তিত মান {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,এই রেখার নিচের তথ্য লিখে শুরু +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},জন্য পরিবর্তিত মান {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","ইমেল আইডি অনন্য হতে হবে, ইমেইল একাউন্ট ইতিমধ্যে বিদ্যমান \ জন্য {0}" DocType: Workflow State,retweet,রিট্যুইট apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,কাস্টমাইজ করুন ... DocType: Print Format,Align Labels to the Right,লেবেলগুলি ডানদিকে সন্নিবেশ করান @@ -1002,39 +1034,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,সম DocType: Workflow Action Master,Workflow Action Master,কর্মপ্রবাহ কর্ম মাস্টার DocType: Custom Field,Field Type,ক্ষেত্র প্রকার apps/frappe/frappe/utils/data.py +537,only.,কেবল. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,OTP গোপন শুধুমাত্র প্রশাসক দ্বারা পুনরায় সেট করা যাবে। +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,OTP গোপন শুধুমাত্র প্রশাসক দ্বারা পুনরায় সেট করা যাবে। apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,বছর যে আপনার সাথে সংযুক্ত করা হয় এড়িয়ে চলুন. apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,নির্দিষ্ট ডকুমেন্টের জন্য ব্যবহারকারীকে সীমাবদ্ধ করুন DocType: GSuite Templates,GSuite Templates,GSuite টেমপ্লেট +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,অধোগামী apps/frappe/frappe/utils/goal.py +110,Goal,লক্ষ্য apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,অবৈধ মেল সার্ভার. ত্রুটিমুক্ত এবং আবার চেষ্টা করুন. DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","লিংক এর জন্য, পরিসীমা হিসাবে doctype লিখতে. নির্বাচন করুন, প্রতিটি একটি নতুন লাইন, তালিকার বিকল্প লিখুন." DocType: Workflow State,film,চলচ্চিত্র -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},কোন অনুমতি পড়তে {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},কোন অনুমতি পড়তে {0} apps/frappe/frappe/config/desktop.py +8,Tools,সরঞ্জাম apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,সাম্প্রতিক বছরগুলোতে এড়িয়ে চলুন. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,একাধিক রুট নোড অনুমোদিত নয়. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","সক্রিয় করা হলে, ব্যবহারকারী তারা লগইন অবহিত করা হবে। যদি সক্ষম থাকে, তখন ব্যবহারকারীরা শুধুমাত্র একবার অবহিত করা হবে।" -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,অবৈধ {0} শর্ত +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,অবৈধ {0} শর্ত DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","যদি পরীক্ষিত, ব্যবহারকারীদের নিশ্চিত অ্যাক্সেস ডায়ালগ দেখতে পাবেন না." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,আইডি ক্ষেত্রের প্রতিবেদন ব্যবহার মান সম্পাদনা করার প্রয়োজন বোধ করা হয়. কলাম বাছাইকারি ব্যবহার আইডি ক্ষেত্র নির্বাচন করুন apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,মন্তব্য -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,নিশ্চিত করা -apps/frappe/frappe/www/login.html +58,Forgot Password?,পাসওয়ার্ড ভুলে গেছেন? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,নিশ্চিত করা +apps/frappe/frappe/www/login.html +59,Forgot Password?,পাসওয়ার্ড ভুলে গেছেন? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py +19,ID,আইডি apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,সার্ভার সমস্যা -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,লগইন আইডি আবশ্যক +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,লগইন আইডি আবশ্যক DocType: Website Slideshow,Website Slideshow,ওয়েবসাইট স্লাইড apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,কোন ডেটা DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","ওয়েবসাইট হোম পেজে যে লিংক. স্ট্যান্ডার্ড লিংক (সূচক, লগইন, পণ্য, ব্লগ, সম্পর্কে, যোগাযোগ)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ইমেইল অ্যাকাউন্ট {0} থেকে ইমেইল প্রাপ্তির যখন প্রমাণীকরণ ব্যর্থ হয়েছে. সার্ভার থেকে বার্তা: {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ইমেইল অ্যাকাউন্ট {0} থেকে ইমেইল প্রাপ্তির যখন প্রমাণীকরণ ব্যর্থ হয়েছে. সার্ভার থেকে বার্তা: {1} DocType: Custom Field,Custom Field,কাস্টম ক্ষেত্র -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,"চেক করা আবশ্যক, যা তারিখ ক্ষেত্র উল্লেখ করুন" +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,"চেক করা আবশ্যক, যা তারিখ ক্ষেত্র উল্লেখ করুন" DocType: Custom DocPerm,Set User Permissions,ব্যবহারকারীর অনুমতি সেট apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},{0} = {1} জন্য অনুমোদিত নয় DocType: Email Account,Email Account Name,ইমেইল অ্যাকাউন্ট নাম -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,যখন ড্রপবক্স অ্যাক্সেস টোকেন জেনারেট করার কিছু ভুল হয়েছে। আরো বিস্তারিত জানার জন্য ত্রুটি লগ পরীক্ষা করুন। +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,যখন ড্রপবক্স অ্যাক্সেস টোকেন জেনারেট করার কিছু ভুল হয়েছে। আরো বিস্তারিত জানার জন্য ত্রুটি লগ পরীক্ষা করুন। DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","যোগাযোগ নিউজলেটার, বাড়ে." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","যেমন "সমর্থন", "বিক্রয়", "জেরি ইয়াং"" @@ -1043,19 +1077,20 @@ DocType: DocField,Description,বিবরণ DocType: Print Settings,Repeat Header and Footer in PDF,পিডিএফ শিরোলেখ এবং পাদলেখ পুনরাবৃত্তি DocType: Address Template,Is Default,ডিফল্ট মান হল DocType: Data Migration Connector,Connector Type,সংযোগকারী প্রকার -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,কলামের নাম খালি রাখা যাবে না -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},ইমেল অ্যাকাউন্টে সংযোগ করার সময় ত্রুটি {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,কলামের নাম খালি রাখা যাবে না +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},ইমেল অ্যাকাউন্টে সংযোগ করার সময় ত্রুটি {0} DocType: Workflow State,fast-forward,দ্রুত অগ্রগামী DocType: Communication,Communication,যোগাযোগ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","অর্ডার সেট, ড্র্যাগ নির্বাচন কলাম পরীক্ষা করে দেখুন." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,এই স্থায়ী ক্রিয়া এবং আপনি পূর্বাবস্থা করতে পারবেন না. চালিয়ে? apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,লগইন এবং ব্রাউজারে দেখুন DocType: Event,Every Day,প্রতিদিন DocType: LDAP Settings,Password for Base DN,বেজ ডিএন জন্য পাসওয়ার্ড apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,ছক ফিল্ড -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,কলাম উপর ভিত্তি করে +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,কলাম উপর ভিত্তি করে apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,গুগল GSuite সঙ্গে ইন্টিগ্রেশন সক্ষম চাবি লিখুন DocType: Workflow State,move,পদক্ষেপ -apps/frappe/frappe/model/document.py +1254,Action Failed,অ্যাকশন ব্যর্থ +apps/frappe/frappe/model/document.py +1255,Action Failed,অ্যাকশন ব্যর্থ DocType: List Filter,For User,ব্যবহারকারীর জন্য DocType: View log,View log,লগ দেখান apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,হিসাবরক্ষনের তালিকা @@ -1063,11 +1098,11 @@ DocType: Address,Assam,আসাম apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,আপনার সদস্যতাতে আপনার {0} দিন বাকি আছে apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,আউটগোয়িং ইমেল অ্যাকাউন্ট সঠিক নয় DocType: Transaction Log,Chaining Hash,চেনেন হ্যাশ -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Temperorily অক্ষম করা হয়েছে +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Temperorily অক্ষম করা হয়েছে apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,ইমেল ঠিকানা নির্ধারণ করুন DocType: System Settings,Date and Number Format,তারিখ এবং সংখ্যার বিন্যাস -apps/frappe/frappe/model/document.py +1055,one of,অন্যতম -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,এক মুহূর্ত চেক করা হচ্ছে +apps/frappe/frappe/model/document.py +1056,one of,অন্যতম +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,এক মুহূর্ত চেক করা হচ্ছে apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,দেখান ট্যাগ DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","প্রয়োগ যথাযথ ব্যবহারকারীর অনুমোদন পরীক্ষা করা হয় এবং ব্যবহারকারী অনুমতি একটি ব্যবহারকারীর জন্য একটি DOCTYPE জন্য সংজ্ঞায়িত হয়, তাহলে সব কাগজপত্র যেখানে লিংক মান ফাঁকা, যে ব্যবহারকারী দেখানো হবে না" DocType: Address,Billing,বিলিং @@ -1078,7 +1113,7 @@ DocType: User,Middle Name (Optional),মধ্য নাম (ঐচ্ছিক) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,অননুমোদিত apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,নিম্নলিখিত ক্ষেত্র অনুপস্থিত মানের আছে: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,প্রথম লেনদেন -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,আপনি কর্ম সম্পন্ন করার জন্য যথেষ্ট অনুমতি নেই +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,আপনি কর্ম সম্পন্ন করার জন্য যথেষ্ট অনুমতি নেই apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,কোন ফলাফল নেই DocType: System Settings,Security,নিরাপত্তা apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,{0} প্রাপকদের পাঠাতে তফসিলি @@ -1099,6 +1134,7 @@ DocType: Kanban Board Column,lightblue,হালকা নীল apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,একই ক্ষেত্র একাধিকবার প্রবেশ করে apps/frappe/frappe/templates/includes/list/filters.html +19,clear,পরিষ্কার apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,প্রতিদিন ঘটনা একই দিনে শেষ হবে. +DocType: Prepared Report,Filter Values,ফিল্টার মান DocType: Communication,User Tags,ব্যবহারকারী ট্যাগ্স DocType: Data Migration Run,Fail,ব্যর্থ DocType: Workflow State,download-alt,ডাউনলোড-Alt @@ -1106,13 +1142,13 @@ DocType: Data Migration Run,Pull Failed,টানুন ব্যর্থ DocType: Communication,Feedback Request,প্রতিক্রিয়া অনুরোধ apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,CSV / Excel ফাইলগুলি থেকে তথ্য আমদানি করুন apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,নিম্নলিখিত ক্ষেত্রগুলি অনুপস্থিত হয়: -apps/frappe/frappe/www/login.html +28,Sign in,প্রবেশ কর +apps/frappe/frappe/www/login.html +29,Sign in,প্রবেশ কর apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},{0} বাতিল হচ্ছে DocType: Web Page,Main Section,প্রধান ধারা DocType: Page,Icon,আইকন -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","ইঙ্গিত: পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","ইঙ্গিত: পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন" DocType: DocField,Allow in Quick Entry,কুইক এণ্ট্রিতে অনুমতি দিন -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,পিডিএফ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,পিডিএফ DocType: System Settings,dd/mm/yyyy,ডিডি / MM / YYYY apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite স্ক্রিপ্ট পরীক্ষা DocType: System Settings,Backups,ব্যাক-আপ @@ -1129,23 +1165,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,একট DocType: Footer Item,Target,লক্ষ্য DocType: System Settings,Number of Backups,ব্যাক-আপ সংখ্যা DocType: Website Settings,Copyright,কপিরাইট -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,যাওয়া +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,যাওয়া DocType: OAuth Authorization Code,Invalid,অকার্যকর DocType: ToDo,Due Date,নির্দিষ্ট তারিখ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,কোয়ার্টার দিন DocType: Website Settings,Hide Footer Signup,পাদলেখ সাইনআপ লুকান -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,এই দলিল বাতিল +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,এই দলিল বাতিল apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,এই সংরক্ষিত ও কলাম এবং ফলাফলের আসতে যেখানে একই ফোল্ডারে একটি পাইথন ফাইলটি লিখতে. +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,টেবিলে যোগ করুন DocType: DocType,Sort Field,সাজান মাঠ DocType: Razorpay Settings,Razorpay Settings,Razorpay সেটিংস -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,সম্পাদনা ফিল্টার -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,মাঠ {0} টাইপ {1} বাধ্যতামূলক হতে পারে না +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,সম্পাদনা ফিল্টার +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,মাঠ {0} টাইপ {1} বাধ্যতামূলক হতে পারে না apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,আরো যোগ করো DocType: System Settings,Session Expiry Mobile,সেশন মেয়াদ উত্তীর্ন মোবাইল apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,ভুল ব্যবহারকারী বা পাসওয়ার্ড apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,এর জন্য অনুসন্ধানের ফলাফল apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,অ্যাক্সেস টোকেন URL প্রবেশ করুন -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,ডাউনলোড করার জন্য নির্বাচন: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,ডাউনলোড করার জন্য নির্বাচন: DocType: Notification,Slack,ঢিলা DocType: Custom DocPerm,If user is the owner,ব্যবহারকারী মালিক যদি ,Activity,কার্যকলাপ @@ -1154,7 +1191,7 @@ DocType: User Permission,Allow,অনুমতি দিন apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,চলুন শুরু করা যাক পুনরাবৃত্তি শব্দ এবং অক্ষর এড়ানো DocType: Communication,Delayed,বিলম্বিত apps/frappe/frappe/config/setup.py +140,List of backups available for download,ডাউনলোডের জন্য উপলব্ধ ব্যাকআপ তালিকা -apps/frappe/frappe/www/login.html +71,Sign up,নিবন্ধন করুন +apps/frappe/frappe/www/login.html +72,Sign up,নিবন্ধন করুন apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,সারি {0}: স্ট্যান্ডার্ড ক্ষেত্রগুলি জন্য অযথা অক্ষম অক্ষম করা যাবে না DocType: Test Runner,Output,আউটপুট DocType: Notification,Set Property After Alert,সতর্কতা পর সম্পদ সেট @@ -1165,7 +1202,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,ফাইলের ধরন DocType: Workflow State,leaf,পাতা DocType: Portal Menu Item,Portal Menu Item,পোর্টাল মেনু আইটেম -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,ব্যবহারকারী সেটিংস সাফ করুন DocType: Contact Us Settings,Email ID,ইমেইল আইডি DocType: Activity Log,Keep track of all update feeds,সব আপডেট ফিডগুলির নজর রাখুন DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,সম্পদের একটি তালিকা যা ক্লায়েন্ট অ্যাপ ব্যবহারকারী এটি করতে সক্ষম হবেন পরে অ্যাক্সেস থাকবে.
যেমন প্রকল্প @@ -1175,7 +1211,7 @@ DocType: Error Snapshot,Timestamp,টাইমস্ট্যাম্প DocType: Patch Log,Patch Log,প্যাচ কার্যবিবরণী DocType: Data Migration Mapping,Local Primary Key,স্থানীয় প্রাথমিক কী apps/frappe/frappe/utils/bot.py +164,Hello {0},হ্যালো {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},স্বাগতম {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},স্বাগতম {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,যোগ apps/frappe/frappe/www/me.html +40,Profile,প্রোফাইলের DocType: Communication,Sent or Received,প্রেরিত বা প্রাপ্ত @@ -1199,7 +1235,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,জন্য সেটআপ DocType: Workflow State,minus-sign,মাইনাস টু সাইন apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,খুঁজে পাওয়া যাচ্ছে না -apps/frappe/frappe/www/printview.py +200,No {0} permission,কোন {0} অনুমতি +apps/frappe/frappe/www/printview.py +199,No {0} permission,কোন {0} অনুমতি apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,রপ্তানি কাস্টম অনুমতি DocType: Data Export,Fields Multicheck,ক্ষেত্র মাল্টিচেক DocType: Activity Log,Login,লগইন @@ -1207,7 +1243,7 @@ DocType: Web Form,Payments,পেমেন্টস্ apps/frappe/frappe/www/qrcode.html +9,Hi {0},হাই {0} DocType: System Settings,Enable Scheduled Jobs,নির্ধারিত কাজ সক্রিয় apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,নোট: -apps/frappe/frappe/www/message.html +65,Status: {0},স্থিতি: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},স্থিতি: {0} DocType: DocShare,Document Name,ডকুমেন্ট নাম apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,স্প্যাম হিসাবে চিহ্নিত করুন DocType: ToDo,Medium,মাঝারি @@ -1225,7 +1261,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},নাম {0} apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,তারিখ থেকে apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,সাফল্য apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},প্রতিক্রিয়ার জন্য {0} পাঠানো হয় অনুরোধ {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,সময় মেয়াদ শেষ +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,সময় মেয়াদ শেষ DocType: Kanban Board Column,Kanban Board Column,Kanban বোর্ড কলাম apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,কী এর সোজা সারি অনুমান করা সহজ DocType: Communication,Phone No.,ফোন নম্বর. @@ -1248,17 +1284,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},উপেক্ষিত: {0} থেকে {1} DocType: Address,Gujarat,গুজরাট apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,স্বয়ংক্রিয় ঘটনা (নির্ধারণকারী) উপর ত্রুটির লগ ইন করুন. -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),কোনো বৈধ কমা দ্বারা পৃথকীকৃত মান (CSV ফাইল) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),কোনো বৈধ কমা দ্বারা পৃথকীকৃত মান (CSV ফাইল) DocType: Address,Postal,ঠিকানা 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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,খুজে পেতে সাহায্য নিন -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,নিবন্ধিত কিন্তু প্রতিবন্ধী +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,নিবন্ধিত কিন্তু প্রতিবন্ধী DocType: DocType,Hide Copy,কপি লুকান apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,সব ভূমিকা পরিষ্কার -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} অনন্য হওয়া আবশ্যক +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} অনন্য হওয়া আবশ্যক apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,সারি apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","সিসি, বিসিসি এবং ইমেইল টেমপ্লেট" DocType: Data Migration Mapping Detail,Local Fieldname,স্থানীয় ক্ষেত্রের নাম @@ -1266,7 +1302,7 @@ DocType: User Permission,Linked Doctypes,লিঙ্কড ডক্টাই DocType: DocType,Track Changes,গতিপথের পরিবর্তন DocType: Workflow State,Check,চেক DocType: Chat Profile,Offline,অফলাইন -DocType: Razorpay Settings,API Key,API কী +DocType: User,API Key,API কী DocType: Email Account,Send unsubscribe message in email,ইমেলে সদস্যতা রদ করার বার্তা পাঠান apps/frappe/frappe/public/js/frappe/form/toolbar.js +82,Edit Title,সম্পাদনা শিরোনাম apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,অ্যাপস ইনস্টল @@ -1274,6 +1310,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,আপনি এবং আপনার দ্বারা নির্ধারিত ডকুমেন্টস. DocType: User,Email Signature,ইমেইল স্বাক্ষর DocType: Website Settings,Google Analytics ID,Google এনালিটিক্স আইডি +DocType: Web Form,"For help see Client Script API and Examples","ক্লায়েন্ট স্ক্রিপ্ট API এবং উদাহরণ দেখুন সাহায্যের জন্য" DocType: Website Theme,Link to your Bootstrap theme,আপনার বুটস্ট্র্যাপ থিম সাথে যোগসূত্র DocType: Custom DocPerm,Delete,মুছে apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},নতুন {0} @@ -1283,10 +1320,10 @@ DocType: Print Settings,PDF Page Size,পিডিএফ পৃষ্ঠা আ DocType: Data Import,Attach file for Import,আমদানি করার জন্য ফাইল সংযুক্ত করুন DocType: Communication,Recipient Unsubscribed,সদস্যতামুক্তি প্রাপক DocType: Feedback Request,Is Sent,পাঠানো হয় -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,প্রায় +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,প্রায় apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.","আপডেট করার জন্য, আপনি শুধুমাত্র নির্বাচনী কলাম আপডেট করতে পারেন." DocType: Chat Token,Country,দেশ -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,ঠিকানা +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,ঠিকানা DocType: Communication,Shared,শেয়ারকৃত apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,ডকুমেন্ট প্রিন্ট সংযুক্ত DocType: Bulk Update,Field,ক্ষেত্র @@ -1297,12 +1334,12 @@ DocType: Chat Message,URLs,URL গুলি DocType: Data Migration Run,Total Pages,মোট পৃষ্ঠাগুলি DocType: DocField,Attach Image,চিত্র সংযুক্ত DocType: Workflow State,list-alt,তালিকায়-Alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,পাসওয়ার্ড আপডেট করা +apps/frappe/frappe/www/update-password.html +79,Password Updated,পাসওয়ার্ড আপডেট করা apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,আপনার লগইন যাচাই করার জন্য পদক্ষেপ apps/frappe/frappe/utils/password.py +50,Password not found,পাসওয়ার্ড পাওয়া যায়নি DocType: Data Migration Mapping,Page Length,পৃষ্ঠা লেন্থ DocType: Email Queue,Expose Recipients,প্রাপক এক্সপোজ -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,অন্তর্মুখী মেইল জন্য বাধ্যতামূলক সংযোজন +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,অন্তর্মুখী মেইল জন্য বাধ্যতামূলক সংযোজন DocType: Contact,Salutation,অভিবাদন DocType: Communication,Rejected,প্রত্যাখ্যাত apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,ট্যাগ সরান @@ -1313,14 +1350,14 @@ DocType: User,Set New Password,নতুন পাসওয়ার্ড স apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} সারি একাধিক বার প্রদর্শিত {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} থেকে {1} থেকে {2} মধ্যে সারি # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} সারি একাধিক বার প্রদর্শিত {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{0} from {1} to {2} in row #{3},{0} থেকে {1} থেকে {2} মধ্যে সারি # {3} DocType: Communication,Expired,মেয়াদউত্তীর্ণ apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +32,Seems token you are using is invalid!,আপনি ব্যবহার করছেন টোকেনটি অবৈধ বলে মনে হচ্ছে! DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),একটি ক্ষেত্রের জন্য কলামের সংখ্যা একটি গ্রিড মধ্যে (একটি গ্রিড মধ্যে মোট কলাম কম 11 হতে হবে) DocType: DocType,System,পদ্ধতি DocType: Web Form,Max Attachment Size (in MB),ম্যাক্স সংযুক্তি মাপ (মেগাবাইটে) -apps/frappe/frappe/www/login.html +75,Have an account? Login,একটি একাউন্ট আছে? লগইন +apps/frappe/frappe/www/login.html +76,Have an account? Login,একটি একাউন্ট আছে? লগইন apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},অজানা মুদ্রণ বিন্যাস: {0} DocType: Workflow State,arrow-down,তীর-ডাউন apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},ব্যবহারকারী মোছার জন্য অনুমোদিত নয় {0}: {1} @@ -1332,30 +1369,30 @@ DocType: Help Article,Likes,পছন্দ DocType: Website Settings,Top Bar,শীর্ষ বার DocType: GSuite Settings,Script Code,স্ক্রিপ্ট কোড apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,ব্যবহারকারী ইমেইল তৈরি করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,কোনো অনুমতি নির্দিষ্ট +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,কোনো অনুমতি নির্দিষ্ট apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} পাওয়া যায়নি DocType: Custom Role,Custom Role,কাস্টম ভূমিকা apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,হোম / Test ফোল্ডার 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,আপলোড করার আগে নথি সংরক্ষণ করুন. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,আপনার পাসওয়ার্ড লিখুন +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,আপনার পাসওয়ার্ড লিখুন DocType: Dropbox Settings,Dropbox Access Secret,ড্রপবক্স অ্যাক্সেস গোপন DocType: Social Login Key,Social Login Provider,সামাজিক লগইন প্রদানকারী apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,আরেকটি মন্তব্য যোগ করুন -apps/frappe/frappe/core/doctype/data_import/importer.py +81,No data found in the file. Please reattach the new file with data.,ফাইলে কোন ডেটা পাওয়া যায়নি। দয়া করে ডেটা সহ নতুন ফাইল পুনরায় সংযুক্ত করুন। +apps/frappe/frappe/core/doctype/data_import/importer.py +80,No data found in the file. Please reattach the new file with data.,ফাইলে কোন ডেটা পাওয়া যায়নি। দয়া করে ডেটা সহ নতুন ফাইল পুনরায় সংযুক্ত করুন। apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,DOCTYPE সম্পাদনা apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,নিউজলেটার থেকে সদস্যতা মুক্ত -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,একটি অনুচ্ছেদ বিরতির আগে আসতে হবে ভাঁজ +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,একটি অনুচ্ছেদ বিরতির আগে আসতে হবে ভাঁজ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,উন্নয়ন অধীনে apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,নথিতে যান apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,সর্বশেষ রুপান্তরিত apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,কাস্টমাইজেশন পুনরায় সেট করুন DocType: Workflow State,hand-down,হাত নিচে করো DocType: Address,GST State,GST রাজ্য -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0}: ছাড়া জমা বাতিল সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0}: ছাড়া জমা বাতিল সেট করা যায় না DocType: Website Theme,Theme,বিষয়বস্তু DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,পুনর্নির্দেশ কোনো URI প্রমাণীকরণ কোড আবদ্ধ DocType: DocType,Is Submittable,Submittable হয় -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,নতুন উল্লেখ +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,নতুন উল্লেখ apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,একটি চেক ক্ষেত্রের জন্য মান 0 অথবা 1 হতে পারে apps/frappe/frappe/model/document.py +733,Could not find {0},খুঁজে পাওয়া যায়নি {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,কলামের লেবেল: @@ -1375,7 +1412,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,গ্রুপ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",নির্বাচন টার্গেট = "_blank" একটি নতুন পাতা খুলুন. apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,ডাটাবেস ফাইলের আকার: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,স্থায়ীভাবে মুছে {0}? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,স্থায়ীভাবে মুছে {0}? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,একই ফাইলের ইতিমধ্যে রেকর্ড সংযুক্ত হয়েছে apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} একটি বৈধ ওয়ার্কফ্লো স্টেট নয়। আপনার ওয়ার্কফ্লো আপডেট করুন এবং আবার চেষ্টা করুন। DocType: Workflow State,wrench,বিকৃত করা @@ -1389,27 +1426,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,মন্তব্য যোগ করুন DocType: DocField,Mandatory,কার্যভার apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,মডিউল রপ্তানি করতে -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0} থে মৌলিক অনুমতি সেট +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0} থে মৌলিক অনুমতি সেট apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,আপনার সাবস্ক্রিপশন মেয়াদ শেষ হবে {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},আপনার ব্যাকআপ জন্য ডাউনলোড লিংক ওপেন ইমেইল ঠিকানা ইমেল করা হবে: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","বাতিল, জমা অর্থ সংশোধন" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,করতে DocType: Test Runner,Module Path,মডিউল পথ DocType: Social Login Key,Identity Details,পরিচয় বিবরণ +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),তারপর পর্যায়ক্রমে (ঐচ্ছিক) DocType: File,Preview HTML,পূর্বদৃশ্য এইচটিএমএল DocType: Desktop Icon,query-report,ক্যোয়ারী-প্রতিবেদন -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},নির্ধারিত {0}: {1} DocType: DocField,Percent,শতাংশ apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,সংযুক্ত apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,অটো ইমেল রিপোর্ট সেটিংস সম্পাদনা করুন DocType: Chat Room,Message Count,বার্তা গণনা DocType: Workflow State,book,বই +DocType: Communication,Read by Recipient,প্রাপক দ্বারা পড়ুন DocType: Website Settings,Landing Page,অবতরণ পাতা apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,কাস্টম স্ক্রিপ্ট ত্রুটি apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} নাম apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,কোন অনুমতি এই মানদণ্ড নির্ধারণ করা. DocType: Auto Email Report,Auto Email Report,অটো ইমেল প্রতিবেদন -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,মন্তব্য মুছে ফেলতে চান? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,মন্তব্য মুছে ফেলতে চান? DocType: Address Template,This format is used if country specific format is not found,দেশ নির্দিষ্ট ফরম্যাটে পাওয়া না গেলে এই বিন্যাস ব্যবহার করা হয়েছে DocType: System Settings,Allow Login using Mobile Number,লগইন মোবাইল নম্বর ব্যবহার করার অনুমতি দেয় apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,আপনি এই রিসোর্স অ্যাক্সেস করার অনুমতি নেই. প্রবেশাধিকার পেতে আপনার ম্যানেজারের সাথে যোগাযোগ করুন. @@ -1426,7 +1464,7 @@ DocType: Letter Head,Printing,মুদ্রণ DocType: Workflow State,thumbs-up,অঙ্গুষ্ঠ আপ DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ফন্ট -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,যথার্থ 1 এবং 6 এর মধ্যে হতে হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,যথার্থ 1 এবং 6 এর মধ্যে হতে হবে apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,এবং apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},এই রিপোর্টটি {0} @@ -1438,16 +1476,16 @@ DocType: Auto Email Report,Report Filters,গালাগাল প্রতি apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,এখন DocType: Workflow State,step-backward,ধাপে অনগ্রসর apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{অ্যাপ_শিরোনাম} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,আপনার সাইটে কনফিগ ড্রপবক্স এক্সেস কী সেট করুন +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,Please set Dropbox access keys in your site config,আপনার সাইটে কনফিগ ড্রপবক্স এক্সেস কী সেট করুন apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,এই ইমেইল ঠিকানায় পাঠানোর অনুমতি এই রেকর্ড মুছে apps/frappe/frappe/core/doctype/data_import/exporter.py +67,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,শুধু বাধ্যতামূলক ক্ষেত্র নতুন রেকর্ডের জন্য প্রয়োজন হয়. যদি আপনি চান আপনি অ বাধ্যতামূলক কলাম মুছে দিতে পারেন. -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,ইভেন্ট আপডেট করতে অক্ষম -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,পেমেন্ট সমাপ্তি +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,ইভেন্ট আপডেট করতে অক্ষম +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,পেমেন্ট সমাপ্তি apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,যাচাইকরণ কোড আপনার নিবন্ধিত ইমেল ঠিকানাতে পাঠানো হয়েছে। -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,রোধ করা -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ফিল্টার 4 মান (DOCTYPE, FIELDNAME, অপারেটর, মান) থাকতে হবে: {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,রোধ করা +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ফিল্টার 4 মান (DOCTYPE, FIELDNAME, অপারেটর, মান) থাকতে হবে: {0}" apps/frappe/frappe/utils/bot.py +89,show,প্রদর্শনী -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},অবৈধ ক্ষেত্রের নাম {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},অবৈধ ক্ষেত্রের নাম {0} DocType: Address Template,Address Template,ঠিকানা টেমপ্লেট DocType: Workflow State,text-height,টেক্সট-উচ্চতা DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ডেটা মাইগ্রেশন প্ল্যান ম্যাপিং @@ -1457,13 +1495,14 @@ DocType: Workflow State,map-marker,মানচিত্র-মার্কা apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,একটি সমস্যার জমা DocType: Event,Repeat this Event,এই ঘটনার পুনরাবৃত্তি DocType: Address,Maintenance User,রক্ষণাবেক্ষণ ব্যবহারকারী +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,পছন্দসমূহ বাছাই apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,তারিখ এবং বছর যে আপনার সাথে সংযুক্ত করা হয় এড়িয়ে চলুন. DocType: Custom DocPerm,Amend,সংশোধন করা DocType: Data Import,Generated File,উত্পন্ন ফাইল DocType: Transaction Log,Previous Hash,পূর্ববর্তী হ্যাশ DocType: File,Is Attachments Folder,সংযুক্তি ফোল্ডার apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,সব কিছু বিশদভাবে ব্যক্ত করা -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,বার্তা শুরু করতে একটি চ্যাট নির্বাচন করুন। +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,বার্তা শুরু করতে একটি চ্যাট নির্বাচন করুন। apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,দয়া করে এন্টিটি প্রকার প্রথম নির্বাচন করুন apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,বৈধ লগইন আইডি প্রয়োজন. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,তথ্য দিয়ে একটি বৈধ CSV ফাইল নির্বাচন করুন @@ -1476,26 +1515,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,রেকর্ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,মূল মূল্য DocType: Help Category,Help Category,সাহায্য বিভাগ apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,ব্যবহারকারী {0} নিষ্ক্রিয় করা হয় -apps/frappe/frappe/www/404.html +20,Page missing or moved,অনুপস্থিত বা সরানো পৃষ্ঠা +apps/frappe/frappe/www/404.html +21,Page missing or moved,অনুপস্থিত বা সরানো পৃষ্ঠা DocType: DocType,Route,রুট apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay পেমেন্ট গেটওয়ে সেটিংস +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,দস্তাবেজ থেকে সংযুক্ত চিত্রগুলি আনুন DocType: Chat Room,Name,নাম DocType: Contact Us Settings,Skype,স্কাইপ apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,আপনি আপনার পরিকল্পনা জন্য {0} এর সর্বোচ্চ স্থান অতিক্রম করেছেন. {1}. DocType: Chat Profile,Notification Tones,বিজ্ঞপ্তি টোন -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ডক্স অনুসন্ধান করুন +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,ডক্স অনুসন্ধান করুন DocType: OAuth Authorization Code,Valid,বৈধ apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,খোলা সংযুক্তি apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,তোমার ভাষা apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,সারি যোগ করুন DocType: Tag Category,Doctypes,Doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,ক্যোয়ারী নির্বাচন হতে হবে -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,আমদানি করতে একটি ফাইল সংযুক্ত করুন -DocType: Auto Repeat,Completed,সম্পন্ন +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,ক্যোয়ারী নির্বাচন হতে হবে +DocType: Prepared Report,Completed,সম্পন্ন DocType: File,Is Private,ব্যক্তিগত DocType: Data Export,Select DocType,নির্বাচন DOCTYPE apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,ফাইলের আকার {0} মেগাবাইট সর্বোচ্চ অনুমোদিত মাপ অতিক্রম -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,তৈরি +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,তৈরি DocType: Workflow State,align-center,সারিবদ্ধ-কেন্দ্র DocType: Feedback Request,Is Feedback request triggered manually ?,প্রতিক্রিয়া আমাদেরকে জানাতে অনুরোধ ম্যানুয়ালি সূত্রপাত হয়? DocType: Address,Lakshadweep Islands,লাক্ষাদ্বীপ দ্বীপপুঞ্জ @@ -1503,7 +1542,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","নির্দিষ্ট কাগজপত্র, একটি চালান মত, একবার চূড়ান্ত পরিবর্তন করা উচিত নয়. যেমন নথি জন্য চূড়ান্ত রাষ্ট্র জমা বলা হয়. আপনি ভূমিকা জমা দিতে পারেন, যা সীমিত করতে পারে." DocType: Newsletter,Test Email Address,টেস্ট ইমেল ঠিকানা DocType: ToDo,Sender,প্রেরকের -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,বিজ্ঞপ্তি মূল্যায়ন করার সময় ত্রুটি {0}। আপনার টেমপ্লেট ঠিক করুন। +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,বিজ্ঞপ্তি মূল্যায়ন করার সময় ত্রুটি {0}। আপনার টেমপ্লেট ঠিক করুন। DocType: GSuite Settings,Google Apps Script,Google Apps স্ক্রিপ্ট apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,মতামত দিন DocType: Web Page,Description for search engine optimization.,সার্চ ইঞ্জিন অপ্টিমাইজেশান জন্য বর্ণনা. @@ -1513,7 +1552,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,ব DocType: System Settings,Allow only one session per user,ব্যবহারকারী প্রতি শুধুমাত্র এক অধিবেশন মঞ্জুর করুন apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,হোম / Test ফোল্ডার 1 / Test ফোল্ডার 3 DocType: Website Settings,<head> HTML,<Head> এইচটিএমএল -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,নির্বাচন করুন অথবা একটি নতুন ইভেন্ট তৈরি করতে সময় স্লট জুড়ে টেনে আনুন. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,নির্বাচন করুন অথবা একটি নতুন ইভেন্ট তৈরি করতে সময় স্লট জুড়ে টেনে আনুন. DocType: DocField,In Filter,ফিল্টার apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,মডিউল অনুচ্ছেদ দেখান @@ -1525,17 +1564,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",পৃষ্ঠা ওয়েবসাইটে প্রদর্শন DocType: Note,Seen By Table,দ্বারা ছক দেখেছি -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,টেমপ্লেট নির্বাচন করুন +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,টেমপ্লেট নির্বাচন করুন apps/frappe/frappe/www/third_party_apps.html +47,Logged in,লগ ইন apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,ভুল আইডি বা পাসওয়ার্ড apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,অন্বেষণ করা apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,ডিফল্ট পাঠানোর এবং ইনবক্স DocType: System Settings,OTP App,OTP অ্যাপ্লিকেশন +DocType: Dropbox Settings,Send Email for Successful Backup,সফল ব্যাকআপের জন্য ইমেল পাঠান apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ডকুমেন্ট আইডি DocType: Print Settings,Letter,চিঠি -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,চিত্র ক্ষেত্র ধরনের হতে হবে চিত্র সংযুক্ত করুন +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,চিত্র ক্ষেত্র ধরনের হতে হবে চিত্র সংযুক্ত করুন DocType: DocField,Columns,কলাম -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,পাঠ্য অ্যাক্সেসের সাথে {0} ব্যবহারকারীর সাথে ভাগ করা +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,পাঠ্য অ্যাক্সেসের সাথে {0} ব্যবহারকারীর সাথে ভাগ করা DocType: Async Task,Succeeded,অনুসৃত apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},এ প্রয়োজন আবশ্যিক ক্ষেত্র {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,রিসেট অনুমতি {0}? @@ -1553,14 +1593,14 @@ DocType: DocType,ASC,উচ্চক্রমে DocType: Workflow State,align-left,সারিবদ্ধ বাম DocType: User,Defaults,ডিফল্ট DocType: Feedback Request,Feedback Submitted,প্রতিক্রিয়া জমা দেওয়া হয়েছে -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,বিদ্যমান সাথে একত্রীকরণ +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,বিদ্যমান সাথে একত্রীকরণ DocType: User,Birth Date,জন্ম তারিখ DocType: Dynamic Link,Link Title,লিংক শিরোনাম DocType: Workflow State,fast-backward,ফাস্ট-অনুন্নত DocType: Address,Chandigarh,চন্ডিগড় DocType: DocShare,DocShare,DocShare DocType: Event,Friday,শুক্রবার -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,পুরো পাতা সম্পাদনার +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,পুরো পাতা সম্পাদনার DocType: Report,Add Total Row,মোট সারি যোগ apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,কিভাবে এগিয়ে যেতে নির্দেশাবলী জন্য আপনার নিবন্ধিত ইমেইল ঠিকানা চেক করুন এই উইন্ডোটি বন্ধ করবেন না যেহেতু আপনাকে এটিতে ফিরে আসতে হবে। apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,আপনি বাতিল এবং INV004 সংশোধন উদাহরণস্বরূপ যদি একটি নতুন ডকুমেন্ট INV004-1 হয়ে যাবে. এই কমান্ডের সাহায্যে আপনি প্রতিটি সংশোধনীর ট্র্যাক রাখতে সাহায্য করে. @@ -1581,11 +1621,10 @@ apps/frappe/frappe/www/feedback.html +96,Please give a detailed feebdack.,বি DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent",= [?] যেমন 1 ইউএসডি জন্য ভগ্নাংশ = 100 সেন্ট 1 মুদ্রা DocType: Data Import,Partially Successful,আংশিক সফল -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","অনেক ব্যবহারকারীরা সম্প্রতি সাইন আপ, তাই নিবন্ধীকরণ নিষ্ক্রিয় করা হয়েছে. এক ঘন্টার মধ্যে ফিরে চেষ্টা করুন" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","অনেক ব্যবহারকারীরা সম্প্রতি সাইন আপ, তাই নিবন্ধীকরণ নিষ্ক্রিয় করা হয়েছে. এক ঘন্টার মধ্যে ফিরে চেষ্টা করুন" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,নতুন অনুমতি রুল করো apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,আপনি যদি ওয়াইল্ডকার্ড% ব্যবহার করতে পারেন DocType: Chat Message Attachment,Chat Message Attachment,চ্যাট বার্তা সংযুক্তি -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,সেটআপ থেকে ডিফল্ট ইমেইল অ্যাকাউন্ট সেট আপ করুন> ইমেইল> ইমেল অ্যাকাউন্ট apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","(.gif, .jpg, JPEG, এক চুমুক মদ, .png, SVG খুলে) অনুমোদিত শুধু ইমেজ এক্সটেনশন" DocType: Address,Manipur,মণিপুর DocType: DocType,Database Engine,ডাটাবেস ইঞ্জিন @@ -1606,7 +1645,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,সহায়ক DocType: System Settings,In Hours,ঘন্টা ইন apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,লেটারহেড সঙ্গে -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,অকার্যকর বহির্গামী মেইল সার্ভার বা পোর্ট +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,অকার্যকর বহির্গামী মেইল সার্ভার বা পোর্ট DocType: Custom DocPerm,Write,লেখা apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed to create Query / Script Reports,কেবলমাত্র প্রশাসক ক্যোয়ারী / স্ক্রিপ্ট রিপোর্ট তৈরি করার অনুমতি apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,আপডেট করার প্রণালী @@ -1615,28 +1654,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,শিরোনাম উৎপন্ন এই FIELDNAME ব্যবহার apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,থেকে আমদানি ইমেইল apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,ব্যবহারকারী হিসেবে আমন্ত্রণ -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,হোম ঠিকানা প্রয়োজন +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,হোম ঠিকানা প্রয়োজন DocType: Data Migration Run,Started,শুরু +DocType: Data Migration Run,End Time,শেষ সময় apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,নির্বাচন সংযুক্তি apps/frappe/frappe/model/naming.py +113, for {0},জন্য {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,ত্রুটিযুক্ত ছিল. এই রিপোর্ট করুন দয়া করে. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,ত্রুটিযুক্ত ছিল. এই রিপোর্ট করুন দয়া করে. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,আপনি এই নথীটি ছাপানোর জন্য অনুমতি দেওয়া হয় না apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},বর্তমানে {0} আপডেট হচ্ছে -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,গালাগাল প্রতিবেদন ফিল্টার টেবিলে ফিল্টার মান নির্ধারণ করুন. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,লোড প্রতিবেদন +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,গালাগাল প্রতিবেদন ফিল্টার টেবিলে ফিল্টার মান নির্ধারণ করুন. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,লোড প্রতিবেদন apps/frappe/frappe/limits.py +74,Your subscription will expire today.,আপনার সাবস্ক্রিপশন আজ এর মেয়াদ শেষ হবে. DocType: Page,Standard,মান -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,সংযুক্তি +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,সংযুক্তি +DocType: Data Migration Plan,Preprocess Method,প্রাক প্রক্রিয়াকরণ পদ্ধতি apps/frappe/frappe/desk/page/backups/backups.html +13,Size,আয়তন apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,সম্পূর্ণ নিয়োগ DocType: Desktop Icon,Idx,Idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

কোন ফলাফল পাওয়া যায়নি '

DocType: Address,Madhya Pradesh,মধ্য প্রদেশ DocType: Deleted Document,New Name,নতুন নাম DocType: System Settings,Is First Startup,প্রথম স্টার্টআপ DocType: Communication,Email Status,ইমেইল স্থিতি apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,নিয়োগ সরানোর আগে নথি সংরক্ষণ করুন apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,সন্নিবেশ উপরে -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,মন্তব্য শুধুমাত্র মালিক দ্বারা সম্পাদিত হতে পারে +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,মন্তব্য শুধুমাত্র মালিক দ্বারা সম্পাদিত হতে পারে DocType: Data Import,Do not send Emails,ইমেল পাঠাবেন না apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,প্রচলিত নাম এবং পদবির অনুমান করা সহজ. DocType: Auto Repeat,Draft,খসড়া @@ -1648,14 +1690,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,রদ করা DocType: Contact,Replied,জবাব দেওয়া DocType: Newsletter,Test,পরীক্ষা DocType: Custom Field,Default Value,ডিফল্ট মান -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,যাচাই করুন +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,যাচাই করুন DocType: Workflow Document State,Update Field,আপডেট মাঠ DocType: Chat Profile,Enable Chat,চ্যাট সক্ষম করুন DocType: LDAP Settings,Base Distinguished Name (DN),বেজ বিশিষ্ট নাম (ডিএন) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,এই কথোপকথন ত্যাগ -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},বিকল্প লিংক ক্ষেত্রের জন্য নির্ধারণ করে না {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},বিকল্প লিংক ক্ষেত্রের জন্য নির্ধারণ করে না {0} DocType: Customize Form,"Must be of type ""Attach Image""",টাইপ করতে হবে "চিত্র সংযুক্ত করুন" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,সরিয়ে ফেলুন সব +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,সরিয়ে ফেলুন সব apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},ফিল্ডের সেট না না 'শুধুমাত্র পাঠযোগ্য' পারেন {0} DocType: Auto Email Report,Zero means send records updated at anytime,জিরো মানে যে কোনো সময় আপডেট রেকর্ড পাঠাতে apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,সম্পূর্ণ সেটআপ @@ -1671,7 +1713,7 @@ DocType: Social Login Key,Google,গুগল DocType: Email Domain,Example Email Address,উদাহরণ ইমেল ঠিকানা apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,সর্বাধিক ব্যবহৃত apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,নিউজলেটার থেকে সদস্যতা রদ করুন -apps/frappe/frappe/www/login.html +83,Forgot Password,পাসওয়ার্ড ভুলে গেছেন +apps/frappe/frappe/www/login.html +84,Forgot Password,পাসওয়ার্ড ভুলে গেছেন DocType: Dropbox Settings,Backup Frequency,ব্যাকআপ ফ্রিকোয়েন্সি DocType: Workflow State,Inverse,বিপরীত DocType: DocField,User permissions should not apply for this Link,ব্যবহারকারীর অনুমতি এই লিঙ্কটির জন্য আবেদন করা উচিত নয় @@ -1688,6 +1730,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,ওয় apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,সফলভাবে আপডেট DocType: Activity Log,Logout,ত্যাগ করুন apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,উচ্চতর পর্যায়ে অনুমতি মাঠ পর্যায়ে অনুমতি আছে. সব ক্ষেত্র তাদের বিরুদ্ধে একটি অনুমতি স্তর সেট এবং অনুমতি ক্ষেত্রের জন্য প্রযোজ্য এ সংজ্ঞায়িত নিয়ম আছে. এই কমান্ডের সাহায্যে আপনি লুকাতে বা নির্দিষ্ট ক্ষেত্রের রিড-ওনলি নির্দিষ্ট ভূমিকা জন্য করতে চান ক্ষেত্রে এটি সহায়ক. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,সেটআপ> কাস্টমাইজ ফরম DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","এখানে স্ট্যাটিক URL পরামিতি লিখুন (যেমন. প্রেরকের = ERPNext, ব্যবহারকারীর নাম = ERPNext, পাসওয়ার্ড = 1234 ইত্যাদি)" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","সহায়ক নয়, গিটহাব বিষয়ে আপনার পরামর্শ যোগ দয়া যেখানে এই নির্দেশাবলী যদি." DocType: Workflow State,bookmark,বুকমার্ক @@ -1699,12 +1742,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,প apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} ইতিমধ্যে বিদ্যমান। অন্য নাম নির্বাচন করুন apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,প্রতিক্রিয়া অবস্থার মিলছে না DocType: S3 Backup Settings,None,না -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,সময়রেখা ক্ষেত্রের একটি বৈধ FIELDNAME হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,সময়রেখা ক্ষেত্রের একটি বৈধ FIELDNAME হবে DocType: GCalendar Account,Session Token,সেশন টোকেন DocType: Currency,Symbol,প্রতীক -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,সারি # {0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,সারি # {0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,নতুন পাসওয়ার্ড ইমেইল -apps/frappe/frappe/auth.py +272,Login not allowed at this time,এই সময়ে অনুমোদিত নয় লগইন +apps/frappe/frappe/auth.py +286,Login not allowed at this time,এই সময়ে অনুমোদিত নয় লগইন DocType: Data Migration Run,Current Mapping Action,বর্তমান ম্যাপিং অ্যাকশন DocType: Email Account,Email Sync Option,ইমেইল সিঙ্ক অপশন apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,রো নং @@ -1720,12 +1763,12 @@ DocType: Address,Fax,ফ্যাক্স apps/frappe/frappe/config/setup.py +263,Custom Tags,কাস্টম ট্যাগ DocType: Communication,Submitted,উপস্থাপিত DocType: System Settings,Email Footer Address,ইমেইল পাদলেখ ঠিকানা -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,ছক আপডেট +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,ছক আপডেট DocType: Activity Log,Timeline DocType,সময়রেখা DOCTYPE DocType: DocField,Text,পাঠ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,ডিফল্ট পাঠানো DocType: Workflow State,volume-off,ভলিউম বন্ধ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},দ্বারা পছন্দ {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},দ্বারা পছন্দ {0} DocType: Footer Item,Footer Item,পাদচরণ আইটেম ,Download Backups,ডাউনলোড ব্যাকআপ apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,হোম / Test ফোল্ডার 1 @@ -1733,7 +1776,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me, DocType: DocField,Dynamic Link,ডাইনামিক লিংক apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,এখন পর্যন্ত apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,দেখান ব্যর্থ কাজ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,বিবরণ +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,বিবরণ DocType: Property Setter,DocType or Field,DOCTYPE বা ক্ষেত্র DocType: Communication,Soft-Bounced,নরম-ফেরত DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","যদি সক্ষম হয়, তবে সমস্ত ব্যবহারকারী দুটি ফ্যাক্টর Auth ব্যবহার করে যেকোনো IP ঠিকানা থেকে লগইন করতে পারবেন। এটি শুধুমাত্র নির্দিষ্ট ব্যবহারকারী (গুলি) ব্যবহারকারী পৃষ্ঠাতে সেট করা যেতে পারে" @@ -1744,7 +1787,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,ইমেইল ট্র্যাশে সরানো হয়েছে DocType: Report,Report Builder,প্রতিবেদন নির্মাতা DocType: Async Task,Task Name,টাস্ক নাম -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","আপনার সেশনের মেয়াদ শেষ হয়ে গেছে, চালিয়ে যেতে আবার লগইন করুন।" +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","আপনার সেশনের মেয়াদ শেষ হয়ে গেছে, চালিয়ে যেতে আবার লগইন করুন।" DocType: Communication,Workflow,কর্মপ্রবাহ DocType: Website Settings,Welcome Message,স্বাগত বার্তা DocType: Webhook,Webhook Headers,ওয়েবহাইক শিরোলেখগুলি @@ -1761,10 +1804,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,ডকুমেন্ট মুদ্রণ করুন DocType: Contact Us Settings,Forward To Email Address,ফরোয়ার্ড ইমেইল ঠিকানায় apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,সব ডেটা দেখান -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,শিরোনাম ক্ষেত্রের একটি বৈধ FIELDNAME হতে হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,শিরোনাম ক্ষেত্রের একটি বৈধ FIELDNAME হতে হবে apps/frappe/frappe/config/core.py +7,Documents,কাগজপত্র DocType: Social Login Key,Custom Base URL,কাস্টম বেস URL DocType: Email Flag Queue,Is Completed,সম্পন্ন হয় +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,ক্ষেত্রগুলি পান apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} আপনাকে একটি মন্তব্যে উল্লেখ করেছে apps/frappe/frappe/www/me.html +22,Edit Profile,জীবন বৃত্তান্ত সম্পাদনা DocType: Kanban Board Column,Archived,আর্কাইভ করা @@ -1774,17 +1818,18 @@ myfield 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/form/controls/date.js +49,Today,আজ +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,আজ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","আপনি এই সেট করে থাকেন, শুধুমাত্র সেই ব্যবহারকারীদের ক্ষেত্রে সক্ষম এক্সেস নথি হতে হবে (যেমন. ব্লগ পোস্ট) লিংক (যেমন. ব্লগার) যেখানে বিদ্যমান." DocType: Error Log,Log of Scheduler Errors,নির্ধারণকারী ত্রুটি কার্যবিবরণী DocType: User,Bio,বায়ো DocType: OAuth Client,App Client Secret,অ্যাপ ক্লায়েন্ট সিক্রেট apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,জমা দেওয়ার +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,মূল ডকুমেন্টের নাম যা ডেটাকে যুক্ত করা হবে। apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,দেখান পছন্দ DocType: DocType,UPPER CASE,বড় হাতের apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,কাস্টম এইচটিএমএল apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,ফোল্ডারের নাম লিখুন -apps/frappe/frappe/auth.py +228,Unknown User,অপরিচিত ব্যবহারকারী +apps/frappe/frappe/auth.py +233,Unknown User,অপরিচিত ব্যবহারকারী apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,নির্বাচন ভূমিকা DocType: Communication,Deleted,মোছা DocType: Workflow State,adjust,সমন্বয় করা @@ -1806,21 +1851,21 @@ DocType: Data Migration Connector,Database Name,ডেটাবেস নাম apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,সুদ্ধ ফরম DocType: DocField,Select,নির্বাচন করা apps/frappe/frappe/utils/csvutils.py +29,File not attached,ফাইল সংযুক্ত করা -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,সংযোগ বিচ্ছিন্ন. কিছু বৈশিষ্ট্য কাজ করতে পারে না। +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,সংযোগ বিচ্ছিন্ন. কিছু বৈশিষ্ট্য কাজ করতে পারে না। apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess","AAA" মত পুনরাবৃত্তি অনুমান করা সহজ -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,নতুন চ্যাট +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,নতুন চ্যাট 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,দেখান অনুচ্ছেদ শিরোনাম DocType: Bulk Update,Limit,সীমা -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},পাথ এ পাওয়া কোন টেমপ্লেট: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,সব সেশন থেকে লগ আউট +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,একটি নতুন অধ্যায় যোগ করুন +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},পাথ এ পাওয়া কোন টেমপ্লেট: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,কোনো ইমেল অ্যাকাউন্ট DocType: Communication,Cancelled,বাতিল হয়েছে DocType: Chat Room,Avatar,অবতার DocType: Blogger,Posts,পোস্ট DocType: Social Login Key,Salesforce,বিক্রয় বল DocType: DocType,Has Web View,ওয়েব দৃশ্য আছে -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE এর একটি অক্ষর দিয়ে শুরু করা উচিত এবং এটা শুধুমাত্র অক্ষর, সংখ্যা, স্পেস এবং আন্ডারস্কোর দ্বারা গঠিত হতে পারে" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE এর একটি অক্ষর দিয়ে শুরু করা উচিত এবং এটা শুধুমাত্র অক্ষর, সংখ্যা, স্পেস এবং আন্ডারস্কোর দ্বারা গঠিত হতে পারে" DocType: Communication,Spam,স্প্যাম DocType: Integration Request,Integration Request,ইন্টিগ্রেশন অনুরোধ apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,প্রিয় @@ -1836,16 +1881,18 @@ DocType: Communication,Assigned,বরাদ্দ DocType: Print Format,Js,js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,নির্বাচন মুদ্রণ বিন্যাস apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,সংক্ষিপ্ত কীবোর্ড নিদর্শন অনুমান করা সহজ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,নতুন রিপোর্ট তৈরি করুন DocType: Portal Settings,Portal Menu,পোর্টাল মেনু apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,{0} এর দৈর্ঘ্য 1 এবং 1000 মধ্যে হতে হবে -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,কিছু জন্য অনুসন্ধান +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,কিছু জন্য অনুসন্ধান DocType: Data Migration Connector,Hostname,হোস্টনাম DocType: Data Migration Mapping,Condition Detail,শর্ত বিস্তারিত apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}","কারেন্সি {0} জন্য, ন্যূনতম লেনদেনের পরিমাণটি {1} হওয়া উচিত" DocType: DocField,Print Hide,প্রিন্ট লুকান -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,মান লিখুন +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,মান লিখুন DocType: Workflow State,tint,আভা DocType: Web Page,Style,শৈলী +DocType: Prepared Report,Report End Time,প্রতিবেদন শেষের সময় apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,যেমন: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} মন্তব্য apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,সংস্করণ আপডেট হয়েছে @@ -1858,10 +1905,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,চার্ট টগল করুন DocType: Website Settings,Sub-domain provided by erpnext.com,Erpnext.com দ্বারা উপলব্ধ সাব-ডোমেইন apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,আপনার সিস্টেম সেট আপ +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,বংশধর DocType: System Settings,dd-mm-yyyy,ডিডি-মিমি-YYYY -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,এই প্রতিবেদন অ্যাক্সেস প্রতিবেদন অনুমতি থাকতে হবে. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,এই প্রতিবেদন অ্যাক্সেস প্রতিবেদন অনুমতি থাকতে হবে. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,দয়া করে নূন্যতম পাসওয়ার্ড স্কোর নির্বাচন -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,যোগ করা +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,যোগ করা apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,আপনি একটি ব্যবহারকারী বিনামূল্যে পরিকল্পনা জন্য সাবস্ক্রাইব করেছেন DocType: Auto Repeat,Half-yearly,অর্ধ বার্ষিক apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,দৈনিক ইভেন্ট ডাইজেস্ট অনুস্মারক সেট করা হয় যেখানে ক্যালেন্ডার ইভেন্টের জন্য পাঠানো হয়. @@ -1872,7 +1920,7 @@ DocType: Workflow State,remove,অপসারণ DocType: Email Domain,If non standard port (e.g. 587),অ মানক পোর্ট (যেমন 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,পুনরায় লোড করুন apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,যোগ আপনার নিজস্ব ট্যাগ ধরন -apps/frappe/frappe/desk/query_report.py +227,Total,মোট +apps/frappe/frappe/desk/query_report.py +312,Total,মোট DocType: Event,Participants,অংশগ্রহণকারীরা DocType: Integration Request,Reference DocName,রেফারেন্স DocName DocType: Web Form,Success Message,সাফল্যের বার্তা @@ -1886,7 +1934,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,Build Report,প্রতিবেদন তৈরি DocType: Note,Notify users with a popup when they log in,যখন তারা লগ ইন ব্যবহারকারীদের একটি পপ-আপ দিয়ে সূচিত করুন apps/frappe/frappe/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge","{0} {1} অস্তিত্ব নেই, একত্রীকরণ একটি নতুন টার্গেট নির্বাচন" -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",এর জন্য অনুসন্ধানের ফলাফল "{0}" DocType: Data Migration Connector,Python Module,পাইথন মডিউল DocType: GSuite Settings,Google Credentials,Google শংসাপত্রের apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,লগইন যাচাইয়ের জন্য QR কোড @@ -1895,8 +1942,8 @@ DocType: Footer Item,Company,কোম্পানি apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,আমার নির্ধারিত apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,গুগল GSuite DocTypes সঙ্গে ইন্টিগ্রেশন টেমপ্লেট DocType: User,Logout from all devices while changing Password,পাসওয়ার্ড পরিবর্তন করার সময় সব ডিভাইস থেকে লগ আউট করুন -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,গোপন শব্দ যাচাই -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,ত্রুটি ছিল +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,গোপন শব্দ যাচাই +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,ত্রুটি ছিল apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,ঘনিষ্ঠ apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,0 থেকে 2 docstatus পরিবর্তন করা যাবে না DocType: File,Attached To Field,সংযুক্ত ক্ষেত্র থেকে @@ -1906,7 +1953,7 @@ DocType: Transaction Log,Transaction Hash,লেনদেন হাশ DocType: Error Snapshot,Snapshot View,স্ন্যাপশট দেখুন apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,পাঠানোর আগে নিউজলেটার সংরক্ষণ করুন apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Google ক্যালেন্ডারের অ্যাকাউন্টগুলি কনফিগার করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},বিকল্প সারিতে ক্ষেত্রের {0} জন্য একটি বৈধ DOCTYPE হতে হবে {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},বিকল্প সারিতে ক্ষেত্রের {0} জন্য একটি বৈধ DOCTYPE হতে হবে {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,বৈশিষ্ট্য সম্পাদনা DocType: Patch Log,List of patches executed,প্যাচ তালিকা মৃত্যুদন্ড apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ইতিমধ্যে আন-সাবস্ক্রাইব @@ -1925,8 +1972,8 @@ DocType: Data Migration Connector,Authentication Credentials,প্রমাণ DocType: Role,Two Factor Authentication,দুই ফ্যাক্টর প্রমাণীকরণ apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,বেতন DocType: SMS Settings,SMS Gateway URL,এসএমএস গেটওয়ে ইউআরএল -apps/frappe/frappe/model/base_document.py +508,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} হতে পারে না "{2}". এটা এক হতে হবে "{3}" -apps/frappe/frappe/utils/data.py +638,{0} or {1},{0} বা {1} +apps/frappe/frappe/model/base_document.py +517,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} হতে পারে না "{2}". এটা এক হতে হবে "{3}" +apps/frappe/frappe/utils/data.py +640,{0} or {1},{0} বা {1} apps/frappe/frappe/core/doctype/user/user.py +250,Password Update,পাসওয়ার্ড আপডেট DocType: Workflow State,trash,আবর্জনা DocType: System Settings,Older backups will be automatically deleted,পুরাতন ব্যাক-আপ স্বয়ংক্রিয়ভাবে মুছে ফেলা হবে @@ -1942,16 +1989,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,Relapsed apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,আইটেমটি নিজস্ব সন্তান যোগ করা যাবে না DocType: System Settings,Expiry time of QR Code Image Page,QR কোড চিত্র পৃষ্ঠা সমাপ্তির সময় -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,সমষ্টিগুলি দেখান +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,সমষ্টিগুলি দেখান DocType: Error Snapshot,Relapses,Relapses DocType: Address,Preferred Shipping Address,পছন্দের শিপিং ঠিকানা -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,পত্র মাথা +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,পত্র মাথা apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} এটা তৈরি করেছ {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 +38,Document is only editable by users of role,ডকুমেন্ট ভূমিকা ব্যবহারকারীদের দ্বারা শুধুমাত্র সম্পাদনাযোগ্য -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.",আপনি {1} দ্বারা {2} বন্ধ করা হয়েছে নির্ধারিত যে টাস্ক {0}. +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.",আপনি {1} দ্বারা {2} বন্ধ করা হয়েছে নির্ধারিত যে টাস্ক {0}. DocType: Print Format,Show Line Breaks after Sections,দেখান লাইন সেকশনস পর Breaks +DocType: Communication,Read by Recipient On,প্রাপক অন দ্বারা পড়া DocType: Blogger,Short Name,সংক্ষিপ্ত নাম -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},পাতা {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},পাতা {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},{0} এর সাথে লিঙ্ক করা হয়েছে apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1978,20 +2027,20 @@ DocType: Communication,Feedback,প্রতিক্রিয়া apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,খোলা অনুবাদ apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,এই ইমেলটি স্বয়ংক্রিয়ভাবে তৈরি করা হয়েছে DocType: Workflow State,Icon will appear on the button,আইকন বাটন প্রদর্শিত হবে -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,সকেটিও সংযুক্ত নয়। আপলোড করা যাবে না +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,সকেটিও সংযুক্ত নয়। আপলোড করা যাবে না DocType: Website Settings,Website Settings,ওয়েবসাইট সেটিংস apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,মাস DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: যোগ Reference: {{ reference_doctype }} {{ reference_name }} পাঠাতে নথি রেফারেন্স DocType: DocField,Fetch From,থেকে আসুন apps/frappe/frappe/modules/utils.py +205,App not found,অ্যাপ্লিকেশন পাওয়া যায় না -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},তৈরি করতে পারবেন একটি {0} একটি সন্তানের দলিল বিরুদ্ধে: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},তৈরি করতে পারবেন একটি {0} একটি সন্তানের দলিল বিরুদ্ধে: {1} DocType: Social Login Key,Social Login Key,সামাজিক লগইন কী DocType: Portal Settings,Custom Sidebar Menu,কাস্টম সাইডবার মেনু DocType: Workflow State,pencil,পেন্সিল apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,বার্তা এবং অন্যান্য বিজ্ঞপ্তি চ্যাট. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},হিসাবে সেট করা যাবে না পরে ঢোকান {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,শেয়ার {0} সঙ্গে -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,ই-মেইল অ্যাকাউন্ট সেটআপ জন্য আপনার পাসওয়ার্ড লিখুন: +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,ই-মেইল অ্যাকাউন্ট সেটআপ জন্য আপনার পাসওয়ার্ড লিখুন: DocType: Workflow State,hand-up,হাত তোল DocType: Blog Settings,Writers Introduction,রাইটার্স ভূমিকা DocType: Address,Phone,ফোন @@ -1999,18 +2048,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,নিষ্ক্রিয় DocType: Contact,Accounts Manager,হিসাবরক্ষক ব্যবস্থাপক apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,আপনার অর্থ প্রদান বাতিল করা হয়েছে। -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,নির্বাচন ফাইল টাইপ +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,নির্বাচন ফাইল টাইপ apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,সব দেখ DocType: Help Article,Knowledge Base Editor,নলেজ বেস সম্পাদক apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,পৃষ্ঠা খুঁজে পাওয়া যায়নি DocType: DocField,Precision,স্পষ্টতা DocType: Website Slideshow,Slideshow Items,স্লাইডশো আইটেম apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,পুনরাবৃত্তি শব্দ এবং অক্ষর থেকে বিরত থাকুন -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,একই ডেটা মাইগ্রেশন প্ল্যানের সঙ্গে ব্যর্থ রান আছে DocType: Event,Groups,গ্রুপ DocType: Workflow Action,Workflow State,কর্মপ্রবাহ রাজ্য apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,সারি যোগ করা -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,সফল! আপনি যেতে ভাল হয় 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,সফল! আপনি যেতে ভাল হয় 👍 apps/frappe/frappe/www/me.html +3,My Account,আমার অ্যাকাউন্ট DocType: ToDo,Allocated To,বরাদ্দ apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,আপনার নতুন পাসওয়ার্ড সেট করতে নিচের লিঙ্কে ক্লিক করুন @@ -2018,36 +2066,39 @@ DocType: Notification,Days After,দিন পরে DocType: Newsletter,Receipient,RECEIPIENT DocType: Contact Us Settings,Settings for Contact Us Page,আমাদের সাথে যোগাযোগ করুন পৃষ্ঠা জন্য সেটিংস DocType: Custom Script,Script Type,স্ক্রিপ্টের ধরন +DocType: Print Settings,Enable Print Server,প্রিন্ট সার্ভার সক্ষম করুন apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,{0} সপ্তাহ আগে DocType: Auto Repeat,Auto Repeat Schedule,অটো পুনরাবৃত্তি সময়সূচী DocType: Email Account,Footer,পাদলেখ apps/frappe/frappe/config/integrations.py +48,Authentication,প্রমাণীকরণ apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,অবৈধ লিঙ্ক +DocType: Web Form,Client Script,ক্লায়েন্ট স্ক্রিপ্ট DocType: Web Page,Show Title,শো শিরোনাম DocType: Chat Message,Direct,সরাসরি DocType: Property Setter,Property Type,সম্পত্তির প্রকার DocType: Workflow State,screenshot,স্ক্রিনশট apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,কেবলমাত্র প্রশাসক একটি স্ট্যান্ডার্ড রিপোর্ট সংরক্ষণ করতে পারবেন. নামান্তর এবং সংরক্ষণ করুন. DocType: System Settings,Background Workers,পটভূমি ওয়ার্কার্স -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,FIELDNAME {0} মেটা বস্তুর সঙ্গে পরস্পরবিরোধী +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,FIELDNAME {0} মেটা বস্তুর সঙ্গে পরস্পরবিরোধী DocType: Deleted Document,Data,উপাত্ত apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,নথির অবস্থা apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},আপনার তৈরি করা {0} এর {1} DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth এর অনুমোদন কোড -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,আমদানি করার অনুমতি দেওয়া হয়নি +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,আমদানি করার অনুমতি দেওয়া হয়নি DocType: Deleted Document,Deleted DocType,মোছা DOCTYPE apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,অনুমতি মাত্রা DocType: Workflow State,Warning,সতর্কতা DocType: Data Migration Run,Percent Complete,শতাংশ সম্পূর্ণ DocType: Tag Category,Tag Category,ট্যাগ শ্রেণী -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","একটি গ্রুপ একই নামের সঙ্গে বিদ্যমান কারণ, আইটেম {0} উপেক্ষা!" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,সাহায্য +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","একটি গ্রুপ একই নামের সঙ্গে বিদ্যমান কারণ, আইটেম {0} উপেক্ষা!" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,সাহায্য DocType: User,Login Before,লগইন আগে DocType: Web Page,Insert Style,সন্নিবেশ স্টাইল apps/frappe/frappe/config/setup.py +276,Application Installer,আবেদন ইনস্টলার -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,নতুন রিপোর্ট নাম +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,নতুন রিপোর্ট নাম +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,সপ্তাহে লুকান DocType: Workflow State,info-sign,তথ্য-চিহ্ন -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,জন্য {0} একটি তালিকা হতে পারে না মূল্য +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,জন্য {0} একটি তালিকা হতে পারে না মূল্য DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","এই কারেন্সি কিভাবে ফরম্যাট করা উচিত? যদি সেট না থাকে, সিস্টেম ডিফল্ট-গুলি ব্যবহার করবে" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,{0} নথি জমা দিন? apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,আপনি লগইন এবং ব্যাকআপ অ্যাক্সেস পাবে সিস্টেম ম্যানেজার ভূমিকা আছে হবে. @@ -2058,6 +2109,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,ভূমিকা অনুমতি DocType: Help Article,Intermediate,অন্তর্বর্তী apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,খসড়া হিসাবে নথি পুনরুদ্ধার বাতিল +DocType: Data Migration Run,Start Time,সময় শুরু apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} {{2}} {3} {4} এর সাথে লিঙ্কযুক্ত কারণ মুছে ফেলা বা বাতিল করা যাবে না apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,পড়তে পারে apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} চার্ট @@ -2068,6 +2120,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,শেয়ার করতে পারেন apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,অবৈধ প্রাপক অঙ্ক DocType: Workflow State,step-forward,ধাপে এগিয়ে +DocType: System Settings,Allow Login After Fail,ব্যর্থ হলে লগইন করার অনুমতি দিন apps/frappe/frappe/limits.py +69,Your subscription has expired.,আপনার সাবস্ক্রিপশন মেয়াদ শেষ হয়ে গেছে. DocType: Role Permission for Page and Report,Set Role For,ভূমিকার জন্য সেট DocType: GCalendar Account,The name that will appear in Google Calendar,নাম যা Google ক্যালেন্ডারে প্রদর্শিত হবে @@ -2076,7 +2129,7 @@ DocType: Event,Starts on,শুরু হয় DocType: System Settings,System Settings,পদ্ধতি নির্ধারণ DocType: GCalendar Settings,Google API Credentials,Google API প্রমাণপত্রাদি apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,সেশন শুরু ব্যর্থ -apps/frappe/frappe/email/queue.py +499,This email was sent to {0} and copied to {1},এই ইমেইল {0} পাঠানো এবং কপি করা হয়েছে {1} +apps/frappe/frappe/email/queue.py +511,This email was sent to {0} and copied to {1},এই ইমেইল {0} পাঠানো এবং কপি করা হয়েছে {1} DocType: Workflow State,th,ম DocType: Social Login Key,Provider Name,সরবরাহকারির নাম apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},তৈরি করুন একটি নতুন {0} @@ -2090,35 +2143,38 @@ DocType: System Settings,Choose authentication method to be used by all users, apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Doctype প্রয়োজন DocType: Workflow State,ok-sign,OK-সাইন apps/frappe/frappe/config/setup.py +146,Deleted Documents,মোছা ডকুমেন্টস -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,CSV বিন্যাসটি কেস সংবেদনশীল +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,CSV বিন্যাসটি কেস সংবেদনশীল apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,ডেস্কটপ আইকন আগে থেকেই আছে apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,নকল DocType: Newsletter,Create and Send Newsletters,তৈরি করুন এবং পাঠান লেটার -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,জন্ম তারিখ থেকে আগে হওয়া আবশ্যক +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,জন্ম তারিখ থেকে আগে হওয়া আবশ্যক DocType: Address,Andaman and Nicobar Islands,আন্দামান ও নিকোবর দ্বীপপুঞ্জ -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,GSuite ডকুমেন্ট -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,"চেক করা আবশ্যক, যা মান ক্ষেত্র উল্লেখ করুন" +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,GSuite ডকুমেন্ট +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,"চেক করা আবশ্যক, যা মান ক্ষেত্র উল্লেখ করুন" apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","মূল" এই সারিতে যোগ করা হবে যা প্যারেন্ট টেবিল উল্লেখ apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,এই ইমেলটি পাঠাতে পারবেন না আপনি এই দিনের জন্য {0} ইমেলের প্রেরণ সীমা অতিক্রম করেছেন। DocType: Website Theme,Apply Style,শৈলী প্রয়োগ DocType: Feedback Request,Feedback Rating,প্রতিক্রিয়া রেটিং apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,সাথে ভাগ +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,ফাইল / URL গুলি সংযুক্ত করুন এবং টেবিলে যোগ করুন DocType: Help Category,Help Articles,সাহায্য প্রবন্ধ apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,শ্রেণী: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,আপনার অর্থ প্রদান ব্যর্থ হয়েছে। DocType: Communication,Unshared,ভাগমুক্ত DocType: Address,Karnataka,কর্ণাটক apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,মডিউল পাওয়া যায়নি -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} রাষ্ট্র হিসাবে সেট করা হয় {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} রাষ্ট্র হিসাবে সেট করা হয় {2} DocType: User,Location,অবস্থান ,Permitted Documents For User,ব্যবহারকারী অনুমোদিত ডকুমেন্টস apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",আপনি "শেয়ার" অনুমতি থাকতে হবে DocType: Communication,Assignment Completed,অ্যাসাইনমেন্ট সম্পন্ন -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},বাল্ক সম্পাদনা {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},বাল্ক সম্পাদনা {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,রিপোর্ট ডাউনলোড করুন apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,সক্রিয় নয় DocType: About Us Settings,Settings for the About Us Page,আমাদের সম্পর্কে পৃষ্ঠার জন্য সেটিংস apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,ডোরা পেমেন্ট গেটওয়ে সেটিংস DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,যেমন pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,কীগুলি জেনারেট করুন apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,রেকর্ডের ফিল্টার ক্ষেত্র ব্যবহার DocType: DocType,View Settings,সেটিংস দেখুন DocType: Email Account,Outlook.com,Outlook.com @@ -2128,12 +2184,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,আমাকে আউটগোইং ইমেইলের একটি কপি পাঠান DocType: System Settings,Scheduler Last Event,নির্ধারণকারী সর্বশেষ ইভেন্ট DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Google এনালিটিক্স আইডি যোগ করুন যেমন. ইউএ-89XXX57-1. আরো তথ্যের জন্য Google এনালিটিক্স সহায়তার অনুসন্ধান করুন. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,পাসওয়ার্ড 100 টিরও বেশি অক্ষরের হতে পারে না +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,পাসওয়ার্ড 100 টিরও বেশি অক্ষরের হতে পারে না DocType: OAuth Client,App Client ID,অ্যাপ ক্লায়েন্ট আইডি DocType: Kanban Board,Kanban Board Name,Kanban বোর্ড নাম DocType: Notification Recipient,"Expression, Optional","এক্সপ্রেশন, ঐচ্ছিক" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,কপি করুন এবং script.google.com এ এই কোডটি এবং আপনার প্রকল্পের ফাঁকা Code.gs পেস্ট -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},এই ইমেইল পাঠানো হয়েছিল {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},এই ইমেইল পাঠানো হয়েছিল {0} DocType: System Settings,Hide footer in auto email reports,স্বয়ংক্রিয় ইমেল রিপোর্টে পাদচরণ লুকান DocType: DocField,Remember Last Selected Value,মনে রাখুন সর্বশেষ নির্বাচিত মূল্য DocType: Email Account,Check this to pull emails from your mailbox,এই আপনার মেইলবক্স থেকে ইমেইল টান চেক @@ -2149,15 +2205,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""","{0}" এর জন্য ডকুমেন্টেশন ফলাফল DocType: Workflow State,envelope,খাম apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,অপশন 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,মুদ্রণ ব্যর্থ হয়েছে DocType: Feedback Trigger,Email Field,ইমেল ফিল্ড -apps/frappe/frappe/www/update-password.html +68,New Password Required.,নতুন পাসওয়ার্ড আবশ্যক। +apps/frappe/frappe/www/update-password.html +60,New Password Required.,নতুন পাসওয়ার্ড আবশ্যক। apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} সঙ্গে এই নথিটি ভাগ {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,আপনার পর্যালোচনা জুড়ুন +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,আপনার পর্যালোচনা জুড়ুন DocType: Website Settings,Brand Image,প্রতিকি ছবি DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","উপরের ন্যাভিগেশন বারের মধ্যে, ফুটার ও লোগোর সেটআপ." DocType: Web Form Field,Max Value,সর্বোচ্চ মূল্য -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},জন্য {0} এ স্তর {1} এ {2} সারিতে {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},জন্য {0} এ স্তর {1} এ {2} সারিতে {3} DocType: User Social Login,User Social Login,ব্যবহারকারী সামাজিক লগইন DocType: Contact,All,সব DocType: Email Queue,Recipient,প্রাপক @@ -2166,27 +2223,27 @@ DocType: Address,Sales User,সেলস ব্যবহারকারী apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,ড্র্যাগ এবং ড্রপ টুল নির্মাণ ও মুদ্রণ বিন্যাস কাস্টমাইজ. DocType: Address,Sikkim,সিকিম apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,সেট -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,এই প্রশ্নের সাথে শৈলী বিরত হয় +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,এই প্রশ্নের সাথে শৈলী বিরত হয় DocType: Notification,Trigger Method,ট্রিগার পদ্ধতি -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},অপারেটর এক হতে হবে {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},অপারেটর এক হতে হবে {0} DocType: Dropbox Settings,Dropbox Access Token,ড্রপবক্স অ্যাক্সেস টোকেন DocType: Workflow State,align-right,সারিবদ্ধ-ডান DocType: Auto Email Report,Email To,ইমেইল apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,ফোল্ডার {0} ফাঁকা নয় DocType: Page,Roles,ভূমিকা -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},ত্রুটি: VALUE নিখোঁজ {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,মাঠ {0} নির্বাচনযোগ্য নয়. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},ত্রুটি: VALUE নিখোঁজ {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,মাঠ {0} নির্বাচনযোগ্য নয়. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,সেশন মেয়াদ উত্তীর্ন DocType: Workflow State,ban-circle,নিষেধাজ্ঞা-বৃত্ত apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,স্ল্যাক ওয়েবহোক ত্রুটি DocType: Email Flag Queue,Unread,অপঠিত DocType: Auto Repeat,Desk,ডেস্ক -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),ফিল্টার একটি tuple অথবা তালিকার (ক তালিকায়) হবে +apps/frappe/frappe/utils/data.py +805,Filter must be a tuple or list (in a list),ফিল্টার একটি tuple অথবা তালিকার (ক তালিকায়) হবে apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,একটি নির্বাচন ক্যোয়ারী লিখুন. উল্লেখ্য ফলাফলের (সব তথ্য এক বারেই পাঠানো হয়) পেজড না হয়. DocType: Email Account,Attachment Limit (MB),সংযুক্তি সীমা (মেগাবাইট) DocType: Address,Arunachal Pradesh,অরুনাচল প্রদেশ -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,সেটআপ অটো ইমেইল +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,সেটআপ অটো ইমেইল apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + নিচের DocType: Chat Profile,Message Preview,বার্তা পূর্বরূপ apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,এই শীর্ষ -10 সাধারণ পাসওয়ার্ড. @@ -2209,7 +2266,7 @@ DocType: OAuth Client,Implicit,অন্তর্নিহিত DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(ক্ষেত্রগুলি, "স্থিতি" থাকতে হবে "আনুষঙ্গিক") এই DOCTYPE বিরুদ্ধে যোগাযোগের হিসাবে সংযোজন" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","ব্যবহারকারী অ্যাক্সেস করতে পারবেন একবার অনুমোদন কোড গ্রহণ, সেইসাথে ব্যর্থতার প্রতিক্রিয়া জন্য URI উল্লিখিত. সাধারণত বিশ্রাম শেষবিন্দু ক্লায়েন্ট অ্যাপ্লিকেশন দ্বারা উদ্ভাসিত.
যেমন: http //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,জমা দেওয়ার পর {0} পরিবর্তন করার অনুমতি নেই +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,জমা দেওয়ার পর {0} পরিবর্তন করার অনুমতি নেই DocType: Data Migration Mapping,Migration ID Field,মাইগ্রেশন আইডি ক্ষেত্র DocType: Communication,Comment Type,মন্তব্য লিখুন DocType: OAuth Client,OAuth Client,OAUTH ক্লায়েন্ট @@ -2221,6 +2278,7 @@ DocType: DocField,Signature,স্বাক্ষর apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,অন্নের সাথে ভাগ করা apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,লোড হচ্ছে apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","ফেসবুক, গুগল, গিটহাব মাধ্যমে লগ ইন করতে পারেন কী লিখতে." +DocType: Data Import,Insert new records,নতুন রেকর্ড ঢোকান apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},জন্য ফাইল ফরম্যাট পড়তে অক্ষম {0} DocType: Auto Email Report,Filter Data,ফিল্টার ডেটা apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,প্রথম একটি ফাইলটি যুক্ত করুন. @@ -2237,7 +2295,7 @@ DocType: DocType,Title Case,শিরোনাম কেস DocType: Data Migration Run,Data Migration Run,ডেটা মাইগ্রেশন রান DocType: Blog Post,Email Sent,ইমেইল পাঠানো DocType: DocField,Ignore XSS Filter,XSS ফিল্টার Ignore -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,অপসারিত +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,অপসারিত apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,ড্রপবক্স ব্যাকআপ সেটিংস apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,ইমেইল পাঠান DocType: Website Theme,Link Color,লিংক রঙ @@ -2253,22 +2311,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,দ্বারা L apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,সত্তা নাম apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,সংশোধনী apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,পেপ্যাল পেমেন্ট গেটওয়ে সেটিংস -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) ছেঁটে ফেলা পাবেন, যেমন অনুমতি সর্বোচ্চ অক্ষর {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) ছেঁটে ফেলা পাবেন, যেমন অনুমতি সর্বোচ্চ অক্ষর {2}" DocType: OAuth Client,Response Type,প্রতিক্রিয়ার প্রকার DocType: Contact Us Settings,Send enquiries to this email address,এই ইমেইল ঠিকানায় অনুসন্ধান পাঠান DocType: Letter Head,Letter Head Name,চিঠি মাথা নাম DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),কলামের সংখ্যা একটি তালিকা দেখুন অথবা একটি গ্রিড একটি ক্ষেত্রের জন্য (মোট কলাম 11 চেয়ে কম হওয়া উচিত) apps/frappe/frappe/config/website.py +18,User editable form on Website.,ওয়েবসাইটে ব্যবহারকারীর সম্পাদনযোগ্য ফর্ম. DocType: Workflow State,file,ফাইল -apps/frappe/frappe/www/login.html +90,Back to Login,প্রবেশ করতে পেছান +apps/frappe/frappe/www/login.html +91,Back to Login,প্রবেশ করতে পেছান DocType: Data Migration Mapping,Local DocType,স্থানীয় ডক টাইপ apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,আপনি নামান্তর অনুমতি লিখুন প্রয়োজন +DocType: Email Account,Use ASCII encoding for password,পাসওয়ার্ডের জন্য ASCII এনকোডিং ব্যবহার করুন DocType: User,Karma,কর্মফল DocType: DocField,Table,টেবিল DocType: File,File Size,ফাইলের আকার -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,আপনি এই ফর্মটি আবার জমা দিলে লগইন করতে হবে +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,আপনি এই ফর্মটি আবার জমা দিলে লগইন করতে হবে DocType: User,Background Image,পটভূমি চিত্র -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},নথি প্রকারে বিজ্ঞপ্তি স্থাপন করা যাবে না {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},নথি প্রকারে বিজ্ঞপ্তি স্থাপন করা যাবে না {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","আপনার দেশ, সময় মন্ডল ও মুদ্রা নির্বাচন" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,মধ্যে @@ -2277,7 +2336,7 @@ DocType: Braintree Settings,Use Sandbox,ব্যবহারের স্যা apps/frappe/frappe/utils/goal.py +101,This month,এই মাস apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,নতুন কাস্টম মুদ্রন বিন্যাস DocType: Custom DocPerm,Create,তৈরি করুন -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},অকার্যকর ফিল্টার: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},অকার্যকর ফিল্টার: {0} DocType: Email Account,no failed attempts,কোন ব্যর্থ প্রচেষ্টা DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,অ্যাপ্লিকেশন অ্যাক্সেস কী @@ -2286,7 +2345,7 @@ DocType: Chat Room,Last Message,শেষ বার্তা DocType: OAuth Bearer Token,Access Token,অ্যাক্সেস টোকেন DocType: About Us Settings,Org History,অর্গ ইতিহাস apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,ব্যাকআপ ফাইলের আকার: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},অটো পুনরাবৃত্তি হয়েছে {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},অটো পুনরাবৃত্তি হয়েছে {0} DocType: Auto Repeat,Next Schedule Date,পরবর্তী তালিকা তারিখ DocType: Workflow,Workflow Name,কর্মপ্রবাহ নাম DocType: DocShare,Notify by Email,ইমেইল দ্বারা সূচিত @@ -2295,10 +2354,10 @@ DocType: Web Form,Allow Edit,সম্পাদনা মঞ্জুরি apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,লেই DocType: Webhook,Doc Events,ডক ইভেন্টস DocType: Auto Email Report,Based on Permissions For User,ব্যবহারকারীদের জন্য অনুমতি উপর ভিত্তি করে -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},বাতিল হয়েছে ডকুমেন্ট অবস্থা পরিবর্তন করা যাবে না. স্থানান্তরণ সারিতে {0} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},বাতিল হয়েছে ডকুমেন্ট অবস্থা পরিবর্তন করা যাবে না. স্থানান্তরণ সারিতে {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","যুক্তরাষ্ট্র পরের রাষ্ট্র এবং যা ভূমিকা মত রূপান্তরের, কতটা জন্য বিধি ইত্যাদি রাষ্ট্র পরিবর্তন করার অনুমতি দেওয়া হয়" apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} আগে থেকেই আছে -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},করার এক হতে পারে লিখবেন {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},করার এক হতে পারে লিখবেন {0} DocType: DocType,Image View,চিত্র দেখুন apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","দেখে মনে হচ্ছে কিছু মত লেনদেনের সময় কিছু ভুল হয়েছে. আমরা পেমেন্ট নিশ্চিত করেননি, পেপ্যাল স্বয়ংক্রিয়ভাবে আপনি এই পরিমাণ ফেরত দেওয়া হবে. ভাষা ব্যবহারযোগ্য না হলে, দয়া করে আমাদের একটি ইমেল পাঠাতে এবং সংশ্লেষন আইডি উল্লেখ: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন" @@ -2308,7 +2367,6 @@ DocType: List Filter,List Filter,তালিকা ফিল্টার DocType: Workflow State,signal,সংকেত apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,সংযুক্তি আছে DocType: DocType,Show Print First,দেখান Print প্রথম -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,সেটআপ> ব্যবহারকারী apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},একটি নতুন {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,নতুন ইমেল অ্যাকাউন্ট apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,ডকুমেন্ট পুনঃস্থাপিত @@ -2334,7 +2392,7 @@ DocType: Web Form,Web Form Fields,ওয়েব ফরম ক্ষেত্ DocType: Website Theme,Top Bar Text Color,শীর্ষ বার পাঠের রঙ DocType: Auto Repeat,Amended From,সংশোধিত apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},সতর্কতা: অক্ষম এটি {0} এর সাথে সম্পর্কিত কোন টেবিলে {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,এই দস্তাবেজটি বর্তমানে সঞ্চালনের জন্য সারিবদ্ধ হয়. অনুগ্রহপূর্বক আবার চেষ্টা করুন +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,এই দস্তাবেজটি বর্তমানে সঞ্চালনের জন্য সারিবদ্ধ হয়. অনুগ্রহপূর্বক আবার চেষ্টা করুন apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,ফাইল '{0}' পাওয়া যায়নি apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,বিভাগটি অপসারণ DocType: User,Change Password,পাসওয়ার্ড পরিবর্তন করুন @@ -2344,19 +2402,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,হ্য apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,ব্রেইনট্রি পেমেন্ট গেটওয়ে সেটিংস apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,ইভেন্ট শেষে শুরুর পরে হবে apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,এটি অন্যান্য সকল ডিভাইস থেকে {0} লগ আউট করবে -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},আপনি যদি একটি রিপোর্ট পেতে অনুমতি নেই: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},আপনি যদি একটি রিপোর্ট পেতে অনুমতি নেই: {0} DocType: System Settings,Apply Strict User Permissions,কঠোর ব্যবহারকারীর অনুমতি প্রয়োগ DocType: DocField,Allow Bulk Edit,বাল্ক সম্পাদনা করার অনুমতি দিন DocType: Blog Post,Blog Post,ব্লগ পোস্ট -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,উন্নত অনুসন্ধান +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,উন্নত অনুসন্ধান apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,আপনি নিউজলেটার দেখতে অনুমতি নেই। -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,পাসওয়ার্ড রিসেট নির্দেশাবলী আপনার ইমেইল পাঠানো হয়েছে +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,পাসওয়ার্ড রিসেট নির্দেশাবলী আপনার ইমেইল পাঠানো হয়েছে apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"Level 0 is for document level permissions, \ higher levels for field level permissions.","শ্রেনী 0 ডকুমেন্ট স্তর অনুমতিগুলি, \ মাঠ পর্যায় অনুমতির জন্য উচ্চ মাত্রার জন্য।" apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,তথ্য আমদানি প্রক্রিয়া চলছে হিসাবে ফর্ম সংরক্ষণ করা যাবে না। +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,ক্রমানুসার DocType: Workflow,States,যুক্তরাষ্ট্র DocType: Notification,Attach Print,প্রিন্ট সংযুক্ত -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},প্রস্তাবিত ইউজারনেম: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},প্রস্তাবিত ইউজারনেম: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,দিন ,Modules,মডিউল apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,ডেস্কটপ আইকন সেট করুন @@ -2366,11 +2425,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,প্রত্যাহার করা হয়েছে DocType: Web Page,Sidebar and Comments,সাইডবার এবং মন্তব্যসমূহ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","আপনি একটি নথি পরে তা বাতিল এবং সংরক্ষণ সংশোধন হলে, এটা পুরানো সংখ্যা একটি সংস্করণ যে একটি নতুন নম্বর পেতে হবে." -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} নথি সংযুক্ত করার অনুমতি নেই, প্রিন্ট সেটিংসে {0} জন্য মুদ্রণ অনুমতি দিন" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,See the document at {0},{0} নথিটি দেখুন DocType: Stripe Settings,Publishable Key,প্রকাশযোগ্য কী -apps/frappe/frappe/core/doctype/data_import/data_import.js +68,Start Import,আমদানি শুরু করুন +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,আমদানি শুরু করুন DocType: Workflow State,circle-arrow-left,বৃত্ত-তীর-বাম apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,Redis ক্যাশে সার্ভার চলমান না. অ্যাডমিনিস্ট্রেটর / কারিগরি সহায়তা সাথে যোগাযোগ করুন apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,একটি নতুন রেকর্ড করতে @@ -2378,7 +2437,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching, DocType: Currency,Fraction,ভগ্নাংশ DocType: LDAP Settings,LDAP First Name Field,দ্বারা LDAP প্রথম নাম ফিল্ড apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,ক্রমাগত পুনরাবৃত্ত নথির স্বয়ংক্রিয় নির্মাণের জন্য -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,বিদ্যমান সংযুক্তি থেকে নির্বাচন +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,বিদ্যমান সংযুক্তি থেকে নির্বাচন DocType: Custom Field,Field Description,মাঠ বর্ণনা apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,প্রম্পট মাধ্যমে নির্ধারণ করে না নাম 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"".","ডিফল্ট মান ক্ষেত্র (কী) এবং মানগুলি লিখুন যদি আপনি কোনও ক্ষেত্রের জন্য একাধিক মান যোগ করেন, তবে প্রথমটি চয়ন করা হবে। এই ডিফল্টগুলি "মিল" অনুমতির নিয়মগুলি সেট করতে ব্যবহার করা হয়। ক্ষেত্রের তালিকা দেখতে, "কাস্টমাইজ ফরম" এ যান" @@ -2398,6 +2457,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,জানানোর পান DocType: Contact,Image,ভাবমূর্তি DocType: Workflow State,remove-sign,অপসারণ-সাইন +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,সার্ভারের সাথে সংযোগ করতে ব্যর্থ apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,রপ্তানি করা কোন তথ্য নেই DocType: Domain Settings,Domains HTML,ডোমেইন এইচটিএমএল apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,অনুসন্ধান করতে অনুসন্ধান বাক্সে কিছু লিখুন @@ -2425,33 +2485,34 @@ DocType: Address,Address Line 2,ঠিকানা লাইন ২ DocType: Address,Reference,উল্লেখ apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,নিযুক্ত করা DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ডেটা মাইগ্রেশন ম্যাপিং বিস্তারিত -DocType: Email Flag Queue,Action,কর্ম +DocType: Data Import,Action,কর্ম DocType: GSuite Settings,Script URL,স্ক্রিপ্ট URL- -apps/frappe/frappe/www/update-password.html +119,Please enter the password,পাসওয়ার্ড লিখুন -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,বাতিল নথি প্রিন্ট করতে পারবেন না +apps/frappe/frappe/www/update-password.html +111,Please enter the password,পাসওয়ার্ড লিখুন +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,বাতিল নথি প্রিন্ট করতে পারবেন না apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,আপনি কলাম তৈরি করার অনুমতি দেওয়া হয় না DocType: Data Import,If you don't want to create any new records while updating the older records.,পুরোনো রেকর্ড আপডেট করার সময় আপনি যদি কোনও নতুন রেকর্ড তৈরি করতে না চান। apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,তথ্য: DocType: Custom Field,Permission Level,অনুমতি শ্রেনী DocType: User,Send Notifications for Transactions I Follow,আমি অনুসরণ লেনদেন জন্য বিজ্ঞপ্তি পাঠাতে -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: সরিয়ে ফেলতে চান, লেখা ছাড়া সংশোধন সেট করা যায় না" -DocType: Google Maps,Client Key,ক্লায়েন্ট কী -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,আপনি সংযুক্তি মুছে ফেলতে চান আপনি কি নিশ্চিত? -apps/frappe/frappe/__init__.py +1097,Thank you,তোমাকে ধন্যবাদ +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: সরিয়ে ফেলতে চান, লেখা ছাড়া সংশোধন সেট করা যায় না" +DocType: Google Maps Settings,Client Key,ক্লায়েন্ট কী +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,আপনি সংযুক্তি মুছে ফেলতে চান আপনি কি নিশ্চিত? +apps/frappe/frappe/__init__.py +1178,Thank you,তোমাকে ধন্যবাদ apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,রক্ষা DocType: Print Settings,Print Style Preview,স্টাইল মুদ্রণের পূর্বরূপ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,আইকন -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,আপনি এই ওয়েব ফরম ডকুমেন্ট আপডেট করার অনুমতি দেওয়া হয় না +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,আপনি এই ওয়েব ফরম ডকুমেন্ট আপডেট করার অনুমতি দেওয়া হয় না apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,ইমেইল apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,প্রথম ডকুমেন্ট টাইপ নির্বাচন করুন apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Frappe এর জন্য সোশ্যাল লগইন কী ব্যাবহার করুন URL সেট করুন DocType: About Us Settings,About Us Settings,আমাদের সেটিংস সম্পর্কে DocType: Website Settings,Website Theme,ওয়েবসাইট থিম +DocType: User,Api Access,Api অ্যাক্সেস DocType: DocField,In List View,তালিকা দেখুন DocType: Email Account,Use TLS,ব্যবহারের জন্য TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,অবৈধ লগইন অথবা পাসওয়ার্ড -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,ডাউনলোড টেমপ্লেট +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,ডাউনলোড টেমপ্লেট apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,ফর্ম কাস্টম জাভাস্ক্রিপ্ট করো. ,Role Permissions Manager,ভূমিকা অনুমতি ম্যানেজার apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,নতুন মুদ্রণ বিন্যাস নাম @@ -2470,7 +2531,6 @@ DocType: Website Settings,HTML Header & Robots,এইচটিএমএল শ DocType: User Permission,User Permission,ব্যবহারকারীর অনুমতি apps/frappe/frappe/config/website.py +32,Blog,ব্লগ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,দ্বারা LDAP ইনস্টল করা হয়নি -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,তথ্য দিয়ে ডাউনলোড DocType: Workflow State,hand-right,হাত-ডান DocType: Website Settings,Subdomain,সাবডোমেন apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,OAuth এর প্রোভাইডার জন্য সেটিংস @@ -2482,6 +2542,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,ইমেইল লগইন আইডি apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,পেমেন্ট বাতিল ,Addresses And Contacts,ঠিকানা এবং পরিচিতি +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,প্রথমে ডকুমেন্ট টাইপ নির্বাচন করুন। apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,সাফ ত্রুটি লগ apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,অনুগ্রহ করে একটি রেটিং নির্বাচন apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,OTP সিক্রেট রিসেট করুন @@ -2490,19 +2551,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,২ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ব্লগ পোস্ট শ্রেণীবিভক্ত. DocType: Workflow State,Time,সময় DocType: DocField,Attach,জোড়া -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} একটি বৈধ FIELDNAME প্যাটার্ন নয়. এটা হওয়া উচিত {{}} FIELD_NAME. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} একটি বৈধ FIELDNAME প্যাটার্ন নয়. এটা হওয়া উচিত {{}} FIELD_NAME. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,প্রতিক্রিয়া অনুরোধ পাঠান শুধুমাত্র যদি অন্তত এক যোগাযোগ নথির জন্য পাওয়া যায়. DocType: Custom Role,Permission Rules,অনুমতি বিধি DocType: Braintree Settings,Public Key,পাবলিক কী DocType: GSuite Settings,GSuite Settings,GSuite সেটিং DocType: Address,Links,লিংক apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,দস্তাবেজ প্রকার নির্বাচন করুন। -apps/frappe/frappe/model/base_document.py +396,Value missing for,মূল্য জন্য অনুপস্থিত +apps/frappe/frappe/model/base_document.py +405,Value missing for,মূল্য জন্য অনুপস্থিত apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,শিশু করো apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: জমা রেকর্ড মুছে ফেলা যাবে না. DocType: GSuite Templates,Template Name,টেম্পলেট নাম apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ডকুমেন্টের নতুন ধরনের -DocType: Custom DocPerm,Read,পড়া +DocType: Communication,Read,পড়া DocType: Address,Chhattisgarh,ছত্তিশগড়ে DocType: Role Permission for Page and Report,Role Permission for Page and Report,পেজ এবং প্রতিবেদনের জন্য ভূমিকা অনুমতি apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,সারিবদ্ধ মূল্য @@ -2512,9 +2573,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,{অন্য} সঙ্গে সরাসরি রুম ইতিমধ্যেই বিদ্যমান। DocType: Has Domain,Has Domain,ডোমেন হয়েছে apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,লুকান -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,একটি একাউন্ট আছে না? নিবন্ধন করুন +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,একটি একাউন্ট আছে না? নিবন্ধন করুন apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,আইডি ক্ষেত্রটি সরাতে পারে না -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable না হলে বরাদ্দ সংশোধন সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable না হলে বরাদ্দ সংশোধন সেট করা যায় না DocType: Address,Bihar,বিহার DocType: Activity Log,Link DocType,লিংক DOCTYPE apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,তোমার এখনো কোনো বার্তা আছে। @@ -2529,14 +2590,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,শিশু টেবিল অন্যান্য DocTypes একটি গ্রিড হিসাবে দেখানো হয়. DocType: Chat Room User,Chat Room User,চ্যাট রুম ব্যবহারকারী apps/frappe/frappe/model/workflow.py +38,Workflow State not set,ওয়ার্কফ্লো স্টেট সেট না -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},ত্রুটি কোড: {0} +apps/frappe/frappe/www/404.html +23,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 +26,Error Code: {0},ত্রুটি কোড: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",", প্লেইন টেক্সট, লাইন মাত্র কয়েক পৃষ্ঠা তালিকা জন্য বর্ণনা. (সর্বোচ্চ 140 অক্ষরের)" DocType: Workflow,Allow Self Approval,স্ব অনুমোদন মঞ্জুরি apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,জন ডো DocType: DocType,Name Case,নাম কেস apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,সবার সাথে ভাগ করুন -apps/frappe/frappe/model/base_document.py +392,Data missing in table,ডেটা টেবিলের অনুপস্থিত +apps/frappe/frappe/model/base_document.py +401,Data missing in table,ডেটা টেবিলের অনুপস্থিত DocType: Web Form,Success URL,সাফল্য ইউআরএল DocType: Email Account,Append To,লিখবেন apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,স্থির উচ্চতা @@ -2557,30 +2618,31 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,দুঃখিত! ওয়েবসাইট দেখুন ব্যবহারকারী সাথে ভাগ নিষিদ্ধ. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,সব ভূমিকা করো +DocType: Website Theme,Bootstrap Theme,থিম থিম apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!",আমরা আপনাকে ফেরত পেতে পারেন \ যাতে আপনার ইমেইল এবং পাঠান উভয় লিখুন. ধন্যবাদ! -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,বহির্গামী ইমেইল সার্ভারের সাথে সংযোগ করা যায়নি +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,বহির্গামী ইমেইল সার্ভারের সাথে সংযোগ করা যায়নি apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,আমাদের আপডেট সাবস্ক্রাইব আপনার আগ্রহের জন্য আপনাকে ধন্যবাদ DocType: Braintree Settings,Payment Gateway Name,পেমেন্ট গেটওয়ে নাম -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,কাস্টম কলাম +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,কাস্টম কলাম DocType: Workflow State,resize-full,পুনরায় আকার-পূর্ণ DocType: Workflow State,off,বন্ধ apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,পুনরধিকার করা -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,গালাগাল প্রতিবেদন {0} নিষ্ক্রিয় করা হয় +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,গালাগাল প্রতিবেদন {0} নিষ্ক্রিয় করা হয় DocType: Activity Log,Core,মূল apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,অনুমতি সেট DocType: DocField,Set non-standard precision for a Float or Currency field,একটি ভাসা বা মুদ্রা ক্ষেত্রের জন্য সেট অ মান স্পষ্টতা DocType: Email Account,Ignore attachments over this size,এই আকারের উপর সংযুক্তি Ignore DocType: Address,Preferred Billing Address,পছন্দের বিলিং ঠিকানা apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,ওয়ার্কফ্লো স্টেট {0} অনুমোদিত নয় -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,অনেকগুলি এক অনুরোধে লিখেছেন. ছোট অনুরোধ পাঠান +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,অনেকগুলি এক অনুরোধে লিখেছেন. ছোট অনুরোধ পাঠান apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,মান পরিবর্তিত DocType: Workflow State,arrow-up,তীর-আপ DocType: OAuth Bearer Token,Expires In,মেয়াদ শেষ DocType: DocField,Allow on Submit,জমা দিন মঞ্জুরি দিন DocType: DocField,HTML,এইচটিএমএল DocType: Error Snapshot,Exception Type,ব্যতিক্রম ধরণ -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,কলাম চয়ন +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,কলাম চয়ন DocType: Web Page,Add code as <script>,<Script> হিসাবে কোড যোগ DocType: Webhook,Headers,শিরোলেখ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,অ্যাপ্লিকেশন অ্যাক্সেস কী এবং অ্যাপ সিক্রেট কী জন্য মান লিখুন দয়া করে @@ -2599,6 +2661,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,কোনও সক্রিয় সেশন নেই DocType: Top Bar Item,Right,ডান DocType: User,User Type,ব্যবহারকারীর ধরন +DocType: Prepared Report,Ref Report DocType,ডক টাইপ প্রতিবেদনের রেফারেন্স apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,সম্পাদনার জন্য টেবিল ক্লিক করুন DocType: GCalendar Settings,Client ID,ক্লায়েন্ট আইডি DocType: Async Task,Reference Doc,রেফারেন্স ডক @@ -2617,18 +2680,18 @@ DocType: Workflow State,Edit,সম্পাদন করা apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,অনুমতি সেটআপ> ভূমিকা অনুমতি ম্যানেজার মাধ্যমে পরিচালিত হতে পারে DocType: Website Settings,Chat Operators,অপারেটর চ্যাট করুন DocType: Contact Us Settings,Pincode,পিনকোড -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,কোন খালি কলাম ফাইলে আছে দয়া করে নিশ্চিত করুন. +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,কোন খালি কলাম ফাইলে আছে দয়া করে নিশ্চিত করুন. apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,আপনার প্রোফাইল একটি ইমেইল ঠিকানা আছে কিনা তা নিশ্চিত করুন apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,আপনি এই ফর্মটি আবার এ অসংরক্ষিত পরিবর্তন রয়েছে. আপনি অবিরত করার পূর্বে সংরক্ষণ করুন. DocType: Address,Telangana,তেলেঙ্গানা -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,{0} একটি বিকল্প হতে হবে এর জন্য ডিফল্ট +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,{0} একটি বিকল্প হতে হবে এর জন্য ডিফল্ট DocType: Tag Doc Category,Tag Doc Category,ট্যাগ ডক শ্রেণী DocType: User,User Image,ব্যবহারকারী চিত্র -apps/frappe/frappe/email/queue.py +338,Emails are muted,ইমেইল নিঃশব্দ +apps/frappe/frappe/email/queue.py +341,Emails are muted,ইমেইল নিঃশব্দ apps/frappe/frappe/config/integrations.py +88,Google Services,গুগল সার্ভিসেস apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Ctrl + আপ DocType: Website Theme,Heading Style,শিরোনাম শৈলী -apps/frappe/frappe/utils/data.py +625,1 weeks ago,1 সপ্তাহ আগে +apps/frappe/frappe/utils/data.py +627,1 weeks ago,1 সপ্তাহ আগে DocType: Communication,Error,ভুল DocType: Auto Repeat,End Date,শেষ তারিখ DocType: Data Import,Ignore encoding errors,এনকোডিং ত্রুটিগুলি উপেক্ষা করুন @@ -2636,6 +2699,7 @@ DocType: Chat Profile,Notifications,বিজ্ঞপ্তিগুলি DocType: DocField,Column Break,কলাম বিরতি DocType: Event,Thursday,বৃহস্পতিবার apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,আপনি এই ফাইলটি অ্যাক্সেস করতে অনুমতি নেই +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,API গোপন সংরক্ষণ করুন: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},বাতিল নথির লিংক করা যাবে না: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,একটি মান রিপোর্ট সম্পাদনা করা যাবে না. ডুপ্লিকেট করুন এবং একটি নতুন প্রতিবেদন তৈরি করুন apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","কোম্পানি, বাধ্যতামূলক হিসাবে এটা আপনার কোম্পানীর ঠিকানা" @@ -2652,9 +2716,9 @@ DocType: Custom Field,Label Help,ট্যাগ সাহায্য DocType: Workflow State,star-empty,তারকা-খালি apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,তারিখগুলি প্রায়ই অনুমান করা সহজ. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,পরবর্তী কর্ম -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","স্ট্যান্ডার্ড বিজ্ঞপ্তি সম্পাদনা করা যাবে না সম্পাদনা করতে, দয়া করে এটি অক্ষম করুন এবং এটি অনুলিপি করুন" +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","স্ট্যান্ডার্ড বিজ্ঞপ্তি সম্পাদনা করা যাবে না সম্পাদনা করতে, দয়া করে এটি অক্ষম করুন এবং এটি অনুলিপি করুন" DocType: Workflow State,ok,ঠিক আছে -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,পর্যালোচনা জমা দিন +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,পর্যালোচনা জমা দিন DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,এই মানগুলি স্বয়ংক্রিয়ভাবে লেনদেন আপডেট করা হবে এবং এই মান ধারণকারী লেনদেনের এই ব্যবহারকারীর জন্য অনুমতি সীমিত করার উপযোগী হতে হবে. apps/frappe/frappe/twofactor.py +312,Verfication Code,যাচাই কোড apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,পুনরাবৃত্তির জন্য প্রস্তুত @@ -2672,12 +2736,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,পাসওয apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,অনুগ্রহ করে বেশি {0} গ্রাহক যোগ করার জন্য আপগ্রেড DocType: Workflow State,hand-left,হাত-বাম DocType: Data Import,If you are updating/overwriting already created records.,আপনি যদি ইতিমধ্যে তৈরি রেকর্ডগুলি আপলোড / ওভাররাইট করছেন -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} অনন্য হতে পারে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} অনন্য হতে পারে না apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,গ্লোবাল হয় DocType: Email Account,Use SSL,ব্যবহারের SSL- র DocType: Workflow State,play-circle,খেলার-বৃত্ত apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",অবৈধ "নির্ভর_অন" এক্সপ্রেশন -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,দলের নাম +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,দলের নাম apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,সম্পাদনা করুন প্রিন্ট বিন্যাস নির্বাচন DocType: Address,Shipping,পরিবহন DocType: Workflow State,circle-arrow-down,বৃত্ত-তীর-ডাউন @@ -2695,23 +2759,23 @@ DocType: SMS Settings,SMS Settings,এসএমএস সেটিংস DocType: Company History,Highlight,লক্ষণীয় করা DocType: OAuth Provider Settings,Force,বল DocType: DocField,Fold,ভাঁজ +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,ঊর্ধ্বগামী apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,স্ট্যান্ডার্ড মুদ্রণ বিন্যাস আপডেট করা যাবে না apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,হারানো -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,অনুগ্রহ করে নির্দিষ্ট করুন +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,অনুগ্রহ করে নির্দিষ্ট করুন DocType: Communication,Bot,বট DocType: Help Article,Help Article,সহায়তা নিবন্ধ DocType: Page,Page Name,পৃষ্ঠার নাম apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,সাহায্য: মাঠ প্রোপার্টি apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},এছাড়াও নির্ভরশীল মুদ্রা ক্ষেত্র {0} যোগ করা apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,আনজিপ -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},সারিতে ভুল মান {0}: {1} {2} হতে হবে {3} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

কোন ফলাফল পাওয়া যায়নি '

-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},লগইন ডকুমেন্ট খসড়া ফিরে রূপান্তরিত করা যাবে না. স্থানান্তরণ সারিতে {0} +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},সারিতে ভুল মান {0}: {1} {2} হতে হবে {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},লগইন ডকুমেন্ট খসড়া ফিরে রূপান্তরিত করা যাবে না. স্থানান্তরণ সারিতে {0} apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,আপনার গুগল ক্যালেন্ডার ইন্টিগ্রেশন কনফিগার করুন -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},মুছে ফেলা হচ্ছে {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},মুছে ফেলা হচ্ছে {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,সম্পাদনা করুন অথবা একটি নতুন বিন্যাস শুরু করার একটি বিদ্যমান বিন্যাস নির্বাচন করুন. DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,বাইপাস সীমাবদ্ধ আইপি ঠিকানা চেক যদি দুটি ফ্যাক্টর Auth সক্রিয় থাকে -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},নির্মিত কাস্টম ফিল্ড {0} মধ্যে {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},নির্মিত কাস্টম ফিল্ড {0} মধ্যে {1} DocType: System Settings,Time Zone,সময় অঞ্চল apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,বিশেষ চিহ্ন সমূহের ব্যবহার নিষিদ্ধ DocType: Communication,Relinked,পুনঃলিঙ্ক @@ -2727,7 +2791,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",ক্ষেত্র "রুট" ওয়েব দৃশ্য জন্য বাধ্যতামূলক +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"Field ""route"" is mandatory for Web Views",ক্ষেত্র "রুট" ওয়েব দৃশ্য জন্য বাধ্যতামূলক apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +205,Insert Column Before {0},{0} আগে কলাম ঢোকান DocType: Email Account,Add Signature,সাক্ষর যুক্ত apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,এই কথোপকথনটি ছেড়ে গেছে @@ -2737,9 +2801,9 @@ DocType: DocField,No Copy,কোন কপি DocType: Workflow State,qrcode,QRCode DocType: Chat Token,IP Address,আইপি ঠিকানা DocType: Data Import,Submit after importing,আমদানি করার পরে জমা দিন -apps/frappe/frappe/www/login.html +32,Login with LDAP,দ্বারা LDAP দিয়ে লগইন করুন +apps/frappe/frappe/www/login.html +33,Login with LDAP,দ্বারা LDAP দিয়ে লগইন করুন DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,মালিক যদি +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,মালিক যদি DocType: Data Migration Mapping,Push,ধাক্কা DocType: OAuth Authorization Code,Expiration time,মেয়াদ অতিক্রান্ত হওয়ার সময় DocType: Web Page,Website Sidebar,ওয়েবসাইট সাইডবার @@ -2750,12 +2814,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{1} apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,অল-য়ের বড়হাতের অক্ষর ছোটহাতের প্রায় তাদেরকে অল-ছোটহাতের হিসেবে অনুমান করা সহজ. DocType: Feedback Trigger,Email Fieldname,ইমেল FIELDNAME DocType: Website Settings,Top Bar Items,শীর্ষ বার আইটেম -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","ইমেইল আইডি অনন্য হওয়া আবশ্যক, ইমেইল অ্যাকাউন্ট ইতিমধ্যে জন্য \ অস্তিত্ব হয় {0}" DocType: Notification,Print Settings,মুদ্রণ সেটিংস DocType: Page,Yes,হাঁ DocType: DocType,Max Attachments,সর্বোচ্চ সংযুক্তি -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,ক্লায়েন্ট কী প্রয়োজন +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,ক্লায়েন্ট কী প্রয়োজন DocType: Calendar View,End Date Field,শেষ তারিখ ক্ষেত্র DocType: Desktop Icon,Page,পৃষ্ঠা apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},খুঁজে পাওয়া যায়নি {0} মধ্যে {1} @@ -2764,21 +2826,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,জ্ঞানভিত DocType: Workflow State,briefcase,ব্রিফকেস apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},মূল্য জন্য পরিবর্তন করা যাবে না {0} DocType: Feedback Request,Is Manual,ম্যানুয়াল -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},এটি সংযুক্ত {0} # {1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},এটি সংযুক্ত {0} # {1} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","স্টাইল বাটন রঙ প্রতিনিধিত্ব: সাফল্য - সবুজ, বিপদ - লাল, বিপরীত - কালো, প্রাথমিক - ডার্ক ব্লু, তথ্য - যে হাল্কা নীল, সতর্কবাণী - কমলা" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,সারি স্থিতি DocType: Workflow Transition,Workflow Transition,কর্মপ্রবাহ ট্র্যানজিশন apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,{0} মাস আগে apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,দ্বারা নির্মিত -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,ড্রপবক্স সেটআপ +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,ড্রপবক্স সেটআপ DocType: Workflow State,resize-horizontal,পুনরায় আকার-অনুভূমিক DocType: Chat Message,Content,বিষয়বস্তু DocType: Data Migration Run,Push Insert,সন্নিবেশ ঢোকান apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,গ্রুপ নোড DocType: Communication,Notification,প্রজ্ঞাপন DocType: DocType,Document,দলিল -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},ইতিমধ্যে ব্যবহৃত সিরিজ {0} {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,অসমর্থিত ফাইল ফর্ম্যাট +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},ইতিমধ্যে ব্যবহৃত সিরিজ {0} {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,অসমর্থিত ফাইল ফর্ম্যাট DocType: DocField,Code,কোড DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","সব সম্ভব কর্মপ্রবাহ যুক্তরাষ্ট্র ও কর্মপ্রবাহ ভূমিকা. Docstatus বিকল্প: 0 "সংরক্ষিত", হয় 1 "জমা" হয় এবং 2 "বাতিল" হয়" DocType: Website Theme,Footer Text Color,পাদচরণ রং @@ -2789,13 +2851,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,অবৈধ পেমেন্ট গেটওয়ে পরিচয়পত্র DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,এই টেমপ্লেট ফাইলটি শুধুমাত্র কিছু সারিগুলির সাথে তৈরি করা হয়েছে যা কিছু ত্রুটি আছে। আপনি এই ফাইলটি সংশোধন এবং আমদানি করার জন্য ব্যবহার করা উচিত। apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,নথি ধরনের এবং ভূমিকা অনুমতি সেট -apps/frappe/frappe/model/meta.py +160,No Label,কোন ট্যাগ +DocType: Data Migration Run,Remote ID,দূরবর্তী আইডি +apps/frappe/frappe/model/meta.py +205,No Label,কোন ট্যাগ +DocType: System Settings,Use socketio to upload file,ফাইল আপলোড করার জন্য সকেটিও ব্যবহার করুন apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,সূচকের ভাঙ্গা ভাঙ্গা apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,সতেজকারক apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,জীবনবৃত্তান্ত apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,রুপান্তরিত DocType: Address,Tripura,ত্রিপুরা DocType: About Us Settings,"""Company History""","কোম্পানি ইতিহাস" +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,ইমেলটি পাঠানো হওয়ার পরে এই দস্তাবেজটি সংশোধন করা হয়েছে। +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,রিপোর্ট দেখান DocType: Address,Tamil Nadu,তামিলনাড়ু DocType: Email Rule,Email Rule,ইমেইল রুল apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document","সিস্টেম থেকে পুনরাবৃত্তিমূলক ত্রুটির নোটিফিকেশন প্রেরণ বন্ধ করতে, আমরা অটো পুনরাবৃত্তি নথিতে অক্ষম ক্ষেত্র চেক করেছি" @@ -2809,7 +2875,7 @@ DocType: Notification,Send alert if this field's value changes,এই ক্ষ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,একটি নতুন বিন্যাস করা একটি DOCTYPE নির্বাচন apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,'প্রাপক' নির্দিষ্ট না apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,এক্ষুনি -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,প্রয়োগ করা +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,প্রয়োগ করা DocType: Footer Item,Policy,নীতি apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} সেটিংস পাওয়া যায়নি DocType: Module Def,Module Def,মডিউল Def @@ -2823,7 +2889,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,দ DocType: Print Settings,Allow page break inside tables,টেবিল ভিতরে পৃষ্ঠা বিরতি মঞ্জুর করুন DocType: Email Account,SMTP Server,SMTP সার্ভার DocType: Print Format,Print Format Help,মুদ্রণ বিন্যাস সাহায্য -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,দলের সাথে +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,দলের সাথে DocType: DocType,Beta,বেটা apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,সমস্ত ব্যবহারকারীদের জন্য আইকন পছন্দ সীমিত করুন apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},পুনরুদ্ধার {0} যেমন {1} @@ -2832,8 +2898,9 @@ DocType: DocField,Translatable,অনুবাদ করিতে সংভব DocType: Event,Every Month,প্রতি মাসে DocType: Letter Head,Letter Head in HTML,HTML এ চিঠি মাথা DocType: Web Form,Web Form,ওয়েব ফরম +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},তারিখ {0} ফর্ম্যাটে থাকা আবশ্যক: {1} DocType: About Us Settings,Org History Heading,শীর্ষক অর্গ ইতিহাস -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,দুঃখিত. আপনি আপনার সাবস্ক্রিপশন জন্য সর্বাধিক ব্যবহারকারী সর্বশেষ সীমাতে পৌঁছেছেন. আপনি একটি বিদ্যমান ব্যবহারকারী অক্ষম অথবা একটি উচ্চতর সাবস্ক্রিপশন পরিকল্পনা কিনতে পারেন করতে পারেন. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,দুঃখিত. আপনি আপনার সাবস্ক্রিপশন জন্য সর্বাধিক ব্যবহারকারী সর্বশেষ সীমাতে পৌঁছেছেন. আপনি একটি বিদ্যমান ব্যবহারকারী অক্ষম অথবা একটি উচ্চতর সাবস্ক্রিপশন পরিকল্পনা কিনতে পারেন করতে পারেন. DocType: Print Settings,Allow Print for Cancelled,বাতিলকৃত জন্য প্রিন্ট করার অনুমতি দিন DocType: Communication,Integrations can use this field to set email delivery status,ঐক্যবদ্ধতার ইমেইল বিতরণ অবস্থা সেট এই ক্ষেত্র ব্যবহার করতে পারেন DocType: Web Form,Web Page Link Text,ওয়েব লিংক পাতা শিরোনাম @@ -2846,13 +2913,12 @@ DocType: GSuite Settings,Allow GSuite access,GSuite অ্যাক্সেস DocType: DocType,DESC,DESC DocType: DocType,Naming,নামকরণ DocType: Event,Every Year,প্রত্যেক বছর -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,সবগুলো নির্বাচন করা +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,সবগুলো নির্বাচন করা apps/frappe/frappe/config/setup.py +247,Custom Translations,কাস্টম অনুবাদগুলো apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,উন্নতি apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,ভূমিকা দ্বারা apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,নিখোঁজ ক্ষেত্রসমূহ -apps/frappe/frappe/email/smtp.py +188,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ না দয়া করে সেটআপ থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন> ইমেল> ইমেল অ্যাকাউন্ট -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,autoname অবৈধ FIELDNAME '{0}' +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,autoname অবৈধ FIELDNAME '{0}' apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ডকুমেন্ট টাইপ এ অনুসন্ধান apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,ক্ষেত্রের এমনকি জমা পরে সম্পাদনযোগ্য থাকা অনুমতি DocType: Custom DocPerm,Role and Level,ভূমিকা ও শ্রেনী @@ -2861,14 +2927,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,কাস্টম প DocType: Website Script,Website Script,ওয়েবসাইট স্ক্রিপ্ট DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,আপনি নিজের প্রকাশ Google Apps স্ক্রিপ্ট ওয়েবঅ্যাপ্লিকেশনটি ব্যবহার না করেন তাহলে আপনাকে ডিফল্ট https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ব্যবহার করতে পারেন apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,ছাপানো লেনদেনের জন্য কাস্টমাইজড এইচটিএমএল টেমপ্লেট. -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,ঝোঁক +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,ঝোঁক DocType: Workflow,Is Active,সক্রিয় -apps/frappe/frappe/desk/form/utils.py +111,No further records,আর কোনও রেকর্ড +apps/frappe/frappe/desk/form/utils.py +114,No further records,আর কোনও রেকর্ড DocType: DocField,Long Text,দীর্ঘ টেক্সট DocType: Workflow State,Primary,প্রাথমিক -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},উপরে সারি পরিবর্তন করবেন না দয়া করে {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},উপরে সারি পরিবর্তন করবেন না দয়া করে {0} DocType: Web Form,Go to this URL after completing the form (only for Guest users),ফর্ম পূরণ করার পরে এই URL এ যান (শুধুমাত্র অতিথি ব্যবহারকারীদের জন্য) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Ctrl + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,অধিক তথ্য DocType: Data Migration Mapping,Field Maps,ক্ষেত্র মানচিত্র DocType: Desktop Icon,Desktop Icon,ডেস্কটপ আইকন @@ -2889,13 +2955,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,ডোরা সেটিং DocType: Data Migration Mapping,Data Migration Mapping,ডেটা মাইগ্রেশন ম্যাপিং apps/frappe/frappe/www/login.py +89,Invalid Login Token,অবৈধ প্রবেশ টোকেন -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,বাতিল করতে চান +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,বাতিল করতে চান apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,1 ঘন্টা আগে DocType: Website Settings,Home Page,হোম পেজ DocType: Error Snapshot,Parent Error Snapshot,মূল ত্রুটি স্ন্যাপশট -DocType: Kanban Board,Filters,ফিল্টার +DocType: Prepared Report,Filters,ফিল্টার DocType: Workflow State,share-alt,শেয়ার-Alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},সারি কোনো একটি হওয়া আবশ্যক {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},সারি কোনো একটি হওয়া আবশ্যক {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2914,12 +2980,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,স্ক্রিপ্ট বা QUERY রিপোর্ট
 DocType: Workflow Document State,Workflow Document State,কর্মপ্রবাহ ডকুমেন্ট রাজ্য
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,ফাইল অত্যন্ত বড়
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,ইমেল অ্যাকাউন্ট একাধিক বার যোগ
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,ইমেল অ্যাকাউন্ট একাধিক বার যোগ
 DocType: Payment Gateway,Payment Gateway,পেমেন্ট গেটওয়ে
 DocType: Portal Settings,Hide Standard Menu,স্ট্যান্ডার্ড মেনু লুকান
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,যুক্ত করুন / ইমেল ডোমেন পরিচালনা করুন.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},জমা দেওয়ার আগে বাতিল করতে পারেন না. দেখুন ট্র্যানজিশন {0}
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,মুদ্রণ বিন্যাস {0} নিষ্ক্রিয় করা হয়
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},জমা দেওয়ার আগে বাতিল করতে পারেন না. দেখুন ট্র্যানজিশন {0}
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,মুদ্রণ বিন্যাস {0} নিষ্ক্রিয় করা হয়
 ,Address and Contacts,ঠিকানা এবং পরিচিতি
 DocType: Notification,Send days before or after the reference date,আগে বা রেফারেন্স তারিখ পরে দিন পাঠান
 DocType: User,Allow user to login only after this hour (0-24),ব্যবহারকারী শুধুমাত্র এই ঘন্টা পর লগইন করতে (0-24) অনুমতি দিন
@@ -2929,7 +2995,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,মত আন্দাজের বদল '@' পরিবর্তে 'একটি' খুব সাহায্য না.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,আমার দ্বারা নির্ধারিত হয়
 apps/frappe/frappe/utils/data.py +528,Zero,শূন্য
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,না বিকাশকারী মোডে! Site_config.json সেট অথবা 'কাস্টম' DOCTYPE করতে.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,না বিকাশকারী মোডে! Site_config.json সেট অথবা 'কাস্টম' DOCTYPE করতে.
 DocType: Workflow State,globe,পৃথিবী
 DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,স্ট্যান্ডার্ড মুদ্রণ বিন্যাসে লুকান ক্ষেত্রের
@@ -2942,19 +3008,21 @@ DocType: DocType,Allow Import (via Data Import Tool),আমদানি মঞ
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,সিনিয়র
 DocType: DocField,Float,ভাসা
 DocType: Print Settings,Page Settings,পৃষ্ঠা সেটিংস
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,সংরক্ষণ করা হচ্ছে ...
 DocType: Auto Repeat,Submit on creation,জমা দিন সৃষ্টির উপর
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,অবৈধ পাসওয়ার্ড
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,অবৈধ পাসওয়ার্ড
 DocType: Contact,Purchase Master Manager,ক্রয় মাস্টার ম্যানেজার
 DocType: Module Def,Module Name,মডিউল নাম
 DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE আবেদন মধ্যে একটি টেবিল / ফরম হয়.
 DocType: Social Login Key,Authorize URL,অনুমোদিত URL
 DocType: Email Account,GMail,জিমেইল
 DocType: Address,Party GSTIN,পার্টির GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} প্রতিবেদন
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} প্রতিবেদন
 DocType: SMS Settings,Use POST,পোস্ট ব্যবহার করুন
 DocType: Communication,SMS,খুদেবার্তা
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,চিত্রগুলি পান
 DocType: DocType,Web View,ওয়েব দর্শন
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,সতর্কীকরণ: এটি মুদ্রণ বিন্যাস পুরানো শৈলী এবং API- র মাধ্যমে নির্মাণ করা যাবে না.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,সতর্কীকরণ: এটি মুদ্রণ বিন্যাস পুরানো শৈলী এবং API- র মাধ্যমে নির্মাণ করা যাবে না.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,সমগ্র
 DocType: DocField,Print Width,প্রিন্ট করুন প্রস্থ
 ,Setup Wizard,সেটআপ উইজার্ড
@@ -2963,6 +3031,7 @@ DocType: Chat Message,Visitor,পরিদর্শক
 DocType: User,Allow user to login only before this hour (0-24),ব্যবহারকারী শুধুমাত্র এই ঘন্টা আগে লগইন করতে (0-24) অনুমতি দিন
 DocType: Social Login Key,Access Token URL,অ্যাক্সেস টোকেন URL
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,ফোল্ডার বাধ্যতামূলক
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} নিযুক্ত {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,থেকে ওয়েবসাইট যোগাযোগ পৃষ্ঠা নতুন বার্তা
 DocType: Notification,Reference Date,রেফারেন্স তারিখ
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,বৈধ মোবাইল টি লিখুন দয়া করে
@@ -2989,21 +3058,22 @@ DocType: DocField,Small Text,ছোট লেখা
 DocType: Workflow,Allow approval for creator of the document,নথি স্রষ্টার জন্য অনুমতি অনুমোদন
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,API এন্ডপয়েন্ট আর্গস
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,অ্যাডমিনিস্ট্রেটর ব্যবহার {0} থেকে {1} IP ঠিকানা মাধ্যমে {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,অ্যাডমিনিস্ট্রেটর ব্যবহার {0} থেকে {1} IP ঠিকানা মাধ্যমে {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,সমান
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ক্ষেত্রের বিকল্প 'ডাইনামিক লিংক' টাইপ 'DOCTYPE' হিসাবে অপশন সঙ্গে অন্য লিঙ্ক ক্ষেত্র নির্দেশ করতে হবে
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ক্ষেত্রের বিকল্প 'ডাইনামিক লিংক' টাইপ 'DOCTYPE' হিসাবে অপশন সঙ্গে অন্য লিঙ্ক ক্ষেত্র নির্দেশ করতে হবে
 DocType: About Us Settings,Team Members Heading,শীর্ষক দলের সদস্যদের
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,অবৈধ CSV বিন্যাসে
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,সেট ব্যাক-আপ সংখ্যা
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,দয়া করে সংশোধন করুন
 DocType: DocField,Do not allow user to change after set the first time,প্রথমবার ব্যবহারকারী পর সেট পরিবর্তন করার অনুমতি দেয় না
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,বেসরকারী বা সরকারী?
-apps/frappe/frappe/utils/data.py +633,1 year ago,1 বছর আগে
+apps/frappe/frappe/utils/data.py +635,1 year ago,1 বছর আগে
 DocType: Contact,Contact,যোগাযোগ
 DocType: User,Third Party Authentication,থার্ড পার্টি প্রমাণীকরণ
 DocType: Website Settings,Banner is above the Top Menu Bar.,ব্যানার উপরের মেনু বার উপরে.
-DocType: Razorpay Settings,API Secret,এপিআই সিক্রেট
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,রপ্তানি প্রতিবেদন:
+DocType: User,API Secret,এপিআই সিক্রেট
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} ক্যালেন্ডার
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,রপ্তানি প্রতিবেদন:
 DocType: Data Migration Run,Push Update,আপডেট করুন
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,অটো পুনরাবৃত্তি নথিতে
 DocType: Email Account,Port,বন্দর
@@ -3014,7 +3084,7 @@ DocType: Website Slideshow,Slideshow like display for the website,ওয়ে
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,বিভিন্ন মানদণ্ডের উপর ভিত্তি করে সেটআপ বিজ্ঞপ্তিগুলি।
 DocType: Communication,Updated,আপডেট করা হয়েছে
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,মডিউল নির্বাচন
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,একটি নতুন চ্যাট অনুসন্ধান করুন বা তৈরি করুন
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,একটি নতুন চ্যাট অনুসন্ধান করুন বা তৈরি করুন
 apps/frappe/frappe/sessions.py +29,Cache Cleared,ক্যাশে সাফ
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,নতুন ইমেইল
@@ -3030,7 +3100,7 @@ DocType: Print Settings,PDF Settings,পিডিএফ সেটিংস
 DocType: Kanban Board Column,Column Name,কলামের নাম
 DocType: Language,Based On,উপর ভিত্তি করে
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ডিফল্ট করা
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} সূচীবদ্ধ করা যাবে না জন্য
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} সূচীবদ্ধ করা যাবে না জন্য
 DocType: Communication,Email Account,ইমেইল একাউন্ট
 DocType: Workflow State,Download,ডাউনলোড
 DocType: Blog Post,Blog Intro,মুখ্য পৃষ্ঠা Privacy Policy ব্লগ
@@ -3044,7 +3114,7 @@ DocType: Web Page,Insert Code,কোড প্রবেশ করান
 DocType: Data Migration Run,Current Mapping Type,বর্তমান ম্যাপিং প্রকার
 DocType: ToDo,Low,কম
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,আপনি Jinja টেমপ্লেট ব্যবহার করে নথি থেকে গতিশীল বৈশিষ্ট্য যোগ করতে পারেন.
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},অবৈধ সীমা {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},অবৈধ সীমা {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,একটি নথি টাইপ তালিকা
 DocType: Event,Ref Type,সুত্র ধরন
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","আপনি নতুন রেকর্ড আপলোড হয়, "নাম" (আইডি) কলাম ফাঁকা রাখুন."
@@ -3066,21 +3136,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,
 DocType: Print Settings,Send Print as PDF,পিডিএফ হিসাবে প্রিন্ট পাঠান
 DocType: Web Form,Amount,পরিমাণ
 DocType: Workflow Transition,Allowed,প্রেজেন্টেশন
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,একটি ফর্ম শুধুমাত্র এক ভাঁজ আছে হতে পারে
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,একটি ফর্ম শুধুমাত্র এক ভাঁজ আছে হতে পারে
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},জন্য ফাইল ফরম্যাট লিখতে ব্যর্থ হয়েছে {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,ডিফল্ট সেটিংসে পুনরুদ্ধার করতে চান?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,অকার্যকর হোম পেজ
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,অবৈধ লগইন করুন. আবার চেষ্টা কর.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},লিংক বা সারিতে ছক টাইপ ক্ষেত্রটিতে {0} জন্য প্রয়োজন বোধ করা বিকল্পগুলি {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},লিংক বা সারিতে ছক টাইপ ক্ষেত্রটিতে {0} জন্য প্রয়োজন বোধ করা বিকল্পগুলি {1}
 DocType: Auto Email Report,Send only if there is any data,শুধুমাত্র পাঠান যদি সেখানে কোন তথ্য নেই
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,রিসেট ফিল্টার
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0}: উচ্চ মাত্রার সেট করা হয় আগে স্তর 0 এ অনুমতি সেট করা আবশ্যক
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,রিসেট ফিল্টার
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0}: উচ্চ মাত্রার সেট করা হয় আগে স্তর 0 এ অনুমতি সেট করা আবশ্যক
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},অ্যাসাইনমেন্ট দ্বারা বন্ধ {0}
 DocType: Integration Request,Remote,দূরবর্তী
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,গণনা করা
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,প্রথম DOCTYPE দয়া করে নির্বাচন করুন
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,আপনার ইমেইল নিশ্চিত করুন
-apps/frappe/frappe/www/login.html +40,Or login with,অথবা লগইন করুন
+apps/frappe/frappe/www/login.html +41,Or login with,অথবা লগইন করুন
 DocType: Error Snapshot,Locals,অঁচলবাসী
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},মাধ্যমে আদানপ্রদান {0} উপর {1} {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} একটি মন্তব্যে উল্লেখ {1}
@@ -3090,23 +3160,24 @@ DocType: Integration Request,Integration Type,ইন্টিগ্রেশন
 DocType: Newsletter,Send Attachements,Attachements পাঠান
 DocType: Transaction Log,Transaction Log,লেনদেন লগ
 DocType: Contact Us Settings,City,শহর
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,জমা দিতে Ctrl + লিখুন
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,জমা দিতে Ctrl + লিখুন
 DocType: DocField,Perm Level,স্থায়ী ঢেউ তোলা শ্রেনী
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,নথিটি দেখুন
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,আজকের ক্যালেন্ডার ঘটনাগুলি
 DocType: Web Page,Web Page,ওয়েব পেজ
 DocType: Workflow Document State,Next Action Email Template,পরবর্তী অ্যাকশন ইমেল টেমপ্লেট
 DocType: Blog Category,Blogger,ব্লগার
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},'বৈশ্বিক অনুসন্ধান' টাইপ জন্য অনুমতি দেওয়া হয় না {0} সারিতে {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},'বৈশ্বিক অনুসন্ধান' টাইপ জন্য অনুমতি দেওয়া হয় না {0} সারিতে {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,তালিকা দেখুন
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},জন্ম বিন্যাসে নির্মাণ করা আবশ্যক: {0}
 DocType: Workflow,Don't Override Status,স্থিতি ওভাররাইড না
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,একটি রেটিং দিতে দয়া করে.
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} প্রতিক্রিয়া অনুরোধ
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,অনুসন্ধানের শর্ত
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,প্রথম ব্যবহারকারী: আপনি
 DocType: Deleted Document,GCalendar Sync ID,GCalendar সিঙ্ক আইডি
+DocType: Prepared Report,Report Start Time,রিপোর্ট সময় শুরু করুন
 apps/frappe/frappe/config/setup.py +112,Export Data,রপ্তানি তথ্য
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,নির্বাচন কলাম
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,নির্বাচন কলাম
 DocType: Translation,Source Text,উত্স লেখা
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,লগইন জন্য অনুপস্থিত পরামিতি
 DocType: Workflow State,folder-open,ফোল্ডারের-খোলা
@@ -3119,7 +3190,7 @@ DocType: Property Setter,Set Value,সেট মান
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,আকারে ক্ষেত্র লুকান
 DocType: Webhook,Webhook Data,ওয়েবহুক ডেটা
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},{0} তৈরি করা হচ্ছে
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,অবৈধ অ্যাক্সেস টোকেন. অনুগ্রহপূর্বক আবার চেষ্টা করুন
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,অবৈধ অ্যাক্সেস টোকেন. অনুগ্রহপূর্বক আবার চেষ্টা করুন
 apps/frappe/frappe/public/js/frappe/desk.js +92,"The application has been updated to a new version, please refresh this page","অ্যাপ্লিকেশনটি একটি নতুন সংস্করণে আপডেট করা হয়েছে, এই পৃষ্ঠাটি রিফ্রেশ দয়া"
 apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,আবার পাঠান
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,ঐচ্ছিক: এই অভিব্যক্তি সত্য হলে সতর্কতা পাঠানো হবে
@@ -3133,8 +3204,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,শ্রেনী
 DocType: Custom DocPerm,Report,রিপোর্ট
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,পরিমাণ 0 অনেক বেশী হতে হবে.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} সংরক্ষিত হয়েছে
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,{0} ব্যবহারকারীর নাম পরিবর্তন করা যাবে না
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} সংরক্ষিত হয়েছে
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,{0} ব্যবহারকারীর নাম পরিবর্তন করা যাবে না
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 অক্ষরের মধ্যে সীমিত আছে ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,ই-মেইল গ্রুপ তালিকা
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],.ico এক্সটেনশন সঙ্গে একটি আইকন ফাইল. 16 X 16 px এর হতে হবে. একটি ফেভিকন জেনারেটর ব্যবহার করে তৈরি করা. [Favicon-generator.org]
@@ -3147,23 +3218,22 @@ DocType: Website Theme,Background,পটভূমি
 DocType: Report,Ref DocType,সুত্র DOCTYPE
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,সামাজিক লগইন সক্রিয় করার আগে দয়া করে ক্লায়েন্ট আইডি প্রবেশ করুন
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,একটি রেটিং যোগ করুন
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0}: বাতিল না করে সংশোধন সেট করা যায় না
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{0}: Cannot set Amend without Cancel,{0}: বাতিল না করে সংশোধন সেট করা যায় না
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,পুরো পাতা
 DocType: DocType,Is Child Table,শিশু টেবিল হয়
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} বছর (গুলি) আগে
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} কে অবশ্যই {1} এর মাঝে কোন একটি হতে হবে
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} কে অবশ্যই {1} এর মাঝে কোন একটি হতে হবে
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} বর্তমানে এই নথি দেখার হয়
 apps/frappe/frappe/config/core.py +52,Background Email Queue,পৃষ্ঠভূমি ইমেইল সারি
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,পাসওয়ার্ড রিসেট
 DocType: Communication,Opened,খোলা
 DocType: Workflow State,chevron-left,শেভ্রন-বাম
 DocType: Communication,Sending,পাঠানো
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,এই আইপি ঠিকানা থেকে অনুমতি না
+apps/frappe/frappe/auth.py +272,Not allowed from this IP Address,এই আইপি ঠিকানা থেকে অনুমতি না
 DocType: Website Slideshow,This goes above the slideshow.,এই স্লাইডশো উপরে যায়.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,অ্যাপ্লিকেশন ইনস্টল করুন.
 DocType: Contact,Last Name,নামের শেষাংশ
 DocType: Event,Private,ব্যক্তিগত
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,আজকের জন্য কোন সতর্কতা
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,আজকের জন্য কোন সতর্কতা
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),পিডিএফ হিসেবে ইমেইল প্রিন্ট সংযুক্তি পাঠান (প্রস্তাবিত)
 DocType: Web Page,Left,বাম
 DocType: Event,All Day,সারাদিন
@@ -3174,10 +3244,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",ভাবমূ
 apps/frappe/frappe/utils/bot.py +43,I found these: ,আমি এই পাওয়া:
 DocType: Event,Send an email reminder in the morning,সকালে একটি ইমেল অনুস্মারক পাঠান
 DocType: Blog Post,Published On,প্রকাশিত
-apps/frappe/frappe/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোনও ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায়নি। দয়া করে সেটআপ> মুদ্রণ এবং ব্রান্ডিং> ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন।
 DocType: Contact,Gender,লিঙ্গ
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,আবশ্যিক তথ্য অনুপস্থিত:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,মাঠ '{0}' এটা অ অনন্য মান আছে হিসাবে অনন্য হিসাবে সেট করা যাবে না
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,আবশ্যিক তথ্য অনুপস্থিত:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,মাঠ '{0}' এটা অ অনন্য মান আছে হিসাবে অনন্য হিসাবে সেট করা যাবে না
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,চেক অনুরোধ URL টি
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,শুধু 200 টিপে এক অনুরোধ অনুমতিপ্রাপ্ত
 DocType: Footer Item,URL,URL টি
@@ -3193,12 +3262,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,বৃক্
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,আপনি এই রিপোর্ট প্রিন্ট করতে অনুমতি দেওয়া হয় না
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,ব্যবহারকারীর অনুমতি
 DocType: Workflow State,warning-sign,সতর্কীকরণ চিহ্ন
+DocType: Prepared Report,Prepared Report,প্রস্তুত প্রতিবেদন
 DocType: Workflow State,User,ব্যবহারকারী
 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",হিসাবে ব্রাইজার উইণ্ডোয় দেখান শিরোনাম "উপসর্গ - শিরোনাম"
 DocType: Payment Gateway,Gateway Settings,গেটওয়ে সেটিংস
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ডকুমেন্ট টাইপ টেক্সট
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,চালান টেস্ট
-apps/frappe/frappe/handler.py +94,Logged Out,প্রস্থান
+apps/frappe/frappe/handler.py +95,Logged Out,প্রস্থান
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,আরো ...
 DocType: System Settings,User can login using Email id or Mobile number,ব্যবহারকারী ইমেইল আইডি বা মোবাইল নম্বর ব্যবহার করে লগইন করতে পারেন
 DocType: Bulk Update,Update Value,আপডেট মূল্য
@@ -3206,12 +3276,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,দয়া করে নামান্তর করতে একটি নতুন নাম নির্বাচন
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,অবৈধ কলাম
 DocType: Data Migration Connector,Data Migration,তথ্য স্থানান্তর
+DocType: User,API Key cannot be  regenerated,API কী পুনর্জীবিত করা যাবে না
 apps/frappe/frappe/public/js/frappe/request.js +167,Something went wrong,কিছু ভুল হয়েছে
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,শুধু {0} এন্ট্রি দেখানো হয়েছে। আরো নির্দিষ্ট ফলাফলের জন্য ফিল্টার করুন।
 DocType: System Settings,Number Format,সংখ্যার বিন্যাস
 DocType: Auto Repeat,Frequency,ফ্রিকোয়েন্সি
 DocType: Custom Field,Insert After,পরে ঢোকান
-DocType: Report,Report Name,গালাগাল প্রতিবেদন নাম
+DocType: Prepared Report,Report Name,গালাগাল প্রতিবেদন নাম
 DocType: Desktop Icon,Reverse Icon Color,বিপরীত আইকন রঙ
 DocType: Notification,Save,সংরক্ষণ
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,পরবর্তী নির্ধারিত তারিখ
@@ -3224,13 +3295,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,ডিফল্ট
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} যোগ করা হয়েছে
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',জন্য অনুসন্ধান করুন '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,দয়া করে রিপোর্ট প্রথম সংরক্ষণ
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,দয়া করে রিপোর্ট প্রথম সংরক্ষণ
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} গ্রাহকদের যোগ করা হয়েছে
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,না
 DocType: Workflow State,star,তারকা
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,হাব
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,মান কমা দ্বারা পৃথকীকৃত
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,Max width for type Currency is 100px in row {0},টাইপ একক জন্য সর্বোচ্চ প্রস্থ সারিতে 100px হয় {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +281,values separated by commas,মান কমা দ্বারা পৃথকীকৃত
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Max width for type Currency is 100px in row {0},টাইপ একক জন্য সর্বোচ্চ প্রস্থ সারিতে 100px হয় {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},জন্য আপনার মতামত শেয়ার করুন {0}
 apps/frappe/frappe/config/website.py +13,Content web page.,বিষয়বস্তু ওয়েবপৃষ্ঠাটি.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,একটি নতুন ভূমিকা করো
@@ -3243,15 +3314,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,নিম্নলিখিত doctypes জন্য রেকর্ড ফিল্টার করা হবে
 DocType: Blog Settings,Blog Introduction,ব্লগ পরিচিতি
 DocType: Address,Office,অফিস
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,এই Kanban বোর্ড ব্যক্তিগত হবে
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,এই Kanban বোর্ড ব্যক্তিগত হবে
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,স্ট্যান্ডার্ড প্রতিবেদন
 DocType: User,Email Settings,ইমেইল সেটিংস
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,অবিরত আপনার পাসওয়ার্ড দিন
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,অবিরত আপনার পাসওয়ার্ড দিন
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,একটি বৈধ দ্বারা LDAP ব্যবহারকারী
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} কোনো বৈধ অবস্থা না
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} কোনো বৈধ অবস্থা না
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,Please select another payment method. PayPal does not support transactions in currency '{0}',দয়া করে অন্য একটি অর্থ প্রদানের পদ্ধতি নির্বাচন করুন। পেপ্যাল মুদ্রায় লেনদেন অবলম্বন পাওয়া যায়নি '{0}'
 DocType: Chat Message,Room Type,ঘরের বিবরণ
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,অনুসন্ধান ফিল্ড {0} বৈধ নয়
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,অনুসন্ধান ফিল্ড {0} বৈধ নয়
 DocType: Workflow State,ok-circle,OK-বৃত্ত
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',আপনি জিজ্ঞাসা 'গ্রাহকদের মধ্যে কমলা এটি' দ্বারা জিনিষ খুঁজে পেতে পারেন
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,দুঃখিত! ব্যবহারকারী তাদের নিজের রেকর্ড করতে সম্পূর্ণ সুযোগ থাকা উচিত.
@@ -3267,21 +3338,21 @@ DocType: DocField,Unique,অনন্য
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,আংশিক সাফল্য
 DocType: Email Account,Service,সেবা
 DocType: File,File Name,ফাইল নাম
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),এটি করা হয়নি {0} জন্য {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),এটি করা হয়নি {0} জন্য {0} ({1})
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","ওহো, আপনি কি জানেন যে অনুমতি দেওয়া হয় না"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,পরবর্তী
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,আপনি সফলভাবে লগ আউট করা হয়েছে
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,আপনি সফলভাবে লগ আউট করা হয়েছে
 DocType: Calendar View,Calendar View,ক্যালেন্ডার দেখুন
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,সম্পাদনা বিন্যাস
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,সম্পূর্ণ নিবন্ধন
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,সম্পূর্ণ নিবন্ধন
 DocType: GCalendar Settings,Enable,সক্ষম করা
-DocType: Google Maps,Home Address,বাসার ঠিকানা
+DocType: Google Maps Settings,Home Address,বাসার ঠিকানা
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),নিউ {0} (Ctrl + B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,শীর্ষ বার রঙ এবং টেক্সট কালার একই. তারা পাঠযোগ্য হতে ভাল বৈসাদৃশ্য আছে করা উচিত.
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),আপনি শুধুমাত্র এক বারেই 5000 রেকর্ড অবধি আপলোড করতে পারেন. (কিছু কিছু ক্ষেত্রে কম হতে পারে)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},জন্য অপর্যাপ্ত অনুমতি {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),গালাগাল প্রতিবেদন সংরক্ষিত হয় নি (ত্রুটি ছিল)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,শিরোলেখ বিষয়বস্তু পরিবর্তন করতে পারবেন না
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),গালাগাল প্রতিবেদন সংরক্ষিত হয় নি (ত্রুটি ছিল)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,শিরোলেখ বিষয়বস্তু পরিবর্তন করতে পারবেন না
 DocType: Print Settings,Print Style,মুদ্রণ এবং প্রতিচ্ছবিকরণ যন্ত্রসমূহ
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,কোনো রেকর্ড লিঙ্ক করা
 DocType: Custom DocPerm,Import,আমদানি
@@ -3310,9 +3381,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,সর্বশেষ নথি পেতে রিফ্রেশ করুন.
 DocType: User,Security Settings,নিরাপত্তা বিন্যাস
 DocType: Website Settings,Operators,অপারেটর
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,কলাম যুক্ত
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,কলাম যুক্ত
 ,Desktop,ডেস্কটপ
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},রপ্তানি প্রতিবেদন: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},রপ্তানি প্রতিবেদন: {0}
 DocType: Auto Email Report,Filter Meta,ফিল্টার মেটা
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,এই ফর্মটি একটি ওয়েব পেজ আছে তাহলে টেক্সট ওয়েব পৃষ্ঠা থেকে লিঙ্ক জন্য প্রদর্শন করা হবে. লিংক রুট স্বয়ংক্রিয়ভাবে page_name` এবং `` parent_website_route` উপর ভিত্তি করে তৈরি করা হবে
 DocType: Feedback Request,Feedback Trigger,প্রতিক্রিয়া ট্রিগার
@@ -3339,6 +3410,6 @@ DocType: Bulk Update,Max 500 records at a time,একটি সময়ে স
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","আপনার ডেটা HTML থাকে, তাহলে দয়া করে ট্যাগ দিয়ে সঠিক HTML কোড পেস্ট কপি করুন."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,সংযুক্ত ফাইল খোলা যায়নি. আপনি এটা CSV হিসাবে রফতানি হয়নি?
 DocType: DocField,Ignore User Permissions,ব্যবহারকারীর অনুমতি উপেক্ষা
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,অনুগ্রহ করে আপনার প্রশাসক আপনার সাইন-আপ যাচাই করার জন্য জিজ্ঞেস
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,অনুগ্রহ করে আপনার প্রশাসক আপনার সাইন-আপ যাচাই করার জন্য জিজ্ঞেস
 DocType: Domain Settings,Active Domains,সক্রিয় ডোমেন
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,দেখান লগ
diff --git a/frappe/translations/bs.csv b/frappe/translations/bs.csv
index 613b52b60b..a9730dfe86 100644
--- a/frappe/translations/bs.csv
+++ b/frappe/translations/bs.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,Molimo odaberite polje za iznos.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Pritisnite Esc da biste zatvorili
-apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","Novi zadatak, {0}, je dodijeljen od {1}. {2}"
+apps/frappe/frappe/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}","Novi zadatak, {0}, je dodijeljen od {1}. {2}"
 DocType: Email Queue,Email Queue records.,E-mail Queue Records.
 DocType: Address,Punjab,Punjab
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,Preimenovanje mnoge stavke upload . Csv datoteku .
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,Web stranica
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Morate biti prijavljeni da pristupite ovoj stranici
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Napomena: više sesija će biti dozvoljeno u slučaju mobilnih uređaja
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},Omogućeno e-mail inbox za korisnika {korisnike}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},Omogućeno e-mail inbox za korisnika {korisnike}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ne možete slati ovo e-mail. Ste prešli granicu od slanja e-mailova {0} za ovaj mjesec.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,Trajno Podnijeti {0} ?
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Preuzimanje datoteka za rezervne kopije
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} Stablo
 DocType: User,User Emails,korisnika Email
 DocType: User,Username,Korisničko
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,Import Zip
-apps/frappe/frappe/model/base_document.py +554,Value too big,Vrijednost prevelika
+apps/frappe/frappe/model/base_document.py +563,Value too big,Vrijednost prevelika
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,Run Script Test
 DocType: Data Import,Total Rows,Ukupno redova
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,Trupci
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,Neophodno je i danas preduzeti ovu akciju za gore pomenuto ponavljanje
 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 +539,Rename {0},Preimenovanje {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},Preimenovanje {0}
 DocType: Workflow State,zoom-out,odalji
 apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Ne možete otvoriti {0} kada je instanca je otvoren
-apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,Tabela {0} ne može biti prazno
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,Tabela {0} ne može biti prazno
 DocType: SMS Parameter,Parameter,Parametar
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,s knjigama
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,Dokument je modifikovan!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,s knjigama
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,Slike
 DocType: Activity Log,Reference Owner,referentni Vlasnik
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ako je omogućeno, korisnik se može prijaviti sa bilo koje IP adrese pomoću Two Factor Auth, to može biti postavljeno i za sve korisnike u System Settings"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Najmanja kruži frakcija jedinici (novčić). Za npr 1 cent za USD i to treba upisati kao 0,01"
 DocType: Social Login Key,GitHub,GitHub
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, {1} Red"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, {1} Red"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Molim Vas, dajte fullname."
-apps/frappe/frappe/model/document.py +1057,Beginning with,počinju s
+apps/frappe/frappe/model/document.py +1058,Beginning with,počinju s
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Uvoz podataka Template
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Roditelj
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ako je omogućeno, jačina lozinka će biti izvršena na osnovu minimalne lozinke Score vrijednosti. Vrijednost 2, koji je srednje jak i 4 biti vrlo jaka."
 DocType: About Us Settings,"""Team Members"" or ""Management""","""Članovi tima"" ili ""menadzment"""
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',Uobičajeno za 'Check' tip polje mora biti ili '0' ili '1'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',Uobičajeno za 'Check' tip polje mora biti ili '0' ili '1'
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,Jučer
 DocType: Contact,Designation,Oznaka
 DocType: Test Runner,Test Runner,Test Runner
@@ -66,10 +65,11 @@ 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 +47,Danger,Opasnost
-apps/frappe/frappe/www/login.html +20,Email Address,E-mail adresa
+apps/frappe/frappe/www/login.html +21,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/misc/tools.js +10,Export not allowed. You need {0} role to export.,Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz .
+DocType: System Settings,In seconds,Za nekoliko sekundi
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,Otkaži {0} dokumente?
 DocType: DocType,Is Published Field,Je objavljen Field
 DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,E-mail Group
 DocType: Note,Seen By,Viđeno od strane
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,dodavanje više
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,Nije važeća slika korisnika.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Podešavanja> Korisnik
 DocType: Success Action,First Success Message,Prva poruka o uspehu
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,Ne kao
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Postavite ekran oznaku za oblast
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},Netočna vrijednost: {0} mora biti {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},Netočna vrijednost: {0} mora biti {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","Svojstva Promjena polje (skrivanje , samo za čitanje , dozvola i sl. )"
 DocType: Workflow State,lock,Zaključati
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Podešavanja za Kontaktirajte nas stranicu.
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,Administrator prijavljeni
+apps/frappe/frappe/core/doctype/user/user.py +917,Administrator Logged In,Administrator prijavljeni
 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 +34,Add a tag ...,Dodajte oznaku ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},Novi {0}: {1} #
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},Novi {0}: {1} #
 DocType: Data Migration Run,Insert,Insert
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Odaberite {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,Molimo unesite osnovni URL
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,Vrste dokumenata
 DocType: Address,Jammu and Kashmir,Jammu and Kashmir
 DocType: Workflow,Workflow State Field,Workflow Državna polja
-apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,Molimo vas da se prijavite ili Prijavite se da počne
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,Molimo vas da se prijavite ili Prijavite se da počne
 DocType: Blog Post,Guest,Gost
 DocType: DocType,Title Field,Naslov Field
 DocType: Error Log,Error Log,Error Log
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"If you think this is unauthorized, please change the Administrator password.","Ako mislite da je ovo neovlašćeno, molimo promijenite lozinku administratora."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} je obavezno
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} je obavezno
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","Opcije imenovanja:
  1. polje: [fieldname] - Po polju
  2. naming_series: - po nazivima serija (polje nazvane nazing_series mora biti prisutno
  3. Prompt - Promeni korisnika za ime
  4. [serija] - Serija po prefiksu (odvojena tačkom); na primjer PRE. #####
  5. concatenate: [fieldname1], [fieldname2], ... [fieldnameX] - Po konačnom imenu polja (možete spojiti što više polja koliko želite.
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,vlasnik DocType: Communication,Visit,Posjetiti DocType: LDAP Settings,LDAP Search String,LDAP Search String DocType: Translation,Translation,prijevod -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Podešavanje> Prilagodi obrazac apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,G-din DocType: Custom Script,Client,Klijent apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,Izaberite kolonu @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,Uvoz Prijavite apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Postavi slikovne prezentacije u web stranicama. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,Poslati DocType: Workflow Action Master,Workflow Action Name,Workflow Akcija Ime -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,Vrsta dokumenta se ne može spajati +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,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 +270,Not a zip file,Nije zip datoteku DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,Vi DocType: Braintree Settings,Braintree Settings,Braintree podešavanja DocType: Website Theme,lowercase,malim slovima -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,Molimo izaberite Stolice na bazi Uključene apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,Sačuvaj filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},Ne mogu da obrišem {0} +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,Ne preci DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,Newsletter je već poslana apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","Sesija za prijavljivanje je istekla, osvežite stranicu da biste ponovo pokušali" @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,E-mail Odjava DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Odaberite sliku od cca 150px širine s transparentnom pozadinom za najbolje rezultate. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Aplikacije treće strane apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,Prvi korisnik će postati System Manager (to možete promijeniti kasnije). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen osnovni obrazac naslova. Molimo vas da kreirate novu od Setup> Printing and Branding> Template Template. apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,DocType mora biti podnošljiv za izabrani Doc događaj ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,krug sa strelicom prema gore DocType: Email Domain,Email Domain,E-mail Domain DocType: Workflow State,italic,kurziva -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0} : Ne može se uvoz bez Stvoriti +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0} : Ne može se uvoz bez Stvoriti DocType: SMS Settings,Enter url parameter for message,Unesite URL parametar za poruke apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,Pregledajte izveštaj u vašem pregledaču apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Dogadjaj i ostali kalendari. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Sva polja je potrebno dostaviti komentar. +DocType: Print Settings,Printer Name,Ime štampača +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,Povucite kako biste sortirali kolone apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Širine se može podesiti u px ili%. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,početak DocType: Contact,First Name,Ime @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,Files apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Prava se primjenjuju na korisnike na temelju onoga što Uloge su dodijeljeni . apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,Ne smiju slati e-mailove u vezi s ovim dokumentom -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,Molimo odaberite atleast 1 kolonu od {0} za sortiranje / grupa +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,Molimo odaberite atleast 1 kolonu od {0} za sortiranje / grupa DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Provjerite ovo ako se testiraju uplatu pomoću API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Vam nije dozvoljeno da obrišete standardni Web Theme DocType: Data Import,Log Details,Detalji o evidenciji DocType: Feedback Trigger,Example,Primjer DocType: Webhook Header,Webhook Header,Webhook Header +DocType: Print Settings,Print Server,Server za štampanje DocType: Workflow State,gift,dar DocType: Workflow Action,Completed By,Završio apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Reqd @@ -223,12 +227,13 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS 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/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,Dokumentacija +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,Dokumentacija DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,Izbriši {0} stavke trajno? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,Nije dozvoljen DocType: DocShare,Internal record of document shares,Interni rekord akcija dokumenta DocType: Workflow State,Comment,Komentar +DocType: Data Migration Plan,Postprocess Method,Postproces metod apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,Uslikaj apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","Možete promijeniti Poslao dokumente tako da ih otkazuje , a zatim , njihovih izmjena i dopuna ." DocType: Data Import,Update records,Ažuriraj zapise @@ -236,20 +241,20 @@ 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/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,Save As +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,Save As DocType: Communication,Seen,Seen apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,Pokaži više detalja DocType: System Settings,Run scheduled jobs only if checked,Trčanje rasporedu radnih mjesta samo ako provjeriti apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Će biti prikazan samo ako su odjeljku naslova omogućeno apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arhiva -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,Upload fajlova +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,Upload fajlova DocType: Activity Log,Message,Poruka DocType: Communication,Rating,Ocjena DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Ispis Širina na terenu, ako je na terenu je kolona u tablici" DocType: Dropbox Settings,Dropbox Access Key,Dropbox pristupni ključ -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,Pogrešno polje {0} u add_fetch konfiguraciji prilagođenog skripta +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,Pogrešno polje {0} u add_fetch konfiguraciji prilagođenog skripta DocType: Workflow State,headphones,slušalice -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,Lozinka je potrebno ili odaberite Čekanje lozinku +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,Lozinka je potrebno ili odaberite Čekanje lozinku DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,npr replies@yourcomany.com. Svi odgovori će doći na ovu inbox. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL DocType: Data Migration Run,Current Mapping,Trenutni mapiranje @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupe Doctype apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Integracija Google mapa DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,Resetujte svoju lozinku +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,Prikaži vikende DocType: Workflow State,remove-circle,uklanjanje-krug DocType: Help Article,Beginner,početnik DocType: Contact,Is Primary Contact,Je primarni kontakt apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,Javascript da doda glave dijelu stranice. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,Nije dozvoljeno da se ispis nacrta dokumenata +apps/frappe/frappe/www/printview.py +80,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 +12,Reset to defaults,Vrati podrazumev DocType: Workflow,Transition Rules,Prijelazna pravila apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Primjer: -DocType: Google Maps,Google Maps,google mape DocType: Workflow,Defines workflow states and rules for a document.,Definira workflow država i pravila za dokument. DocType: Workflow State,Filter,filter apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},Naziv Polja {0} ne može imati posebne znakove kao {1} @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,Update m apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,Pogreška: Dokument je promijenjen nakon što ste ga otvorili apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} prijavljeni od: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0} : Ne mogu postaviti Zauzimanje Podnijeti ako ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0} : Ne mogu postaviti Zauzimanje Podnijeti ako ne Submittable DocType: Transaction Log,Row Index,Indeks reda DocType: Social Login Key,Facebook,Facebook -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",Filtriran "{0}" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",Filtriran "{0}" DocType: Salutation,Administrator,Administrator DocType: Activity Log,Closed,Zatvoreno DocType: Blog Settings,Blog Title,Naslov bloga apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,Standard uloga ne može biti onemogućena -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,Tip ćaskanja +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,Tip ćaskanja DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,ne mogu koristiti pod-upita kako bi po +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,ne mogu koristiti pod-upita kako bi po DocType: Web Form,Button Help,Button Pomoć DocType: Kanban Board Column,purple,purple DocType: About Us Settings,Team Members,Članovi tima @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",SQL uvjeti. Prim DocType: User,Get your globally recognized avatar from Gravatar.com,Uzmite globalno priznati avatar od Gravatar.com apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","Vaša pretplata istekla na {0}. Da biste obnovili, {1}." DocType: Workflow State,plus-sign,plus-potpisati -apps/frappe/frappe/__init__.py +918,App {0} is not installed,App {0} nije instaliran +apps/frappe/frappe/__init__.py +994,App {0} is not installed,App {0} nije instaliran DocType: Data Migration Plan,Mappings,Mapping DocType: Notification Recipient,Notification Recipient,Primalac obaveštenja DocType: Workflow State,Refresh,Osvježi DocType: Event,Public,Javni -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,Nema podataka za prikaz +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,Nema podataka za prikaz DocType: System Settings,Enable Two Factor Auth,Omogući dva faktora Auth -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[Hitno] Greška prilikom kreiranja ponavljajućeg% s za% s +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[Hitno] Greška prilikom kreiranja ponavljajućeg% s za% s apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Vole DocType: DocField,Print Hide If No Value,Ispis Sakrij Ako No Value DocType: Kanban Board Column,yellow,žut -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,Objavljen je na terenu mora biti važeća Naziv Polja +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,Objavljen je na terenu mora biti važeća Naziv Polja apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Prenesi Prilog DocType: Block Module,Block Module,Blok modula apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,nova vrijednost +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,Nema dozvole za uređivanje apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Dodajte kolumnu apps/frappe/frappe/www/contact.html +34,Your email address,Vaša e-mail adresa DocType: Desktop Icon,Module,Modul 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/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,Proverite da li referentni dokumenti o komunikaciji nisu cirkularno povezani. +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,Proverite da li referentni dokumenti o komunikaciji nisu cirkularno povezani. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Kreiraj novi format apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,Nije moguće kreirati kašiku: {0}. Promenite ga na jedinstveno ime. DocType: Webhook,Request URL,Zahtjev URL @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,je Tabela apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,Primijenite dozvolu korisnika za slijedeće DocTypes DocType: Email Account,Total number of emails to sync in initial sync process ,Ukupan broj e-mailova za sinhronizaciju u procesu inicijalne sync DocType: Website Settings,Set Banner from Image,Postavite banner sa slike -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,globalnu potragu +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,globalnu potragu DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},Novi korisnički račun je stvoren za vas na {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,instrukcije Email-ovani @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-mail Flag Queue apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,Stylesheets za formate štampanja apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Ne može identificirati otvoreno {0}. Pokušajte nešto drugo. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,Vaše informacije su dostavljeni -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,Korisnik {0} se ne može izbrisati +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,Vaše informacije su dostavljeni +apps/frappe/frappe/core/doctype/user/user.py +305,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 +143,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. DocType: DocType,App,App @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Prikaži DocType: Workflow State,Print,Stampaj DocType: User,Restrict IP,Zabraniti IP apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,komandna tabla -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,Nije moguće poslati e-mail u ovom trenutku -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,Traži ili upišite komandu +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,Nije moguće poslati e-mail u ovom trenutku +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,Traži ili upišite komandu DocType: Activity Log,Timeline Name,Timeline ime DocType: Email Account,e.g. smtp.gmail.com,npr smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,Dodaj novo pravilo @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,P DocType: Top Bar Item,Parent Label,Roditelj Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Vaš upit je dobio. Odgovorit ćemo brzo vratiti. Ako imate bilo kakve dodatne informacije, molimo Vas da odgovorite na ovaj e-mail." DocType: GCalendar Account,Allow GCalendar Access,Dozvoli GCalendar pristup -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} je obavezno polje +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} je obavezno polje apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,Potreban je token token DocType: Event,Repeat Till,Ponovite Do apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,Novi apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Molimo podesite skripta URL na Gsuite Postavke +DocType: Google Maps Settings,Google Maps Settings,Postavke Google mapa apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Učitavanje ... DocType: DocField,Password,Lozinka apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,Vaš sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,Nema odgovarajućih zapisa. Pretraga nešto novo DocType: Chat Profile,Away,U gostima DocType: Currency,Fraction Units,Frakcije Jedinice -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} od {1} na {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} od {1} na {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Označi kao Gotovo DocType: Chat Message,Type,Vrsta DocType: Activity Log,Subject,Predmet @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,Iznos po osnovu Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Korisnik je obavezna za Share DocType: DocField,Hidden,skriven DocType: Web Form,Allow Incomplete Forms,Dozvolite Nepotpune Obrasci -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} mora biti postavljen prvi +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,Generisanje PDF-a nije uspelo +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} mora biti postavljen prvi apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","Koristite nekoliko riječi, izbjeći uobičajene fraze." DocType: Workflow State,plane,avion apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ako upload nove rekorde, ""Imenovanje Serija"" postaje obavezna, ako je prisutan." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,Dobij upozorenja za Danas -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,Vrstu dokumenta moze preimenovati samo Administrator +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,Dobij upozorenja za Danas +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,Vrstu dokumenta moze preimenovati samo Administrator DocType: Chat Message,Chat Message,Chat poruka apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},E-pošta nije potvrđena sa {0} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},promijenjenih vrijednosti od {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},promijenjenih vrijednosti od {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Ako korisnik ima bilo koju potvrdu uloge, korisnik postaje "Korisnik sistema". "Korisnik sistema" ima pristup desktopu" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,Molimo provjerite svoj e-mail za verifikaciju -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,Fold ne može biti na kraju obrasca +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,Molimo provjerite svoj e-mail za verifikaciju +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,Fold ne može biti na kraju obrasca DocType: Communication,Bounced,Odbijeno DocType: Deleted Document,Deleted Name,Deleted ime apps/frappe/frappe/config/setup.py +14,System and Website Users,Korisnici sustava i web stranice @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,Doc status DocType: Data Migration Run,Pull Update,Povuci ažuriranje DocType: Auto Email Report,No of Rows (Max 500),Ne redaka (Max 500) DocType: Language,Language Code,Jezik Kod +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Napomena: Po defaultu se pošalju e-pošta za neuspele rezervne kopije. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","Vaš preuzimanje se gradi, to može potrajati nekoliko trenutaka ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,Dodaj Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS poslati na sljedeće brojeve: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,Vaša ocjena: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} {1} i -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,Započnite razgovor. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,Vaša ocjena: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email nalog nije podešen. Molimo vas da kreirate novi nalog e-pošte iz Setup-a> E-pošta> E-poštni nalog +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} {1} i +apps/frappe/frappe/public/js/frappe/chat.js +2149,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 DocType: Data Migration Run,Current Mapping Start,Početak trenutnog mapiranja apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,E-mail je označena kao spam DocType: About Us Settings,Website Manager,Web Manager -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,Datoteka je prekinuta. Molimo pokušajte ponovo. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,Nevažeće polje za pretraživanje +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,Datoteka je prekinuta. Molimo pokušajte ponovo. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,Prevodi apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,Ste odabrali Nacrt ili Otkazano dokumenata -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},Dokument {0} je podešen na stanje {1} za {2} -apps/frappe/frappe/model/document.py +1211,Document Queued,dokument redu za slanje +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},Dokument {0} je podešen na stanje {1} za {2} +apps/frappe/frappe/model/document.py +1212,Document Queued,dokument redu za slanje DocType: GSuite Templates,Destination ID,Destinacija ID DocType: Desktop Icon,List,popis DocType: Activity Log,Link Name,link ime -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} je u redu {1} ne može biti skriven i obavezno bez defaultu +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} je u redu {1} ne može biti skriven i obavezno bez defaultu DocType: System Settings,mm/dd/yyyy,dd / mm / gggg -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,Nevažeći Lozinka: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,Nevažeći Lozinka: DocType: Print Settings,Send document web view link in email,Pošalji dokument web pogled link u e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Vaše povratne informacije za dokument {0} je uspješno sačuvan apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,prijašnji -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,Re: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} redova za {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,Re: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} redova za {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. Za npr. "centi" apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,Ime veze -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Odaberite dodate datoteke +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Odaberite dodate datoteke DocType: Letter Head,Check this to make this the default letter head in all prints,Provjerite to napraviti ovu glavu zadani slovo u svim otisaka DocType: Print Format,Server,Server -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,Novi Kanban odbora +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,Novi Kanban odbora DocType: Desktop Icon,Link,Poveznica apps/frappe/frappe/utils/file_manager.py +122,No file attached,No file u prilogu DocType: Version,Version,verzija +DocType: S3 Backup Settings,Endpoint URL,URL krajnje tačke apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,Grafikoni DocType: User,Fill Screen,Ispunite zaslon apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,Profil za ćaskanje za Korisnika {user} postoji. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,Dozvole se automatski primjenjuju na standardne izvještaje i pretraživanja. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,Upload nije uspio -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,Edit preko Upload +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,Edit preko Upload apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Vrsta dokumenta ..., npr kupca" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Uvjet '{0}' je nevažeća DocType: Workflow State,barcode,barkod @@ -486,22 +496,24 @@ DocType: Country,Country Name,Država Ime DocType: About Us Team Member,About Us Team Member,"""O nama"" član tima" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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 -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,polje Slika mora biti valjan Naziv Polja +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,polje Slika mora biti valjan Naziv Polja DocType: Chat Token,Token,žeton DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (ime) subjekta čiji je objekt se postaviti apps/frappe/frappe/limits.py +84,"To renew, {0}.","Da biste obnovili, {0}." 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 +129,App {0} already installed,App {0} već instaliran -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Nema pregleda +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,Nema pregleda DocType: Workflow State,exclamation-sign,usklik-znak apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Pokaži Dozvole -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,Timeline polje mora biti Link ili Dynamic Link +DocType: Data Import,New data will be inserted.,Novi podaci će biti ubačeni. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,Timeline polje mora biti Link ili Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datum Range apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Strana {0} od {1} DocType: About Us Settings,Introduce your company to the website visitor.,Uvesti svoju tvrtku za web stranice posjetitelja. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json","Enkripcija ključ je nevažeća, Molimo provjerite site_config.json" +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json","Enkripcija ključ je nevažeća, Molimo provjerite site_config.json" DocType: SMS Settings,Receiver Parameter,Prijemnik parametra DocType: Data Migration Mapping Detail,Remote Fieldname,Daljinsko polje DocType: Communication,To,u @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,Veličina fonta DocType: System Settings,Disable Standard Email Footer,Onemogućiti Standard mail Footer DocType: Workflow State,facetime-video,FaceTime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 komentar -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,viewed +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,viewed DocType: Notification,Days Before,Dana prije DocType: Workflow State,volume-down,glasnoće prema dolje -apps/frappe/frappe/desk/reportview.py +268,No Tags,No Tags +apps/frappe/frappe/desk/reportview.py +270,No Tags,No Tags DocType: DocType,List View Settings,Liste Postavke DocType: Email Account,Send Notification to,Pošalji Obavještenje DocType: DocField,Collapsible,Sklopivi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Sačuvane -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Šta ti je potrebna pomoć? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,Šta ti je potrebna pomoć? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opcije za odabrane. Svaka opcija na novoj liniji. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,Trajno Odustani {0} ? DocType: Workflow State,music,muzika +DocType: Website Theme,Text Styles,Text Styles apps/frappe/frappe/www/qrcode.html +3,QR Code,QR Code -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,Poslednji izmijenjeni datum +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,Poslednji izmijenjeni datum DocType: Chat Profile,Settings,Podešavanja DocType: Print Format,Style Settings,Stil Postavke apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Polja Y osi -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjan Naziv Polja -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,Više +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjan Naziv Polja +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Više DocType: Contact,Sales Manager,Sales Manager -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,preimenovati +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,preimenovati DocType: Print Format,Format Data,Format Data DocType: List Filter,Filter Name,Ime filma apps/frappe/frappe/utils/bot.py +91,Like,Kao @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,Soba Ime sobe DocType: OAuth Client,Grant Type,Grant Tip apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Provjerite koji dokumenti su čitljivi od strane Korisnika DocType: Deleted Document,Hub Sync ID,Hub Sync ID -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,koristiti% kao zamjenski +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,koristiti% kao zamjenski DocType: Auto Repeat,Quarterly,Kvartalno apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail domena nije konfigurirana za ovaj nalog, Napravi jedan?" DocType: User,Reset Password Key,Reset Password ključ @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Minimalna Password Score DocType: DocType,Fields,Polja DocType: System Settings,Your organization name and address for the email footer.,Vaše ime i adresu organizacije za e-footer. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Parent Tabela +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,Parent Tabela apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 Backup complete! apps/frappe/frappe/config/desktop.py +60,Developer,Razvijač -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,Objavio +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,Objavio apps/frappe/frappe/client.py +101,No permission for {doctype},Nema dozvole za {doctype} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{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/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,Predniki Of apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Korijen {0} se ne može izbrisati apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,Još nema komentara apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings",Molimo da podesite SMS poruku pre nego što ga podesite kao metod autentifikacije putem SMS-a @@ -576,6 +590,7 @@ DocType: Contact,Open,Otvoreno DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Definira radnji na državama i sljedeći korak i dozvoljeno uloge. DocType: Data Migration Mapping,Remote Objectname,Daljinsko ime objekta apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Kao najbolje prakse , ne dodijeliti isti set pravila dopuštenje za različite uloge . Umjesto toga , postavite više uloga istom korisniku ." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,Potvrdite svoju radnju na {0} dokumentu. DocType: Success Action,Next Actions HTML,Sledeći Actions HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,Samo {0} poslana izvještaji su dozvoljeni po korisniku DocType: Address,Address Title,Naziv adrese @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,Zadana vrijednost DocType: Auto Repeat,Daily,Svakodnevno apps/frappe/frappe/config/setup.py +19,User Roles,Korisničke Uloge DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Nekretnine seter nadjačava standardni DOCTYPE ili Field imovinu -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,Ne možete ažurirati : Nepravilan / istekla . +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,Ne možete ažurirati : Nepravilan / istekla . apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,Bolje dodati još nekoliko slova ili neku drugu reč apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},Jednokratna lozinka (OTP) registracijski kod iz {} DocType: DocField,Set Only Once,Postaviti samo jednom DocType: Email Queue Recipient,Email Queue Recipient,E-mail Queue Primalac DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,Webhook URL -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,Korisničko {0} već postoji -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,{0} : Ne može se uvesti kao {1} nije za uvoz +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Korisničko {0} već postoji +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,{0} : Ne može se uvesti kao {1} nije za uvoz apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},Postoji greška u vašem Adresa Template {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} je nevažeća adresa e-pošte u 'Primaocima' DocType: User,Allow Desktop Icon,Dozvoli radnu ikonu DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,domaćin -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Kolona {0} već postoji. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,Kolona {0} već postoji. DocType: ToDo,High,Visok DocType: S3 Backup Settings,Secret Access Key,Tajni ključ za pristup apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Muški -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret je resetovan. Ponovna registracija će biti potrebna prilikom sledećeg prijavljivanja. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret je resetovan. Ponovna registracija će biti potrebna prilikom sledećeg prijavljivanja. DocType: Communication,From Full Name,Od Ime i prezime -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Nemate pristup Izvjestaju: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},Nemate pristup Izvjestaju: {0} DocType: User,Send Welcome Email,Pošalji Dobrodošli Email -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,Ukloni filter +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,Ukloni filter +DocType: Web Form Field,Show in filter,Prikaži u filteru DocType: Address,Daman and Diu,Daman and Diu -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,Projekat +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,Projekat DocType: Address,Personal,Osobno apps/frappe/frappe/config/setup.py +125,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Prikaži kao cc @@ -625,12 +641,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,prof apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,Ne u Developer Mode apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,Izrada datoteke je spremna DocType: DocField,In Global Search,U Global Search +DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,alineje-lijevo apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,To je rizično izbrisati ovu datoteku: {0}. Molimo vas da se obratite System Manager. DocType: Currency,Currency Name,Valuta Ime apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,No Email -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,Link Istekao -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,Izaberite File Format +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} godinu dana +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,Link Istekao +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,Izaberite File Format DocType: Report,Javascript,Javascript DocType: File,Content Hash,Sadržaj Ljestve DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Pohranjuje JSON prošle poznate verzije različitih instaliranih aplikacija. To se koristi za prikaz bilješke puštanje na slobodu. @@ -642,16 +660,15 @@ DocType: Auto Repeat,Stopped,Zaustavljen apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,Nije uklonjeno apps/frappe/frappe/desk/like.py +89,Liked,Liked apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Pošalji odmah -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","Standard DocType ne mogu imati zadani format za ispis, koristite Customize obrazac" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","Standard DocType ne mogu imati zadani format za ispis, koristite Customize obrazac" DocType: Report,Query,Upit DocType: DocType,Sort Order,Poredak sortiranja -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},"' Prikaz liste "" nije dozvoljen za vrstu {0} u redu {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},"' Prikaz liste "" nije dozvoljen za vrstu {0} u redu {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Odaberite oznaku nakon što želite umetnuti novo polje. ,Document Share Report,Izvještaj o dijeljenu dokumenata DocType: Social Login Key,Base URL,Baza URL DocType: User,Last Login,Zadnja prijava apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},Ne možete postaviti 'Translatable' za polje {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolona DocType: Chat Profile,Chat Profile,Chat Profil DocType: Custom Field,Adds a custom field to a DocType,Dodaje prilagođeno polje u vrstu dokumenta @@ -660,6 +677,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,Odaberite atleast 1 zapis za štampanje apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,Prvo podesite ime i sačuvajte zapis. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Podijeljeno sa {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,unsubscribe DocType: View log,Reference Name,Referenca Ime @@ -681,17 +699,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opci apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} do {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Prijavite greške prilikom zahtjeva. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} je uspješno dodan na mail Grupe. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,Nemojte uređivati zaglavlja koji su unapred postavljeni u predložak +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,Nemojte uređivati zaglavlja koji su unapred postavljeni u predložak apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},Prijava Verifikacioni kod iz {} DocType: Address,Uttar Pradesh,Uttar Pradesh +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,Bilješka: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,Status uvoza -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,Napravite datoteku (e) privatno ili javno? +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,Napravite datoteku (e) privatno ili javno? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Planirano za slanje na {0} DocType: Kanban Board Column,Indicator,pokazatelj DocType: DocShare,Everyone,Svi DocType: Workflow State,backward,Nazad -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo jedno pravilo je dozvoljeno u jednoj roli, nivo i {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo jedno pravilo je dozvoljeno u jednoj roli, nivo i {1}" DocType: Email Queue,Add Unsubscribe Link,Dodaj link za odjavu apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Još nema komentara. Započnite novu raspravu. DocType: Workflow State,share,udio @@ -703,6 +722,7 @@ DocType: User,Last IP,Posljednja IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Obnovi / Upgrade apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,Novi dokument {0} je podeljen sa vama {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector +DocType: Email Account,Track Email Status,Status e-pošte DocType: Note,Notify Users On Every Login,Obavijesti Korisnici On Every Prijava DocType: PayPal Settings,API Password,API lozinke apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Unesite python modul ili izaberite tip konektora @@ -711,6 +731,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Datum pos apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Pogledaj Pretplatnici DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,Ne možete izbrisati datoteku pošto pripada {0} {1} za koju nemate dozvole +DocType: Website Theme,Custom JS,Prilagođeno JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,G-đa DocType: Website Theme,Background Color,Boja pozadine apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,Bilo je grešaka tijekom slanja e-pošte. Molimo pokušajte ponovno . @@ -719,21 +740,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,Mapiranje DocType: Web Page,0 is highest,0 je najviši apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,Jeste li sigurni da želite da se prespoje ove komunikacije na {0}? -apps/frappe/frappe/www/login.html +86,Send Password,Pošalji lozinke +apps/frappe/frappe/www/login.html +87,Send Password,Pošalji lozinke +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Molimo da podesite podrazumevani nalog e-pošte iz Setup-a> E-pošta> E-poštni nalog +DocType: Print Settings,Server IP,Server IP DocType: Email Queue,Attachments,Prilozi apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Nemate dopuštenja za pristup ovom dokumentu DocType: Language,Language Name,Jezik DocType: Email Group Member,Email Group Member,Podijelite Grupa članova +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,Vaš nalog je zaključan i nastaviće se nakon {0} sekundi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,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 +313,Duplicate name {0} {1},Dupli naziv {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},Dupli naziv {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,Pokušajte ponovo DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Sakrij polju u Report Builder apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,Imate novu poruku od: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Edit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,Unesite URL za preusmeravanje -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Podešavanja> Korisničke dozvole apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","da se generiše. Ako je odloženo, morate ručno promijeniti polje "Ponovi na dan dana" ovoga" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,Vraćanje Original Dozvole @@ -758,23 +781,25 @@ DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Reply Help apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder izvješća se izravno upravlja Report Builder. Ništa učiniti. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Molimo Vas da provjerite e-mail adresa -apps/frappe/frappe/model/document.py +1056,none of,nitko od +apps/frappe/frappe/model/document.py +1057,none of,nitko od apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,Pošalji kopiju meni DocType: Dropbox Settings,App Secret Key,App tajni ključ DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Web stranice apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Označene stavke će biti prikazan na radnoj površini -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} se ne može postaviti za jedinicne vrste +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} se ne može postaviti za jedinicne vrste DocType: Data Import,Data Import,Uvoz podataka apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,Configure Chart apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} trenutno gledate ovaj dokument DocType: ToDo,Assigned By Full Name,Dodijeljen od strane Ime i prezime apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} ažurirana -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,Izvještaj se ne može postaviti za vrste +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,Izvještaj se ne može postaviti za vrste +DocType: System Settings,Allow Consecutive Login Attempts ,Dozvoli konusne pokušaje za prijavljivanje apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,Došlo je do greške tokom procesa plaćanja. Kontaktirajte nas. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,{0} dana DocType: Email Account,Awaiting Password,čeka lozinke DocType: Address,Address Line 1,Adresa - linija 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,Ne potomci DocType: Custom DocPerm,Role,Uloga apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Postavke ... apps/frappe/frappe/utils/data.py +507,Cent,Cent @@ -794,10 +819,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,zaustaviti DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link na stranicu koju želite otvoriti. Ostavite prazno ako želite da to grupu roditelja. DocType: DocType,Is Single,Nije u braku -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,Prijavi se je onemogućena -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} je napustio razgovor u {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,Prijavi se je onemogućena +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} je napustio razgovor u {1} {2} DocType: Blogger,User ID of a Blogger,User ID nekog Blogger -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,Tu bi trebao ostati barem jedan sustav Manager +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,Tu bi trebao ostati barem jedan sustav Manager DocType: GCalendar Account,Authorization Code,kod autorizacije DocType: PayPal Settings,Mention transaction completion page URL,Spomenuti transakcija završetak stranice URL DocType: Help Article,Expert,stručnjak @@ -818,8 +843,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","Da biste dodali dinamički predmet, koristiti Jinja tagovi poput
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,Primjeni dozvole korisnika +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},Nevažeće polje za pretraživanje {0} DocType: User,Modules HTML,Moduli HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Pratite ako je vaš e-pošta otvorio primalac.
Napomena: Ako šaljete više primaoca, čak i ako 1 primalac čita e-poštu, smatraće se "otvorenim"" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,Nedostaje vrijednosti potrebne DocType: DocType,Other Settings,Ostale postavke DocType: Data Migration Connector,Frappe,frape @@ -829,15 +857,13 @@ DocType: Customize Form,Change Label (via Custom Translation),Promijeni Label (p apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Nema dozvolu za {0} {1} {2} DocType: Address,Permanent,trajan apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,Napomena: Ostala pravila dozvole također može primijeniti -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/templates/emails/print_link.html +2,View this in your browser,Pogledaj ovaj u pregledniku DocType: DocType,Search Fields,Polja za pretragu DocType: System Settings,OTP Issuer Name,Ime izdavača OTP DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Nosilac Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,No dokument odabranih apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Doktor -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,Povezani ste na internet. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,Povezani ste na internet. DocType: Social Login Key,Enable Social Login,Omogući društveni prijava DocType: Event,Event,Događaj apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:","Na {0}, {1} napisao:" @@ -852,7 +878,7 @@ DocType: Print Settings,In points. Default is 9.,U bodovima. Standardni je 9. DocType: OAuth Client,Redirect URIs,redirect URI apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},Prijavljivanje {0} DocType: Workflow State,heart,srce -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,Old Lozinka Obavezno. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,Old Lozinka Obavezno. DocType: Role,Desk Access,Desk Access DocType: Workflow State,minus,minus DocType: S3 Backup Settings,Bucket,Žlica @@ -860,8 +886,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,Ne mogu da učitam fotoaparat. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,E-mail dobrodošlice apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,Idemo pripremiti sustav za prve upotrebe. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,Već registracije +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,Već registracije DocType: System Settings,Float Precision,Float Precision +DocType: Notification,Sender Email,E-pošta pošiljaoca apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Samo administrator može uređivati apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Ime dokumenta DocType: DocType,Editable Grid,Editable Grid @@ -872,17 +899,19 @@ DocType: Communication,Clicked,Kliknuli apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Zakazan za slanje DocType: DocType,Track Seen,Seen Track -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,Ova metoda se može koristiti samo za stvaranje komentar +DocType: Dropbox Settings,File Backup,File Backup +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,Ova metoda se može koristiti samo za stvaranje komentar DocType: Kanban Board Column,orange,narandža apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,Nije našao {0} apps/frappe/frappe/config/setup.py +259,Add custom forms.,Dodaj prilagođenu formu. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} u {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,dostavio ovaj dokument +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,dostavio ovaj dokument apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sustav nudi brojne unaprijed definirane uloge . Možete dodavati nove uloge postaviti finije dozvole. DocType: Communication,CC,CC DocType: Country,Geo,Geo +DocType: Data Migration Run,Trigger Name,Trigger Name DocType: Blog Category,Blog Category,Blog kategorija -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,Ne mogu mapirati jer sljedeći uvjet ne uspije: +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,Ne mogu mapirati jer sljedeći uvjet ne uspije: DocType: Role Permission for Page and Report,Roles HTML,Uloge HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Odaberite najprije imidž. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Aktivan @@ -906,16 +935,17 @@ DocType: Address,Other Territory,Ostala teritorija ,Messages,Poruke apps/frappe/frappe/config/website.py +83,Portal,Portal DocType: Email Account,Use Different Email Login ID,Koristite različite E-mail Prijava ID -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,Mora se odrediti upita za pokretanje +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,Mora se odrediti upita za pokretanje apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Izgleda da postoji problem sa konfiguracijom braintree servera. Ne brinite, u slučaju neuspeha, iznos će vam biti vraćen na vaš račun." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,Upravljajte aplikacije treće strane apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","Postavke za jezik, datum i vrijeme" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Podešavanja> Korisničke dozvole DocType: User Email,User Email,User-mail DocType: Event,Saturday,Subota DocType: User,Represents a User in the system.,Predstavlja korisnika u sistemu. DocType: Communication,Label,Oznaka -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Zadatak {0}, koje ste dodijelili {1}, je zatvoren." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,Molimo vas da zatvorite ovaj prozor +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","Zadatak {0}, koje ste dodijelili {1}, je zatvoren." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,Molimo vas da zatvorite ovaj prozor DocType: Print Format,Print Format Type,Ispis formatu DocType: Newsletter,A Lead with this Email Address should exist,Elektrode sa ovim e-mail adresa treba da postoji apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source Prijave za Web @@ -931,8 +961,8 @@ DocType: Data Export,Excel,Excel apps/frappe/frappe/templates/emails/password_update.html +2,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: Feedback Trigger,Condition,Stanje -apps/frappe/frappe/utils/data.py +619,{0} hours ago,{0} sata -apps/frappe/frappe/utils/data.py +629,1 month ago,prije 1 mjesec +apps/frappe/frappe/utils/data.py +621,{0} hours ago,{0} sata +apps/frappe/frappe/utils/data.py +631,1 month ago,prije 1 mjesec DocType: Contact,User ID,Korisnički ID DocType: Communication,Sent,Poslano DocType: Address,Kerala,Kerala @@ -951,7 +981,7 @@ DocType: GSuite Templates,Related DocType,Povezani DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Uredi za dodavanje sadržaja apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,Izaberite jezike apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,Detalji kartice -apps/frappe/frappe/__init__.py +538,No permission for {0},Bez dozvole za {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},Bez dozvole za {0} DocType: DocType,Advanced,Napredan apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,Izgleda API ključ ili API Tajna je u pravu !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},{0} {1}: Reference @@ -961,13 +991,13 @@ DocType: Address,Address Type,Tip adrese apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,Neispravno korisničko ime ili lozinka. Ispravite i pokušajte ponovo. DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Vaša pretplata ističe sutra. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,Greška u Notifikaciji +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,Greška u Notifikaciji apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,gospođa apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Ažurirano {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Majstor DocType: DocType,User Cannot Create,Korisnik ne može stvoriti apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,Folder {0} ne postoji -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,pristup Dropbox je odobren! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,pristup Dropbox je odobren! DocType: Customize Form,Enter Form Type,Unesite Obrazac Vid apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Nedostatak parametra Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nema zapisa tagged. @@ -976,14 +1006,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,Pošalji lozinku Update Notification apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Prilagođeni formati za tapete, E-mail" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,Ažurirani u New Version +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,Ažurirani u New Version DocType: Custom Field,Depends On,Zavisi od DocType: Kanban Board Column,Green,Zelenilo DocType: Custom DocPerm,Additional Permissions,Dodatne dozvole DocType: Email Account,Always use Account's Email Address as Sender,Uvijek koristite račun e-mail adresa kao Sender apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Prijava na komentar -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Start unosa podataka ispod ove linije -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},promijenjenih vrijednosti za {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,Start unosa podataka ispod ove linije +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},promijenjenih vrijednosti za {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","E-mail ID mora biti jedinstven, Email nalog već postoji \ for {0}" DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Prilagodi ... DocType: Print Format,Align Labels to the Right,Poravnajte oznake na desno @@ -1002,39 +1034,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,Uređi DocType: Workflow Action Master,Workflow Action Master,Workflow Akcija Master DocType: Custom Field,Field Type,Vrsta polja apps/frappe/frappe/utils/data.py +537,only.,samo. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,Administrator može resetovati samo OTP tajnu. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,Administrator može resetovati samo OTP tajnu. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,Izbjegavajte godina koji su povezani sa vama. apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,Ostavite korisnika za određeni dokument DocType: GSuite Templates,GSuite Templates,GSuite Templates +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,Silazni apps/frappe/frappe/utils/goal.py +110,Goal,Cilj apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,Nevažeći mail server. Ispravi i pokušaj ponovno. DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","Za Links, unesite DOCTYPE kao raspon. Za Select, unesite lista opcija, svaki na novu liniju." DocType: Workflow State,film,film -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},No dozvolu za čitanje {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},No dozvolu za čitanje {0} apps/frappe/frappe/config/desktop.py +8,Tools,Alati apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,Izbjegavajte posljednjih nekoliko godina. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,Više korijen čvorovi nisu dopušteni . DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ako je omogućeno, korisnici će biti obaviješteni svaki put kada se prijavite. Ako nije omogućen, korisnici će biti obaviješteni samo jednom." -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,Nevažeće {0} stanje +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,Nevažeće {0} stanje DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Ako je označeno, korisnici neće vidjeti dijalog potvrdu pristupa." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID polja je potrebno za uređivanje vrijednosti pomoću Report. Molimo odaberite polje ID pomoću Column Picker apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Komentari -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,Potvrditi -apps/frappe/frappe/www/login.html +58,Forgot Password?,Zaboravili ste lozinku? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,Potvrditi +apps/frappe/frappe/www/login.html +59,Forgot Password?,Zaboravili ste lozinku? DocType: System Settings,yyyy-mm-dd,gggg-mm-dd apps/frappe/frappe/desk/report/todo/todo.py +19,ID,ID apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,greska servera -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Prijava je potrebno Id +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Prijava je potrebno Id DocType: Website Slideshow,Website Slideshow,Web Slideshow apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,Nema podataka DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link koji jepočetna stranica web stranice . Standardni linkovi ( indeks , prijava , proizvodi , blog , o, kontakt)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Provjera autentičnosti nije uspjela dok primanje e-pošte iz e-pošte {0}. {1}: Poruka od poslužitelja +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Provjera autentičnosti nije uspjela dok primanje e-pošte iz e-pošte {0}. {1}: Poruka od poslužitelja DocType: Custom Field,Custom Field,Prilagođeno polje -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,Navedite koji datiraju polje mora biti označeno +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,Navedite koji datiraju polje mora biti označeno DocType: Custom DocPerm,Set User Permissions,Postavi korisnička dopuštenja apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},Nije dopušteno za {0} = {1} DocType: Email Account,Email Account Name,Naziv Email naloga -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,Nešto nije bilo u redu dok stvarajući Dropbox pristup token. Molimo Vas da provjerite dnevnik grešaka za više detalja. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,Nešto nije bilo u redu dok stvarajući Dropbox pristup token. Molimo Vas da provjerite dnevnik grešaka za više detalja. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Newsletter za kontakte, potencijalne kupce." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","npr ""Podrška "","" prodaje "","" Jerry Yang """ @@ -1043,19 +1077,20 @@ DocType: DocField,Description,Opis DocType: Print Settings,Repeat Header and Footer in PDF,Ponovite zaglavlja i podnožja u PDF 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 +20,Column Name cannot be empty,Kolona Ime ne može biti prazno -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},Greška pri povezivanju na nalog e-pošte {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,Kolona Ime ne može biti prazno +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},Greška pri povezivanju na nalog e-pošte {0} DocType: Workflow State,fast-forward,brzo naprijed DocType: Communication,Communication,Komunikacija apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Provjerite kolone za odabir, povucite postaviti red." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,Ovo je trajna akciju i ne možete poništiti. Nastaviti? apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,Prijavite se i pregledajte u pregledaču DocType: Event,Every Day,Svaki dan DocType: LDAP Settings,Password for Base DN,Lozinku za Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Tabela Field -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,Kolone na osnovu +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,Kolone na osnovu apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,Enter kako bi se omogućilo integraciju sa Google GSuite DocType: Workflow State,move,Potez -apps/frappe/frappe/model/document.py +1254,Action Failed,Akcija nije uspjela +apps/frappe/frappe/model/document.py +1255,Action Failed,Akcija nije uspjela DocType: List Filter,For User,za korisnika DocType: View log,View log,View log apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,Šifarnik konta @@ -1063,11 +1098,11 @@ DocType: Address,Assam,Assam apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,U pretplati imate još {0} dana apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Odlazne e-pošte računa nije ispravan DocType: Transaction Log,Chaining Hash,Chaining Hash -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Temperorily invaliditetom +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Temperorily invaliditetom apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,Molimo podesite e-mail adresa DocType: System Settings,Date and Number Format,Datum i oblik brojeva -apps/frappe/frappe/model/document.py +1055,one of,Jedan od -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,Provjera jednom trenutku +apps/frappe/frappe/model/document.py +1056,one of,Jedan od +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,Provjera jednom trenutku apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Prikazi tagove DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ako Nanesite Strogi korisnika Dozvola se provjerava i korisnika dozvola je definisana za DocType za korisnika, onda svi dokumenti u kojima je prazna vrijednost linka, neće biti prikazana na to User" DocType: Address,Billing,Naplata @@ -1078,7 +1113,7 @@ DocType: User,Middle Name (Optional),Krsno ime (opcionalno) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,Ne Dozvoljena apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,Nakon polja imaju nedostajućih vrijednosti: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,Prva transakcija -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,Nemate dovoljno dozvole za završetak akcije +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,Nemate dovoljno dozvole za završetak akcije apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,nema Rezultati DocType: System Settings,Security,Sigurnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Planirano za slanje na {0} primaoca @@ -1099,6 +1134,7 @@ DocType: Kanban Board Column,lightblue,svijetlo plavo apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Isto polje unosi se više puta apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasan apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Svaki dan događaja treba završiti na isti dan. +DocType: Prepared Report,Filter Values,Vrednosti filtera DocType: Communication,User Tags,Korisnicki tagovi DocType: Data Migration Run,Fail,Fail DocType: Workflow State,download-alt,download-alt @@ -1106,13 +1142,13 @@ DocType: Data Migration Run,Pull Failed,Pull Failed DocType: Communication,Feedback Request,povratne informacije Upit apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,Uvoz podataka iz datoteka CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Nakon polja nedostaju: -apps/frappe/frappe/www/login.html +28,Sign in,Prijavi se +apps/frappe/frappe/www/login.html +29,Sign in,Prijavi se apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},Otkazivanje {0} DocType: Web Page,Main Section,Glavni Odjeljak DocType: Page,Icon,ikona -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","Hint: Uključiti simboli, brojevi i slova u lozinku" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","Hint: Uključiti simboli, brojevi i slova u lozinku" DocType: DocField,Allow in Quick Entry,Dozvoli u brzom unosu -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / gggg apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite test skripta DocType: System Settings,Backups,Rezervne kopije @@ -1129,23 +1165,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,Nije važe DocType: Footer Item,Target,Meta DocType: System Settings,Number of Backups,Broj Backup DocType: Website Settings,Copyright,Autorsko pravo -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,ići +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,ići DocType: OAuth Authorization Code,Invalid,nevažeći DocType: ToDo,Due Date,Datum dospijeća apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,prvi dan u tromjesečju DocType: Website Settings,Hide Footer Signup,Sakrij Footer Prijavite -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,otkazan ovaj dokument +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,otkazan ovaj dokument apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Napišite Python datoteku u istu mapu gdje je spremljena i povratka stupcu i rezultat. +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,Dodaj u tablicu DocType: DocType,Sort Field,Sortiraj polje DocType: Razorpay Settings,Razorpay Settings,Razorpay Postavke -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,Edit Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne može biti obvezno +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,Edit Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne može biti obvezno apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Dodaj još DocType: System Settings,Session Expiry Mobile,Session Istek Mobile apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,Pogrešan korisnik ili lozinka apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,Rezultati pretrage za apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,Molimo unesite URL Token pristupa -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,Odaberete preuzimanje: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,Odaberete preuzimanje: DocType: Notification,Slack,Slack DocType: Custom DocPerm,If user is the owner,Ukoliko korisnik je vlasnik ,Activity,Aktivnost @@ -1154,7 +1191,7 @@ DocType: User Permission,Allow,Dopustiti apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,Da izbjeći ponovio riječi i slova DocType: Communication,Delayed,Odgođen apps/frappe/frappe/config/setup.py +140,List of backups available for download,Popis backup dostupan za preuzimanje -apps/frappe/frappe/www/login.html +71,Sign up,Prijaviti se +apps/frappe/frappe/www/login.html +72,Sign up,Prijaviti se apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,Red {0}: Nije dozvoljeno da onemogućite Obavezno za standardna polja DocType: Test Runner,Output,izlaz DocType: Notification,Set Property After Alert,Set imovine nakon Alert @@ -1165,7 +1202,6 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Data Export,File Type,Tip datoteke DocType: Workflow State,leaf,list DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,Clear User Settings DocType: Contact Us Settings,Email ID,E-mail ID DocType: Activity Log,Keep track of all update feeds,Pratite sve feedove ažuriranja DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Lista resursa koji će klijent aplikacija ima pristup nakon što korisnik dozvoljava.
npr projekta @@ -1175,7 +1211,7 @@ DocType: Error Snapshot,Timestamp,Vremenska oznaka DocType: Patch Log,Patch Log,Patch Prijava DocType: Data Migration Mapping,Local Primary Key,Lokalni primarni ključ apps/frappe/frappe/utils/bot.py +164,Hello {0},Pozdrav {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},Dobrodošli na {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},Dobrodošli na {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Dodaj apps/frappe/frappe/www/me.html +40,Profile,profil DocType: Communication,Sent or Received,Poslano ili primljeno @@ -1199,7 +1235,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,Podešavanje za DocType: Workflow State,minus-sign,minus znak apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,Not found -apps/frappe/frappe/www/printview.py +200,No {0} permission,Ne {0} dopuštenje +apps/frappe/frappe/www/printview.py +199,No {0} permission,Ne {0} dopuštenje apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,Izvoz Custom Dozvole DocType: Data Export,Fields Multicheck,Fields Multicheck DocType: Activity Log,Login,Prijava @@ -1207,7 +1243,7 @@ DocType: Web Form,Payments,Plaćanja apps/frappe/frappe/www/qrcode.html +9,Hi {0},Zdravo {0} DocType: System Settings,Enable Scheduled Jobs,Omogućite rasporedu radnih mjesta apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,Bilješke : -apps/frappe/frappe/www/message.html +65,Status: {0},Status: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},Status: {0} DocType: DocShare,Document Name,Dokument Ime apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Označi kao spam DocType: ToDo,Medium,Srednji @@ -1225,7 +1261,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},Naziv od {0} n apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Od datuma apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Uspješno apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},Povratne informacije Zahtjev za {0} se šalje na {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,sesija je istekla +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,sesija je istekla DocType: Kanban Board Column,Kanban Board Column,Kanban Board Kolona apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,Ravno reda tipke su lako pogoditi DocType: Communication,Phone No.,Telefonski broj @@ -1248,17 +1284,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},Ignorisani: {0} do {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,Prijavite se pogreške na automatiziranim događaja ( programer) . -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),Nevrijedi vrijednosti odvojene zarezima ( CSV datoteke ) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),Nevrijedi vrijednosti odvojene zarezima ( CSV datoteke ) DocType: Address,Postal,Poštanski DocType: Email Account,Default Incoming,Uobičajeno Incoming DocType: Workflow State,repeat,ponoviti DocType: Website Settings,Banner,Baner 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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Pomoć u pretraživanju -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,Registrovan ali sa invaliditetom +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,Registrovan ali sa invaliditetom DocType: DocType,Hide Copy,Sakrij kopiju apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,Poništi sve uloge -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} mora biti jedinstvena +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} mora biti jedinstvena apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,Red apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","CC, BCC i Email Template" DocType: Data Migration Mapping Detail,Local Fieldname,Lokalno ime polja @@ -1266,7 +1302,7 @@ DocType: User Permission,Linked Doctypes,Linked Doctypes DocType: DocType,Track Changes,Track Changes DocType: Workflow State,Check,Provjeriti DocType: Chat Profile,Offline,Offline -DocType: Razorpay Settings,API Key,API Key +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 +82,Edit Title,Uredi naslov apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,Instalirajte aplikacije @@ -1274,6 +1310,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Dokumenti dodijeljeni vama i oni koje ste vi dodijelili. DocType: User,Email Signature,E-mail potpis DocType: Website Settings,Google Analytics ID,Google Analytics ID +DocType: Web Form,"For help see Client Script API and Examples","Za pomoć pogledajte API Client Script API i Primeri" DocType: Website Theme,Link to your Bootstrap theme,Link na Bootstrap temu DocType: Custom DocPerm,Delete,Izbrisati apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},Novi {0} @@ -1283,10 +1320,10 @@ DocType: Print Settings,PDF Page Size,PDF Page Size DocType: Data Import,Attach file for Import,Priložite datoteku za uvoz DocType: Communication,Recipient Unsubscribed,Primalac Odjavljene DocType: Feedback Request,Is Sent,se šalje -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,O nama +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,O nama apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.","Za ažuriranje, možete ažurirati samo selektivne kolone." DocType: Chat Token,Country,Zemlja -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,Adrese +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,Adrese DocType: Communication,Shared,Zajednička apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,Priložiti ispis dokumenta DocType: Bulk Update,Field,polje @@ -1297,12 +1334,12 @@ DocType: Chat Message,URLs,URL-ovi DocType: Data Migration Run,Total Pages,Ukupno stranica DocType: DocField,Attach Image,Priložiti slike DocType: Workflow State,list-alt,popis-alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,Lozinka je ažurirana +apps/frappe/frappe/www/update-password.html +79,Password Updated,Lozinka je ažurirana apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,Koraci za potvrđivanje vašeg prijavljivanja apps/frappe/frappe/utils/password.py +50,Password not found,Password nije pronađen DocType: Data Migration Mapping,Page Length,Dužina stranice DocType: Email Queue,Expose Recipients,izložiti primatelja -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,Doda je obavezno za dolazne mailove +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,Doda je obavezno za dolazne mailove DocType: Contact,Salutation,Pozdrav DocType: Communication,Rejected,Odbijen apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,Uklonite oznaku @@ -1313,14 +1350,14 @@ DocType: User,Set New Password,Postavite novu lozinku apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},"Podataka, Naziv Polja {0} se pojavljuje više puta u redovima {1}" -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} od {1} na {2} u nizu # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},"Podataka, Naziv Polja {0} se pojavljuje više puta u redovima {1}" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{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 +32,Seems token you are using is invalid!,Izgleda da token koji koristite je nevažeći! DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Broj kolona za polje u Grid (Ukupno kolone u mrežu treba biti manji od 11) DocType: DocType,System,Sustav DocType: Web Form,Max Attachment Size (in MB),Max Prilog Veličina (u MB) -apps/frappe/frappe/www/login.html +75,Have an account? Login,Imate račun? Prijavi se +apps/frappe/frappe/www/login.html +76,Have an account? Login,Imate račun? Prijavi se apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Nepoznato Ispis Format: {0} DocType: Workflow State,arrow-down,Strelica prema dole apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} @@ -1332,30 +1369,30 @@ DocType: Help Article,Likes,Like DocType: Website Settings,Top Bar,Najbolje Bar DocType: GSuite Settings,Script Code,Script koda apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,Stvoriti korisnika E-mail -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,No Dozvole navedeno +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,No Dozvole navedeno apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} nije pronađen DocType: Custom Role,Custom Role,Custom Uloga apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Početna / Test Folder 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,Sačuvajte dokument upload. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,Unesite lozinku +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,Unesite lozinku DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup DocType: Social Login Key,Social Login Provider,Socijalni Login Provider apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Dodali još jedan komentar -apps/frappe/frappe/core/doctype/data_import/importer.py +81,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. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,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. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,Uredi DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,Odjavljeni iz Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,Fold mora doći pred Odjelom Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,Fold mora doći pred Odjelom Break apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,U razvoju apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,Idite na dokument apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,Zadnja izmjena Do apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,Ponovno podešavanje prilagođavanja DocType: Workflow State,hand-down,ruka-dole DocType: Address,GST State,PDV država -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0} : Ne mozemo Odustati prije nego potvrdimo +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0} : Ne mozemo Odustati prije nego potvrdimo DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Preusmjeriti URI Bound To Auth kod DocType: DocType,Is Submittable,Je Submittable -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,Nova Mention +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,Nova Mention apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Vrijednost za kontrola polja može biti 0 ili 1. apps/frappe/frappe/model/document.py +733,Could not find {0},Ne mogu pronaći {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,Kolona Labels: @@ -1375,7 +1412,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,Grupa DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select target = "" _blank "" za otvaranje u novoj stranici." apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,Veličina baze podataka: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,Trajno brisanje {0} ? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,Trajno brisanje {0} ? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,Sve file već priključen na zapisnik apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} nije važeća radno stanje. Ažurirajte svoj tok posla i pokušajte ponovo. DocType: Workflow State,wrench,Ključ @@ -1389,27 +1426,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Dodaj komentar DocType: DocField,Mandatory,Obavezan apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul za izvoz -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0} : nisu podesena osnovna prava pristupa +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0} : nisu podesena osnovna prava pristupa apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,Vaša pretplata ističe na {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},Preuzmite link za backup će biti poslana na sljedeće e-mail adresu: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Značenje Podnijeti, Odustani, Izmijeniti" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,To Do DocType: Test Runner,Module Path,modul Path DocType: Social Login Key,Identity Details,Detalji o identitetu +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),Zatim Do (opcionalno) DocType: File,Preview HTML,Pregled HTML DocType: Desktop Icon,query-report,upit-izvještaj -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Dodijeljeno {0}: {1} DocType: DocField,Percent,Postotak apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,Povezan s apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,Izmenite podešavanja automatskog izveštavanja o e-pošti DocType: Chat Room,Message Count,Broj poruka DocType: Workflow State,book,knjiga +DocType: Communication,Read by Recipient,Pročitajte Recipient DocType: Website Settings,Landing Page,Odredišna stranica apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Greška u Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} Ime apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,Nema dozvole postavljen za ove kriterije. DocType: Auto Email Report,Auto Email Report,Auto-mail Report -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,Izbriši komentar? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,Izbriši komentar? DocType: Address Template,This format is used if country specific format is not found,Ovaj format se koristi ako država specifičan format nije pronađena DocType: System Settings,Allow Login using Mobile Number,Dozvolite Prijava koristeći Broj mobilnog apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,Nemate dovoljno dozvolu da pristupite ovoj resurs. Molimo Vas da kontaktirate svog menadžera da biste dobili pristup. @@ -1426,7 +1464,7 @@ DocType: Letter Head,Printing,Štampanje DocType: Workflow State,thumbs-up,palac gore DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fontovi -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,Precision treba biti između 1 i 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,Precision treba biti između 1 i 6 apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,i apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},Ovaj izveštaj je generisan na {0} @@ -1438,16 +1476,16 @@ DocType: Auto Email Report,Report Filters,izvještaj Filteri apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,sad DocType: Workflow State,step-backward,korak unatrag apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{ Naslov_aplikacije } -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,Molimo postaviti Dropbox pristupnih tipki u vašem web config +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,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 +16,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 apps/frappe/frappe/core/doctype/data_import/exporter.py +67,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/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,Nije moguće ažurirati događaja -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,plaćanje Kompletna +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,Nije moguće ažurirati događaja +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,plaćanje Kompletna apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,Verifikacioni kod je upućen na vašu registrovanu adresu e-pošte. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,Lagano -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter mora imati 4 vrijednosti (doctype, Naziv Polja, operater, vrijednost): {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,Lagano +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter mora imati 4 vrijednosti (doctype, Naziv Polja, operater, vrijednost): {0}" apps/frappe/frappe/utils/bot.py +89,show,pokazati -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},Nevažeće ime polja {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},Nevažeće ime polja {0} DocType: Address Template,Address Template,Predložak adrese DocType: Workflow State,text-height,tekst-visina DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapiranje plana prenosa podataka @@ -1457,13 +1495,14 @@ DocType: Workflow State,map-marker,Karta marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Slanje problem DocType: Event,Repeat this Event,Ponovite ovaj događaj DocType: Address,Maintenance User,Održavanje korisnika +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,sortiranje Preferences apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,Izbjegavajte datumi i godine koji su povezani sa vama. DocType: Custom DocPerm,Amend,Ispraviti DocType: Data Import,Generated File,Generisani fajl DocType: Transaction Log,Previous Hash,Prethodni Hash DocType: File,Is Attachments Folder,Prilozi je Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,Raširi sve -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,Izaberite ćaskanje da biste započeli razmenu poruka. +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,Izaberite ćaskanje da biste započeli razmenu poruka. apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,Molimo prvo izaberite Entity Type apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,Uredan Prijava id potrebna. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,Odaberite valjanu CSV datoteku s podacima @@ -1476,26 +1515,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,Zapis ne postoji apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Original vrijednost DocType: Help Category,Help Category,Pomoć Kategorija apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,Korisnik {0} je onemogućen -apps/frappe/frappe/www/404.html +20,Page missing or moved,Page nedostaju ili preselili +apps/frappe/frappe/www/404.html +21,Page missing or moved,Page nedostaju ili preselili DocType: DocType,Route,ruta apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay postavke Payment Gateway +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,Izvadite slike iz dokumenta DocType: Chat Room,Name,Ime DocType: Contact Us Settings,Skype,Skype apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,Premašili ste maksimalan prostor od {0} za svoj plan. {1}. DocType: Chat Profile,Notification Tones,Tonovi obaveštenja -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Pretražite docs +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,Pretražite docs DocType: OAuth Authorization Code,Valid,Validan apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,Tvoj jezik apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,Dodaj Row DocType: Tag Category,Doctypes,Doctype -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,Upit mora biti SELECT -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,Molimo priložite datoteku za uvoz -DocType: Auto Repeat,Completed,Dovršen +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,Upit mora biti SELECT +DocType: Prepared Report,Completed,Dovršen DocType: File,Is Private,Je privatna DocType: Data Export,Select DocType,Odaberite DocType apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,Veličina datoteke prelazi najveću dopuštenu veličinu od {0} MB -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,Kreirano +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,Kreirano DocType: Workflow State,align-center,poravnanje-centar DocType: Feedback Request,Is Feedback request triggered manually ?,Povratna zahtjev pokrenuti ručno? DocType: Address,Lakshadweep Islands,Lakshadweep otoci @@ -1503,7 +1542,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Određeni dokumenti , poput fakturu , ne treba mijenjati jednom finalu . Konačno stanje za takve dokumente se zove Postavio . Možete ograničiti koje uloge mogu podnijeti ." DocType: Newsletter,Test Email Address,Test-mail adresa DocType: ToDo,Sender,Pošiljaoc -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,Greška prilikom ocenjivanja obaveštenja {0}. Popravite svoj šablon. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,Greška prilikom ocenjivanja obaveštenja {0}. Popravite svoj šablon. DocType: GSuite Settings,Google Apps Script,Google Apps Script apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Ostavite komentar DocType: Web Page,Description for search engine optimization.,Opis za optimizaciju tražilice. @@ -1513,7 +1552,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,Ček DocType: System Settings,Allow only one session per user,Dopustite samo jedna sjednica po korisniku apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Početna / Test Folder 1 / Test Folder 3 DocType: Website Settings,<head> HTML,<head> HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,Odaberite ili povucite preko minutaže stvoriti novi događaj. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,Odaberite ili povucite preko minutaže stvoriti novi događaj. DocType: DocField,In Filter,U filtru apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Pokaži u modul točki @@ -1525,17 +1564,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",Stranica pokazati na web stranici DocType: Note,Seen By Table,Vidi Tablica -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,Odaberi izgled +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,Odaberi izgled apps/frappe/frappe/www/third_party_apps.html +47,Logged in,Evidentirano u apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,Pogrešan userid ili lozinka apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,istražiti apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Uobičajeno Slanje i Inbox DocType: System Settings,OTP App,OTP App +DocType: Dropbox Settings,Send Email for Successful Backup,Pošaljite e-poštu za uspješnu rezervnu kopiju apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokument ID DocType: Print Settings,Letter,Pismo -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,polje Slika mora biti tipa Priloži sliku +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,polje Slika mora biti tipa Priloži sliku DocType: DocField,Columns,kolumne -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,Deljeno sa korisnikom {0} sa pristupom za čitanje +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,Deljeno sa korisnikom {0} sa pristupom za čitanje DocType: Async Task,Succeeded,Slijedi apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},Obavezna polja potrebni u {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,Reset dopuštenja za {0} ? @@ -1553,14 +1593,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,poravnanje-lijevo DocType: User,Defaults,Zadani DocType: Feedback Request,Feedback Submitted,povratne informacije Postavio -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,Merge sa postojećim +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,Merge sa postojećim DocType: User,Birth Date,Datum rođenja DocType: Dynamic Link,Link Title,link Naslov DocType: Workflow State,fast-backward,brzo nazad DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,Petak -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,Uredi u punom stranici +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,Uredi u punom stranici DocType: Report,Add Total Row,Dodaj ukupno redaka apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,Provjerite svoju registrovanu adresu e-pošte za uputstva o tome kako nastaviti. Ne zatvorite ovaj prozor jer ćete se morati vratiti na njega. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,"Na primjer, ako se otkaz i dopune INV004 će postati novi dokument INV004-1. To će Vam pomoći da pratite svakog amandmana." @@ -1582,11 +1622,10 @@ DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent","1 = Valuta [?] Frakcija Za npr 1 USD = 100 Cent" DocType: Data Import,Partially Successful,Delimično uspješno -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Previše mnogi korisnici potpisali nedavno, tako da je registracija je onemogućen. Molimo Vas da pokušate vratiti za sat vremena" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Previše mnogi korisnici potpisali nedavno, tako da je registracija je onemogućen. Molimo Vas da pokušate vratiti za sat vremena" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,Dodaj novo pravilo za dozvole korisnicima apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Možete koristiti zamjenski% DocType: Chat Message Attachment,Chat Message Attachment,Prilog za ćaskanje -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Molimo da podesite podrazumevani nalog e-pošte iz Setup-a> E-pošta> E-poštni nalog apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Samo slike ekstenzije (.gif, .jpg, .jpeg, .tiff, .png, .svg) dozvoljeno" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,Database Engine @@ -1607,7 +1646,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,Podružnica DocType: System Settings,In Hours,U sati apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,S zaglavljem -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,Nevažeći server odlazne pošte ili port +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,Nevažeći server odlazne pošte ili port DocType: Custom DocPerm,Write,Pisati apps/frappe/frappe/core/doctype/report/report.py +37,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 +13,Updating,Ažuriranje @@ -1616,28 +1655,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i 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 +13,Import Email From,Uvoz e-mail od apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,Pozovi kao korisnika -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,Naslovna adresa je obavezna +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,Naslovna adresa je obavezna DocType: Data Migration Run,Started,Počelo +DocType: Data Migration Run,End Time,End Time apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,Odaberite priloge apps/frappe/frappe/model/naming.py +113, for {0},za {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,Bilo je grešaka. Molimo prijavite ovo. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,Bilo je grešaka. Molimo prijavite ovo. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,Nije Vam dopušteno ispisati ovaj dokument apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},Trenutno ažuriranje {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,Molimo podesite filteri vrijednost u Izvještaju Filter tabeli. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,Učitavanje izvješće +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,Molimo podesite filteri vrijednost u Izvještaju Filter tabeli. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,Učitavanje izvješće apps/frappe/frappe/limits.py +74,Your subscription will expire today.,Vaša pretplata ističe danas. DocType: Page,Standard,Standard -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Priloži datoteke +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,Priloži datoteke +DocType: Data Migration Plan,Preprocess Method,Preprocesna metoda apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Veličina apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Dodjela Kompletna DocType: Desktop Icon,Idx,idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

Nema pronađenih rezultata za '

DocType: Address,Madhya Pradesh,Madhya Pradesh DocType: Deleted Document,New Name,Novo ime DocType: System Settings,Is First Startup,Je prvi start DocType: Communication,Email Status,E-mail Status apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,Sačuvajte dokument prije uklanjanja zadatak apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,Insert Iznad -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,Komentar može biti uređen samo od strane vlasnika +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,Komentar može biti uređen samo od strane vlasnika DocType: Data Import,Do not send Emails,Nemojte poslati e-poštu apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,Zajednički imena i prezimena su lako pogoditi. DocType: Auto Repeat,Draft,Nepotvrđeno @@ -1649,14 +1691,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,Opozovi DocType: Contact,Replied,Odgovorio DocType: Newsletter,Test,Test DocType: Custom Field,Default Value,Zadana vrijednost -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,Provjeriti +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,Provjeriti DocType: Workflow Document State,Update Field,Update Field DocType: Chat Profile,Enable Chat,Omogući ćaskanje DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,Ostavite ovaj razgovor -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},Opcije nije postavljen za link polju {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},Opcije nije postavljen za link polju {0} DocType: Customize Form,"Must be of type ""Attach Image""",Mora biti tipa "Attach Image" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,Odznačite sve +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,Odznačite sve apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},Ne možete nevezanog "Samo za čitanje" za oblast {0} DocType: Auto Email Report,Zero means send records updated at anytime,Nula znači poslati evidencije ažuriran bilo kada apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,kompletan Setup @@ -1672,7 +1714,7 @@ DocType: Social Login Key,Google,Google DocType: Email Domain,Example Email Address,Primjer e-mail adresa apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,najviše koristi apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,Odjava sa Newsletter -apps/frappe/frappe/www/login.html +83,Forgot Password,Zaboravili ste lozinku +apps/frappe/frappe/www/login.html +84,Forgot Password,Zaboravili ste lozinku DocType: Dropbox Settings,Backup Frequency,backup Frequency DocType: Workflow State,Inverse,Inverzan DocType: DocField,User permissions should not apply for this Link,Ovlaštenja korisnika ne bi trebao podnijeti zahtjev za ovaj link @@ -1689,6 +1731,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Popis tema apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,uspješno ažurirana DocType: Activity Log,Logout,Odjava apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,Dozvole na višim nivoima su dozvole jednake. Sva polja imaju dozvolu Level set protiv njih i pravila definiran u to dozvole odnose na terenu. Ovo je korisno u slučaju da želite da se sakrije ili napraviti određene polje samo za čitanje za određene uloge. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Podešavanje> Prilagodi obrazac DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Unesite statičke parametre URL ovdje (npr. pošiljatelj = ERPNext, username = ERPNext, lozinkom = 1234 itd.)" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Ako ove upute gdje nije korisno , dodajte u svojim prijedlozima o GitHub pitanja ." DocType: Workflow State,bookmark,bookmark @@ -1700,12 +1743,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,Apl apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} već postoji. Izaberite drugo ime apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,Povratne informacije uslovi ne odgovaraju DocType: S3 Backup Settings,None,Ništa -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,Timeline polje mora biti valjan Naziv Polja +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,Timeline polje mora biti valjan Naziv Polja DocType: GCalendar Account,Session Token,Tok sesije DocType: Currency,Symbol,Simbol -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,Nova lozinka je poslana mailom -apps/frappe/frappe/auth.py +272,Login not allowed at this time,Prijava nije dopuštena u ovom trenutku +apps/frappe/frappe/auth.py +286,Login not allowed at this time,Prijava nije dopuštena u ovom trenutku DocType: Data Migration Run,Current Mapping Action,Aktuelna akcija mapiranja DocType: Email Account,Email Sync Option,E-mail Sync Opcija apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,Red broj @@ -1721,12 +1764,12 @@ DocType: Address,Fax,Fax apps/frappe/frappe/config/setup.py +263,Custom Tags,Custom Tagovi DocType: Communication,Submitted,Potvrđeno DocType: System Settings,Email Footer Address,E-mail adresa Footer -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,Tabela ažurira +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,Tabela ažurira DocType: Activity Log,Timeline DocType,Timeline DocType DocType: DocField,Text,Tekst apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Uobičajeno Slanje DocType: Workflow State,volume-off,volumen-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},Vole {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},Vole {0} DocType: Footer Item,Footer Item,footer Stavka ,Download Backups,Download Backup apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Početna / Test Mapa1 @@ -1734,7 +1777,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me,D DocType: DocField,Dynamic Link,Dinamička poveznica apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,Za datum apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Pokaži nije posao -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,Detalji +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,Detalji DocType: Property Setter,DocType or Field,Vrsta dokumenta ili polje DocType: Communication,Soft-Bounced,Soft-odbijeno DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Ako je omogućeno, svi korisnici mogu se prijaviti sa bilo koje IP adrese pomoću Two Factor Auth. Ovo takođe može biti podešeno samo za određene korisnike (e) na Korisničkoj strani" @@ -1745,7 +1788,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,E-mail je preselio u smece DocType: Report,Report Builder,Generator izvjestaja DocType: Async Task,Task Name,Task Name -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","Vaša sesija je istekla, prijavite se ponovo za nastavak." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","Vaša sesija je istekla, prijavite se ponovo za nastavak." DocType: Communication,Workflow,Hodogram DocType: Website Settings,Welcome Message,Dobrodošlica DocType: Webhook,Webhook Headers,Webhook Headers @@ -1762,10 +1805,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,Štampanje dokumenata DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Pokaži sve podatke -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" apps/frappe/frappe/config/core.py +7,Documents,Dokumenti DocType: Social Login Key,Custom Base URL,Prilagođeni bazni URL DocType: Email Flag Queue,Is Completed,je završen +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,Get Fields apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} vas je pomenuo u komentaru apps/frappe/frappe/www/me.html +22,Edit Profile,Uredi profil DocType: Kanban Board Column,Archived,Arhivirani @@ -1775,17 +1819,18 @@ myfield 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/form/controls/date.js +49,Today,danas +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,danas apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"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: Error Log,Log of Scheduler Errors,Dnevnik Scheduler Errors DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Klijent Secret apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Podnošenje +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,Roditelj je naziv dokumenta kojem će se podaci dodati. apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,Pokaži Likes DocType: DocType,UPPER CASE,VELIKA SLOVA apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,Unesite ime foldera -apps/frappe/frappe/auth.py +228,Unknown User,Nepoznati korisnik +apps/frappe/frappe/auth.py +233,Unknown User,Nepoznati korisnik apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,Odaberite ulogu DocType: Communication,Deleted,Deleted DocType: Workflow State,adjust,Prilagodi @@ -1807,21 +1852,21 @@ DocType: Data Migration Connector,Database Name,Ime baze podataka apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Refresh obrazac DocType: DocField,Select,Odaberi apps/frappe/frappe/utils/csvutils.py +29,File not attached,File nije priključen -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,Izgubljena konekcija. Neke funkcije možda neće raditi. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,Izgubljena konekcija. Neke funkcije možda neće raditi. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess",Ponavlja kao "AAA" su lako pogoditi -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,Novi Chat +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,Novi Chat DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ako postavite ovo , ova stavka će doći u padajućem okviru odabranog roditelja ." DocType: Print Format,Show Section Headings,Pokaži Naslovi DocType: Bulk Update,Limit,granica -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},Ne predložak naći na putu: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,Odjavljivanje iz svih sesija +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,Dodajte novi odeljak +apps/frappe/frappe/www/printview.py +225,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 +168,No Email Account,Bez e-pošte DocType: Communication,Cancelled,Otkazano DocType: Chat Room,Avatar,Avatar DocType: Blogger,Posts,Postovi DocType: Social Login Key,Salesforce,Salesforce DocType: DocType,Has Web View,Ima Web View -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ime DocType treba počinjati slovom i može se sastojati samo od slova, brojeva, prostora i donje crte" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ime DocType treba počinjati slovom i može se sastojati samo od slova, brojeva, prostora i donje crte" DocType: Communication,Spam,Neželjena pošta DocType: Integration Request,Integration Request,integracija Upit apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,Poštovani @@ -1837,16 +1882,18 @@ DocType: Communication,Assigned,Dodijeljeno DocType: Print Format,Js,Js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,Odaberite format ispisa apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,obrasci Kratki tastatura je lako pogoditi +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,Generiši novi izveštaj DocType: Portal Settings,Portal Menu,portal Menu apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,Dužina {0} treba biti između 1 i 1000 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Pretraga za sve +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,Pretraga za sve DocType: Data Migration Connector,Hostname,Ime hosta DocType: Data Migration Mapping,Condition Detail,Detalji detalja apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}","Za valutu {0}, minimalna transakcija iznosi {1}" DocType: DocField,Print Hide,Ispis Sakrij -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Unesite vrijednost +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,Unesite vrijednost DocType: Workflow State,tint,nijansa DocType: Web Page,Style,Stil +DocType: Prepared Report,Report End Time,Prijaviti vreme završetka apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,npr: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} komentari apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,Verzija Ažurirano @@ -1859,10 +1906,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,Prebacite grafikone DocType: Website Settings,Sub-domain provided by erpnext.com,Pod-domene pruža erpnext.com apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,Podešavanje vašeg sistema +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,Potomci Of DocType: System Settings,dd-mm-yyyy,dd-mm-gggg -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,Mora imati dozvolu za pristup ovom izvještaju. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,Mora imati dozvolu za pristup ovom izvještaju. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,Molimo odaberite Minimum Password Score -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,Dodano +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,Dodano apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,Prijavili ste se za jedan besplatni plan DocType: Auto Repeat,Half-yearly,Polugodišnje apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,"Dnevni događaji Digest je poslan za kalendar događanja, gdje su postavljene podsjetnici." @@ -1873,7 +1921,7 @@ DocType: Workflow State,remove,Ukloniti DocType: Email Domain,If non standard port (e.g. 587),Ako ne standardni ulaz (npr. 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,Učitaj ponovo apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,Dodajte svoj Tag Kategorije -apps/frappe/frappe/desk/query_report.py +227,Total,Ukupno +apps/frappe/frappe/desk/query_report.py +312,Total,Ukupno DocType: Event,Participants,Sudionici DocType: Integration Request,Reference DocName,Referentna DocName DocType: Web Form,Success Message,Uspjeh Poruka @@ -1887,7 +1935,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,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/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji , odaberite novu metu za spajanje" -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",Rezultati pretraživanja za "{0}" DocType: Data Migration Connector,Python Module,Python Module DocType: GSuite Settings,Google Credentials,Google akreditiva apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,QR kod za verifikaciju prijave @@ -1896,8 +1943,8 @@ DocType: Footer Item,Company,Preduzeće apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Dodijeljeno meni apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Google GSuite Obrasci za integraciju sa Doctype DocType: User,Logout from all devices while changing Password,Odjavite se sa svih uređaja dok menjate lozinku -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,Provjerite lozinku -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Bilo je grešaka +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,Provjerite lozinku +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,Bilo je grešaka apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Zatvoriti apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,Ne možete mijenjati docstatus 0-2 DocType: File,Attached To Field,Priloženo u polje @@ -1907,7 +1954,7 @@ DocType: Transaction Log,Transaction Hash,Transaction Hash DocType: Error Snapshot,Snapshot View,Snapshot Pogledaj apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Konfigurisanje naloga za google kalendar -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},Opcije mora bitivaljana DOCTYPE za polje {0} je u redu {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},Opcije mora bitivaljana DOCTYPE za polje {0} je u redu {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Uredi osobine DocType: Patch Log,List of patches executed,Lista zakrpa pogubljeni apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} već odjavljeni @@ -1926,8 +1973,8 @@ DocType: Data Migration Connector,Authentication Credentials,Autentifikacijski a DocType: Role,Two Factor Authentication,Dva faktorska autentikacija apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,Platiti DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL -apps/frappe/frappe/model/base_document.py +508,"{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/utils/data.py +638,{0} or {1},{0} {1} ili +apps/frappe/frappe/model/base_document.py +517,"{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/utils/data.py +640,{0} or {1},{0} {1} ili apps/frappe/frappe/core/doctype/user/user.py +250,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 @@ -1943,16 +1990,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,Relaps apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Stavka ne može se dodati u svojim potomcima DocType: System Settings,Expiry time of QR Code Image Page,Vreme isteka QR kodne stranice -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,Pokaži Ukupni rezultat +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,Pokaži Ukupni rezultat DocType: Error Snapshot,Relapses,Recidiva DocType: Address,Preferred Shipping Address,Željena Dostava Adresa -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,Sa glavom Pismo +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,Sa glavom Pismo apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},Kreirao {0} {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 +38,Document is only editable by users of role,Dokument može uređivati samo korisnik -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.","Zadatak {0}, koji ste dodijelili {1}, je zatvorio /la {2}." +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.","Zadatak {0}, koji ste dodijelili {1}, je zatvorio /la {2}." DocType: Print Format,Show Line Breaks after Sections,Pokaži Line Breaks nakon Sekcije +DocType: Communication,Read by Recipient On,Pročitajte Recipient On DocType: Blogger,Short Name,Kratki naziv -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},Strana {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},Strana {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},Povezan sa {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1979,20 +2028,20 @@ DocType: Communication,Feedback,Povratna veza apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,Otvorite prevod apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,Ovaj e-mail je autogenerisan DocType: Workflow State,Icon will appear on the button,Ikona će se pojaviti na dugmetu -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Socketio nije povezan. Ne mogu da otpremim +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Socketio nije povezan. Ne mogu da otpremim DocType: Website Settings,Website Settings,Website Postavke apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,Mjesec DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} za slanje referentni dokument DocType: DocField,Fetch From,Fetch From apps/frappe/frappe/modules/utils.py +205,App not found,App nije pronađena -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Ne možete kreirati {0} prema djetetu dokument: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},Ne možete kreirati {0} prema djetetu dokument: {1} DocType: Social Login Key,Social Login Key,Ključ društvene prijave DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,Olovka apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat poruke i druga obavjestenja. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},Ubacite Nakon ne može se postaviti kao {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Podijelio {0} sa -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,E-mail postavljanje računa molimo unesite lozinku za: +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,E-mail postavljanje računa molimo unesite lozinku za: DocType: Workflow State,hand-up,ruka-gore DocType: Blog Settings,Writers Introduction,Pisci Uvod DocType: Address,Phone,Telefon @@ -2000,18 +2049,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,Pasiva DocType: Contact,Accounts Manager,Računi Manager apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Vaša uplata je otkazan. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,Select File Type +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,Select File Type apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,Vidi sve DocType: Help Article,Knowledge Base Editor,Baza znanja Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stranica nije pronađena DocType: DocField,Precision,Preciznost DocType: Website Slideshow,Slideshow Items,Slideshow artikala apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,Pokušati izbjeći ponovio riječi i slova -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,Postoje neuspesi pokrenuti sa istim Planom za migraciju podataka DocType: Event,Groups,Grupe DocType: Workflow Action,Workflow State,Workflow država apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,redovi Dodano -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,Uspjeh! Vi ste dobri da idu 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,Uspjeh! Vi ste dobri da idu 👍 apps/frappe/frappe/www/me.html +3,My Account,Moj račun DocType: ToDo,Allocated To,Dodijeljena apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,Molimo kliknite na sljedeći link i postaviti novu lozinku @@ -2019,36 +2067,39 @@ DocType: Notification,Days After,Nakon dana DocType: Newsletter,Receipient,Receipient DocType: Contact Us Settings,Settings for Contact Us Page,Postavke za Kontakt stranicu DocType: Custom Script,Script Type,Skripta Tip +DocType: Print Settings,Enable Print Server,Omogući Server za štampanje apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,prije {0} nedjelja DocType: Auto Repeat,Auto Repeat Schedule,Auto Repeat raspored DocType: Email Account,Footer,Footer apps/frappe/frappe/config/integrations.py +48,Authentication,autentifikaciju apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,Invalid Link +DocType: Web Form,Client Script,Client Script DocType: Web Page,Show Title,Naslov show DocType: Chat Message,Direct,Direktno DocType: Property Setter,Property Type,Vrsta nekretnine DocType: Workflow State,screenshot,slika ekrana apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Samo administrator može uštedjeti standardne izvješće. Molimo preimenovati i spasiti. DocType: System Settings,Background Workers,Pozadina Radnici -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,FIELDNAME {0} u sukobu sa meta objekta +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,FIELDNAME {0} u sukobu sa meta objekta DocType: Deleted Document,Data,Podaci apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokument Status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Napravili ste {0} od {1} DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth kod autorizacije -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,Nije dopušteno uvoziti +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,Nije dopušteno uvoziti DocType: Deleted Document,Deleted DocType,Deleted DocType apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Razine dozvola DocType: Workflow State,Warning,Upozorenje DocType: Data Migration Run,Percent Complete,Percent Complete DocType: Tag Category,Tag Category,Tag Kategorija -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","Ignoriranje Stavka {0} , jer jegrupa postoji s istim imenom !" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,Pomoć +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","Ignoriranje Stavka {0} , jer jegrupa postoji s istim imenom !" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,Pomoć DocType: User,Login Before,Prijavite Prije DocType: Web Page,Insert Style,Umetnite stil apps/frappe/frappe/config/setup.py +276,Application Installer,Application Installer -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,Izvještaj ime +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,Izvještaj ime +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,Sakrij vikende DocType: Workflow State,info-sign,info-znak -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Vrijednost za {0} ne može biti lista +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,Vrijednost za {0} ne može biti lista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi ova valuta morala biti formatirana? Ako nije postavljeno, koristit će zadane postavke sustava" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,Pošalji {0} dokumente? apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,Morate biti prijavljeni i imati sustav Manager ulogu da bi mogli pristupiti sigurnosne kopije . @@ -2059,6 +2110,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,Prava pristupa DocType: Help Article,Intermediate,srednji apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Otkazan dokument je obnovljen kao Nacrt +DocType: Data Migration Run,Start Time,Start Time apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Ne može se izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4} apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Može čitati apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} Tabela @@ -2069,6 +2121,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Mogu dijeliti apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Pogrešna adresa primatelja DocType: Workflow State,step-forward,korak naprijed +DocType: System Settings,Allow Login After Fail,Dozvoli prijavu nakon neuspjeha apps/frappe/frappe/limits.py +69,Your subscription has expired.,Vaša pretplata je istekla. DocType: Role Permission for Page and Report,Set Role For,Set Uloga DocType: GCalendar Account,The name that will appear in Google Calendar,Ime koje će se pojaviti u Google kalendaru @@ -2077,7 +2130,7 @@ DocType: Event,Starts on,Počinje na DocType: System Settings,System Settings,Postavke sustava DocType: GCalendar Settings,Google API Credentials,Google API akreditivi apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,Session Start nije uspjelo -apps/frappe/frappe/email/queue.py +499,This email was sent to {0} and copied to {1},Ova e-mail je poslan {0} i kopirati u {1} +apps/frappe/frappe/email/queue.py +511,This email was sent to {0} and copied to {1},Ova e-mail je poslan {0} i kopirati u {1} DocType: Workflow State,th,og DocType: Social Login Key,Provider Name,Ime provajdera apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},Stvaranje nove {0} @@ -2091,35 +2144,38 @@ DocType: System Settings,Choose authentication method to be used by all users,Iz apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Potreban je doktip DocType: Workflow State,ok-sign,ok-prijava apps/frappe/frappe/config/setup.py +146,Deleted Documents,izbrisan Dokumenti -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,CSV format je osjetljiv na slovo +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,CSV format je osjetljiv na slovo apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,Desktop Ikona već postoji apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,Duplikat DocType: Newsletter,Create and Send Newsletters,Kreiranje i slanje newsletter -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,Od datuma mora biti prije do danas +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,Od datuma mora biti prije do danas DocType: Address,Andaman and Nicobar Islands,Andaman i Nicobar Islands -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,GSuite Dokument -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,Navedite što vrijednost polja moraju biti provjereni +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,GSuite Dokument +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,Navedite što vrijednost polja moraju biti provjereni apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Parent"" označava parent tabelu u kojoj se red mora dodati" apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Ne možete poslati ovu e-poruku. Prelazili ste ograničenje slanja e-poruka {0} za ovaj dan. DocType: Website Theme,Apply Style,Primijeni stil DocType: Feedback Request,Feedback Rating,povratne informacije Rejting apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Podijeljeno sa +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,Priložite datoteke / urls i dodajte u tablicu. DocType: Help Category,Help Articles,Članci pomoći apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Tip: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Vaša uplata nije uspjela. DocType: Communication,Unshared,nedjeljiv DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nije pronađen -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} je podešeno na stanje {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} je podešeno na stanje {2} DocType: User,Location,Lokacija ,Permitted Documents For User,Dopuštene Dokumenti za korisničke apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Morate imati ""Share"" dozvolu" DocType: Communication,Assignment Completed,Dodjela Završena -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},Bulk Edit {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},Bulk Edit {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,Preuzmi izveštaj apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Ne aktivna DocType: About Us Settings,Settings for the About Us Page,Postavke za O nama Page apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,Traka postavke payment gateway DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,npr pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,Generiši ključeve apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Koristite polje za filtriranje zapisa DocType: DocType,View Settings,Postavke prikaza DocType: Email Account,Outlook.com,Outlook.com @@ -2129,12 +2185,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,Pošaljite mi kopiju Outgoing emails-a DocType: System Settings,Scheduler Last Event,Planer zadnjoj utrci DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Dodaj Google Analytics ID: npr: UA-89XXX57-1. Molimo potražite pomoć na Google Analytics za više informacija. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,Lozinka ne može biti duži od 100 znakova +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,Lozinka ne može biti duži od 100 znakova DocType: OAuth Client,App Client ID,App ID klijenta DocType: Kanban Board,Kanban Board Name,Kanban odbor Ime DocType: Notification Recipient,"Expression, Optional","Expression, fakultativno" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopirajte i zalijepite ovaj kod u i praznih Code.gs u svoj projekt na script.google.com -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},Ova e-mail je poslan {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},Ova e-mail je poslan {0} DocType: System Settings,Hide footer in auto email reports,Sakrij podnožje u automatskim izveštajima e-pošte DocType: DocField,Remember Last Selected Value,Ne zaboravite Zadnje izabranu vrednost DocType: Email Account,Check this to pull emails from your mailbox,Provjerite to povući e-pošte iz poštanskog sandučića @@ -2150,15 +2206,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",Rezultati dokumentacije za "{0}" DocType: Workflow State,envelope,omotnica apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opcija 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,Štampanje nije uspelo DocType: Feedback Trigger,Email Field,E-mail polje -apps/frappe/frappe/www/update-password.html +68,New Password Required.,New Password Potrebna. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,New Password Potrebna. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} je podijelio/la ovaj dokument sa {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,Dodajte svoju recenziju +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,Dodajte svoju recenziju DocType: Website Settings,Brand Image,imidž brenda DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Postavljanje gornjoj navigacijskoj traci, podnožje i logo." DocType: Web Form Field,Max Value,Max vrijednost -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},Za {0} na razini {1} u {2} u redu {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},Za {0} na razini {1} u {2} u redu {3} DocType: User Social Login,User Social Login,Korisnički socijalni login DocType: Contact,All,Sve DocType: Email Queue,Recipient,Primalac @@ -2167,27 +2224,27 @@ DocType: Address,Sales User,Sales korisnika apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,Povucite i alatni za izgradnju i prilagodili Print formati. DocType: Address,Sikkim,Sikkim apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,Set -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,Ovaj stil upit je prekinuta +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,Ovaj stil upit je prekinuta DocType: Notification,Trigger Method,Trigger Način -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},Operator mora biti jedan od {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},Operator mora biti jedan od {0} DocType: Dropbox Settings,Dropbox Access Token,Dropbox Access Token DocType: Workflow State,align-right,poravnanje-desno DocType: Auto Email Report,Email To,E-mail Da apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,Folder {0} nije prazna DocType: Page,Roles,Uloge -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Greška: Vrijednost nedostaje za {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,Polje {0} se ne može odabrati . +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},Greška: Vrijednost nedostaje za {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,Polje {0} se ne može odabrati . DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,Sjednica isteka DocType: Workflow State,ban-circle,zabrana-krug apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,Slack Webhook greška DocType: Email Flag Queue,Unread,nepročitanu DocType: Auto Repeat,Desk,Pisaći sto -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),Filter mora biti tuple ili lista (na listi) +apps/frappe/frappe/utils/data.py +805,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 +8,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) DocType: Address,Arunachal Pradesh,Arunachal Pradesh -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,Setup Auto-mail +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Setup Auto-mail apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + Down DocType: Chat Profile,Message Preview,Pregled poruke apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,Ovo je top-10 zajedničkih lozinku. @@ -2210,7 +2267,7 @@ DocType: OAuth Client,Implicit,implicitan DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Dodavanje komunikacije protiv ovog DOCTYPE (mora imati polja, ""Status"", ""Subject"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI za prijem kod autorizacije jednom korisniku omogućava pristup, kao i odgovore neuspjeh. Obično je REST Endpoint izloženi od strane Klijenta App.
npr http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon dostavljanja +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon dostavljanja DocType: Data Migration Mapping,Migration ID Field,Polje ID migracije DocType: Communication,Comment Type,Komentar Type DocType: OAuth Client,OAuth Client,OAuth Klijent @@ -2222,6 +2279,7 @@ DocType: DocField,Signature,Potpis apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Podijeli sa apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,Utovar apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","Unesite tipke omogućiti prijavu putem Facebook , Google, GitHub ." +DocType: Data Import,Insert new records,Ubaci nove rekorde apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},Nije moguće čitati format za {0} DocType: Auto Email Report,Filter Data,filter podataka apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Molimo priložite datoteku prva. @@ -2238,7 +2296,7 @@ DocType: DocType,Title Case,Naslov slučaja DocType: Data Migration Run,Data Migration Run,Pokretanje podataka DocType: Blog Post,Email Sent,E-mail poslan DocType: DocField,Ignore XSS Filter,Zanemari XSS Filter -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,udaljen +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,udaljen apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,postavke Dropbox backup apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,Pošalji kao email DocType: Website Theme,Link Color,Link Color @@ -2254,22 +2312,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,LDAP Postavke apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,Naziv entiteta apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Izmenama apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal postavke payment gateway -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) će dobiti skraćeni, kao i maksimalno dozvoljenih znakova je {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) će dobiti skraćeni, kao i maksimalno dozvoljenih znakova je {2}" DocType: OAuth Client,Response Type,Tip odgovor DocType: Contact Us Settings,Send enquiries to this email address,Upite slati na ovu e-mail adresu DocType: Letter Head,Letter Head Name,Naziv zaglavlja DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Broj kolona za polje u liste ili Grid (Ukupno Kolumne bi trebao biti manji od 11) apps/frappe/frappe/config/website.py +18,User editable form on Website.,Korisnik može uređivati obliku na web. DocType: Workflow State,file,fajl -apps/frappe/frappe/www/login.html +90,Back to Login,Povratak na prijavu +apps/frappe/frappe/www/login.html +91,Back to Login,Povratak na prijavu DocType: Data Migration Mapping,Local DocType,Lokalni DocType apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,Trebate pismeno dopuštenje za preimenovanje +DocType: Email Account,Use ASCII encoding for password,Koristite ASCII kodiranje za lozinku DocType: User,Karma,Karma DocType: DocField,Table,Stol DocType: File,File Size,Veličina -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Morate prijaviti da podnesu ovaj obrazac +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,Morate prijaviti da podnesu ovaj obrazac DocType: User,Background Image,Pozadinska slika -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},Nije moguće postaviti obaveštenje o tipu dokumenta {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},Nije moguće postaviti obaveštenje o tipu dokumenta {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","Izaberite svoju zemlju, vremensku zonu i valuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,između @@ -2278,7 +2337,7 @@ DocType: Braintree Settings,Use Sandbox,Koristite Sandbox apps/frappe/frappe/utils/goal.py +101,This month,Ovog mjeseca apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,Novi prilagođeni format za štampu DocType: Custom DocPerm,Create,Stvoriti -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},Nevažeći filter: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},Nevažeći filter: {0} DocType: Email Account,no failed attempts,no neuspjelih pokušaja DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key @@ -2287,7 +2346,7 @@ DocType: Chat Room,Last Message,Poslednja poruka DocType: OAuth Bearer Token,Access Token,Access Token DocType: About Us Settings,Org History,org Povijest apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Veličina ekrana: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},Auto ponavljanje je bilo {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},Auto ponavljanje je bilo {0} DocType: Auto Repeat,Next Schedule Date,Sledeći datum rasporeda DocType: Workflow,Workflow Name,Workflow ime DocType: DocShare,Notify by Email,Obavijesti putem e-pošte @@ -2296,10 +2355,10 @@ DocType: Web Form,Allow Edit,Dopustite Edit apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,Pasta DocType: Webhook,Doc Events,Doc Events DocType: Auto Email Report,Based on Permissions For User,Na osnovu Dozvole za korisnika -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},Ne mogu promijeniti stanje Otkazan dokumentu . +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},Ne mogu promijeniti stanje Otkazan dokumentu . DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Pravila za koliko su države prijelaza, kao i sljedeći države i koja uloga je dozvoljeno da promijeni stanje itd." apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} već postoji -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},Doda može biti jedan od {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},Doda može biti jedan od {0} DocType: DocType,Image View,Prikaz slike apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Izgleda kao da je nešto pošlo po zlu u transakciju. Pošto nismo potvrdili plaćanje, PayPal automatski će vam vratiti taj iznos. Ako se to ne desi, pošaljite nam e-mail, a spomenuti korelacije ID: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Uključuju simbole, brojeve i slova u lozinku" @@ -2309,7 +2368,6 @@ DocType: List Filter,List Filter,Filter liste DocType: Workflow State,signal,signal apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,Ima priloge DocType: DocType,Show Print First,Pokaži Ispis Prvo -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Podešavanja> Korisnik apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Napravite nove {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,Novi e-pošte apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Obnovljena dokument @@ -2335,7 +2393,7 @@ DocType: Web Form,Web Form Fields,Web Form Fields DocType: Website Theme,Top Bar Text Color,Top Bar Boja teksta DocType: Auto Repeat,Amended From,Izmijenjena Od apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},Upozorenje: Nije moguće pronaći {0} na bilo sto u vezi sa {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,Ovaj dokument je trenutno na čekanju za izvršenje. Molimo pokušajte ponovo +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,Ovaj dokument je trenutno na čekanju za izvršenje. Molimo pokušajte ponovo apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,Datoteka '{0}' nije pronađena apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Uklonite točki DocType: User,Change Password,Promjena lozinke @@ -2345,19 +2403,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,Zdravo! apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,Braintree podešavanja gateway plaćanja apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Kraj događaj mora biti nakon početka apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Ovo će se odjaviti {0} sa svih drugih uređaja -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Nemate dozvolu da dobijete izvještaj na: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},Nemate dozvolu da dobijete izvještaj na: {0} DocType: System Settings,Apply Strict User Permissions,Nanesite Strogi Dozvole korisnika DocType: DocField,Allow Bulk Edit,Dozvolite Bulk Uredi DocType: Blog Post,Blog Post,Blog članak -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,Napredna pretraga +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,Napredna pretraga apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Niste dozvoljeni da pogledate bilten. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,Password Reset upute su poslani na e-mail +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,Password Reset upute su poslani na e-mail apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"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." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,Ne možete sačuvati formular jer je u toku sa uvozom podataka. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,Sortiraj po DocType: Workflow,States,Države DocType: Notification,Attach Print,Priložiti Print -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},Predložena ime: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Predložena ime: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,dan ,Modules,Moduli apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Set Desktop Icons @@ -2367,11 +2426,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,Ukinuto DocType: Web Page,Sidebar and Comments,Sidebar i Komentari apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kada Izmijeniti dokument nakon Odustani i spasiti ga , on će dobiti novi broj koji jeverzija starog broja ." -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nije dopušteno da priložite {0} dokument, molimo omogućite Dozvoliti štampanje za {0} u podešavanjima štampanja" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,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 +68,Start Import,Započnite uvoz +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,Započnite uvoz DocType: Workflow State,circle-arrow-left,krug sa strelicom nalijevo apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,Redis cache poslužitelj nije pokrenut. Molimo kontaktirajte Administrator / Tech podršku apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Napravite novi zapis @@ -2379,7 +2438,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,P DocType: Currency,Fraction,Frakcija DocType: LDAP Settings,LDAP First Name Field,LDAP Ime Field apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,za automatsko stvaranje ponavljajućeg dokumenta za nastavak. -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,Izaberite neku od postojećih priloge +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,Izaberite neku od postojećih priloge DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,Ne postavljajte ime preko Prompt-a 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"".","Unesite polja za podrazumevana vrijednost (ključeve) i vrijednosti. Ako dodate više vrijednosti za polje, prvo će biti izabrano. Ova podrazumevana vrednost se takođe koristi za postavljanje pravila za "usklađivanje". Da biste videli listu polja, idite na "Prilagodi obrazac"." @@ -2399,6 +2458,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Kreiraj proizvode DocType: Contact,Image,Slika DocType: Workflow State,remove-sign,uklanjanje-potpisati +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,Neuspjelo povezivanje na server apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,Nema podataka za izvoz DocType: Domain Settings,Domains HTML,Domene HTML apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,Tip nešto u polje za pretragu za pretragu @@ -2426,33 +2486,34 @@ DocType: Address,Address Line 2,Adresa - linija 2 DocType: Address,Reference,Upućivanje apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Dodijeljeno DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Mapiranje mapiranja podataka -DocType: Email Flag Queue,Action,Akcija +DocType: Data Import,Action,Akcija DocType: GSuite Settings,Script URL,skripta URL -apps/frappe/frappe/www/update-password.html +119,Please enter the password,Molimo vas da unesete lozinku -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,Nije dozvoljeno da se ispis otkazan dokumentima +apps/frappe/frappe/www/update-password.html +111,Please enter the password,Molimo vas da unesete lozinku +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Nije dozvoljeno da se ispis otkazan dokumentima apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,Nije vam dozvoljeno da se stvori kolona DocType: Data Import,If you don't want to create any new records while updating the older records.,Ako ne želite da kreirate nove zapise tokom ažuriranja starijih zapisa. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Info: DocType: Custom Field,Permission Level,Dopuštenje Razina DocType: User,Send Notifications for Transactions I Follow,Slanje obavijesti za transakcije pratim -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne mogu postaviti Podnijeti , Odustani , Izmijeniti bez zapisivanja" -DocType: Google Maps,Client Key,Client Key -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Jeste li sigurni da želite izbrisati prilog? -apps/frappe/frappe/__init__.py +1097,Thank you,Hvala +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne mogu postaviti Podnijeti , Odustani , Izmijeniti bez zapisivanja" +DocType: Google Maps Settings,Client Key,Client Key +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,Jeste li sigurni da želite izbrisati prilog? +apps/frappe/frappe/__init__.py +1178,Thank you,Hvala apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Snimanje DocType: Print Settings,Print Style Preview,Prikaz stila ispisa apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,Ikone -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Vi ne smijete ažurirati ovu Web Form Dokument +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,Vi ne smijete ažurirati ovu Web Form Dokument apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,Emails apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Molimo odaberite Document Type prvi apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Molimo postavite bazni URL u Društveni ključ za prijavu za Frappe DocType: About Us Settings,About Us Settings,"""O nama"" podešavanja" DocType: Website Settings,Website Theme,Website Theme +DocType: User,Api Access,Api Access DocType: DocField,In List View,U prikazu popisa DocType: Email Account,Use TLS,Koristi TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neispravno korisničko ime ili lozinka -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,Preuzmite predložak +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,Preuzmite predložak apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,Dodaj sopstveni JavaScript na obrasce. ,Role Permissions Manager,Menadzer prava pristupa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Ime novog Format @@ -2471,7 +2532,6 @@ DocType: Website Settings,HTML Header & Robots,HTML Header i roboti DocType: User Permission,User Permission,Korisnička ovlast apps/frappe/frappe/config/website.py +32,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,LDAP nije instaliran -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,Preuzimanje s podacima DocType: Workflow State,hand-right,ruka-desna DocType: Website Settings,Subdomain,Poddomena apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,Postavke za OAuth Provider @@ -2483,6 +2543,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,E-mail Prijava ID apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,plaćanje Otkazano ,Addresses And Contacts,Adrese i kontakti +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,Molimo prvo izaberite vrstu dokumenta. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Jasno Trupci Greška apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Molimo odaberite ocjenu apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,Resetuj OTP Secret @@ -2491,19 +2552,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,Prije apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizacija blogu. DocType: Workflow State,Time,Vrijeme DocType: DocField,Attach,Priložiti -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nije važeći Naziv Polja. To bi trebalo da bude {{}} field_name. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nije važeći Naziv Polja. To bi trebalo da bude {{}} field_name. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Pošalji povratne informacije Zahtjev samo ako postoji barem jedan komunikacija je na raspolaganju za taj dokument. DocType: Custom Role,Permission Rules,Dopuštenje Pravila DocType: Braintree Settings,Public Key,Javni ključ DocType: GSuite Settings,GSuite Settings,GSuite Postavke DocType: Address,Links,Linkovi apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,Izaberite tip dokumenta. -apps/frappe/frappe/model/base_document.py +396,Value missing for,Vrijednost nestao +apps/frappe/frappe/model/base_document.py +405,Value missing for,Vrijednost nestao apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,Dodaj podređenu stavku apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sacuvani zapis se ne može se izbrisati. DocType: GSuite Templates,Template Name,template Name apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,novi tip dokumenta -DocType: Custom DocPerm,Read,Čitati +DocType: Communication,Read,Čitati DocType: Address,Chhattisgarh,Chhattisgarh DocType: Role Permission for Page and Report,Role Permission for Page and Report,Uloga Dozvola za Page i Izvještaj apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Poravnajte vrijednost @@ -2513,9 +2574,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,Direktna soba sa {drugim} već postoji. DocType: Has Domain,Has Domain,ima Domain apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Sakrij -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,Nemate korisnički račun? Prijaviti se +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,Nemate korisnički račun? Prijaviti se apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,Nije moguće ukloniti ID polje -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable DocType: Address,Bihar,Bihar DocType: Activity Log,Link DocType,link DocType apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,Nemate još poruka. @@ -2530,14 +2591,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Dijete Tablice su prikazane kao Grid u drugim DocTypes. DocType: Chat Room User,Chat Room User,Chat Room User apps/frappe/frappe/model/workflow.py +38,Workflow State not set,Stanje toka posla nije postavljeno -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},Kod greške: {0} +apps/frappe/frappe/www/404.html +23,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 +26,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)" DocType: Workflow,Allow Self Approval,Dozvolite samopouzdanje apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,John Doe DocType: DocType,Name Case,Ime slučaja apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,Podijeljeno sa svima -apps/frappe/frappe/model/base_document.py +392,Data missing in table,Podaci koji nedostaju u tabeli +apps/frappe/frappe/model/base_document.py +401,Data missing in table,Podaci koji nedostaju u tabeli DocType: Web Form,Success URL,Uspjeh URL DocType: Email Account,Append To,Doda apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,Fiksna visina @@ -2558,31 +2619,32 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,Žao mi je! Dijeljenje s Website korisnika je zabranjeno. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,Dodaj sve uloge +DocType: Website Theme,Bootstrap Theme,Bootstrap Theme apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!","Unesite svoju e-mail, kako i poruke, tako da smo \ mogu se javiti. Hvala!" -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,Ne mogu se spojiti na odlasku e-mail poslužitelju +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,Ne mogu se spojiti na odlasku e-mail poslužitelju apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Hvala Vam na Vašem interesu za pretplatu na naš ažuriranja DocType: Braintree Settings,Payment Gateway Name,Naziv Gateway Gateway-a -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,Custom Kolona +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,Custom Kolona DocType: Workflow State,resize-full,resize-pun DocType: Workflow State,off,Isključen apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,Povratak -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Izvještaj {0} je onemogućen +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,Izvještaj {0} je onemogućen DocType: Activity Log,Core,Srž apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,set Dozvole DocType: DocField,Set non-standard precision for a Float or Currency field,Set nestandardne preciznosti za Float ili valuta polja DocType: Email Account,Ignore attachments over this size,Zanemari priloge preko ove veličine DocType: Address,Preferred Billing Address,Željena adresa za naplatu apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,Stanje radnog toka {0} nije dozvoljeno -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,Previše piše u jednom zahtjevu . Molimo poslali manje zahtjeve +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,Previše piše u jednom zahtjevu . Molimo poslali manje zahtjeve apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Promena vrednosti DocType: Workflow State,arrow-up,Strelica prema gore DocType: OAuth Bearer Token,Expires In,ističe u DocType: DocField,Allow on Submit,Dopusti pri potvrdi DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Izuzetak Tip -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,Odaberi kolone +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Odaberi kolone DocType: Web Page,Add code as <script>,Dodaj kod kao DocType: Webhook,Headers,Headers apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,Unesite vrijednosti za App pristup Key i App tajni ključ @@ -2601,6 +2663,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,Nema aktivnih sesija DocType: Top Bar Item,Right,Desno DocType: User,User Type,Vrsta korisnika +DocType: Prepared Report,Ref Report DocType,Ref Report DocType apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,Kliknite stol za uređivanje DocType: GCalendar Settings,Client ID,ID klijenta DocType: Async Task,Reference Doc,Reference Doc @@ -2619,18 +2682,18 @@ DocType: Workflow State,Edit,Uredi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Dozvole se može upravljati putem Setup & gt; Uloga Dozvole Manager DocType: Website Settings,Chat Operators,Chat Operatori DocType: Contact Us Settings,Pincode,Poštanski broj -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,Molimo provjerite da nema praznih stupaca u datoteci. +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,Molimo provjerite da nema praznih stupaca u datoteci. apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,Pobrinite se da vaš profil ima e-mail adresu apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,Vi niste spremili promjene u ovom obliku . DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,Uobičajeno za {0} mora biti opcija +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,Uobičajeno za {0} mora biti opcija DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija DocType: User,User Image,Upute slike -apps/frappe/frappe/email/queue.py +338,Emails are muted,E-mailovi su prigušeni +apps/frappe/frappe/email/queue.py +341,Emails are muted,E-mailovi su prigušeni apps/frappe/frappe/config/integrations.py +88,Google Services,Google usluge apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Ctrl + Up DocType: Website Theme,Heading Style,Heading Style -apps/frappe/frappe/utils/data.py +625,1 weeks ago,prije 1 sedmica +apps/frappe/frappe/utils/data.py +627,1 weeks ago,prije 1 sedmica DocType: Communication,Error,Pogreška DocType: Auto Repeat,End Date,Datum završetka DocType: Data Import,Ignore encoding errors,Ignorišite greške kodiranja @@ -2638,6 +2701,7 @@ DocType: Chat Profile,Notifications,Obaveštenja DocType: DocField,Column Break,Kolona Break DocType: Event,Thursday,Četvrtak apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,Ne morate dozvolu za pristup ovom datoteku +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,Sačuvaj API tajnu: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},Ne mogu povezati otkazana dokumenta: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,Ne možete uređivati standardni izvještaj. Molimo vas da duplikat i stvoriti novi izvještaj apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","Kompanija je obavezno, kao što je vaša kompanija adresa" @@ -2654,9 +2718,9 @@ DocType: Custom Field,Label Help,Oznaka pomoć DocType: Workflow State,star-empty,zvijezda-prazna apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,Termini su često lako pogoditi. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,Sljedeće akcije -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Ne može se urediti standardno obaveštenje. Da biste uredili, molim vas onemogućite ovo i duplirajte ga" +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Ne može se urediti standardno obaveštenje. Da biste uredili, molim vas onemogućite ovo i duplirajte ga" DocType: Workflow State,ok,u redu -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,Submit Review +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,Submit Review DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Ove vrijednosti će se automatski ažuriraju u prometu, te će također biti korisno ograničiti dozvole za ovog korisnika o transakcijama koje sadrže te vrijednosti." apps/frappe/frappe/twofactor.py +312,Verfication Code,Verifikacioni kod apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,za stvaranje ponavljajuće @@ -2674,12 +2738,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Molimo nadogradite da dodate više od {0} pretplatnika DocType: Workflow State,hand-left,ruka-lijeva DocType: Data Import,If you are updating/overwriting already created records.,Ako ažurirate / prepisujete već kreirane zapise. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,Tip Polja {0} {1} za ne može biti jedinstvena +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,Tip Polja {0} {1} za ne može biti jedinstvena apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,Je Global DocType: Email Account,Use SSL,Koristite SSL DocType: Workflow State,play-circle,play-krug apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",Nevažeći izraz "depends_on" -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,Ime grupe +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,Ime grupe apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Odaberite Format Edit DocType: Address,Shipping,Transport DocType: Workflow State,circle-arrow-down,krug sa strelicom prema dolje @@ -2697,23 +2761,23 @@ DocType: SMS Settings,SMS Settings,Podešavanja SMS-a DocType: Company History,Highlight,Istaknuto DocType: OAuth Provider Settings,Force,sila DocType: DocField,Fold,Saviti +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,Uzlazni apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standardni format ispisa ne može biti obnovljeno apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Nedostajati -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,Navedite +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,Navedite DocType: Communication,Bot,Bot DocType: Help Article,Help Article,Pomoć član DocType: Page,Page Name,Ime stranice apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Pomoć: Field Properties apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},Takođe dodajte zavisno polje valute {0} apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,otvoriti rajsfešlus -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},Netočna vrijednost u redu {0} : {1} mora biti {2} {3} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nema pronađenih rezultata za '

-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},Postavio Dokument se ne može pretvoriti natrag u nacrtu . +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},Netočna vrijednost u redu {0} : {1} mora biti {2} {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},Postavio Dokument se ne može pretvoriti natrag u nacrtu . apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,Konfigurirajte integraciju Google kalendara -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},Brisanje {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},Brisanje {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Odaberite postojeći format za uređivanje ili započeti novi format. DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,Bypass ograničena IP adresa provera Ako je Two Factor Auth omogućen -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},Napravljeno Custom Field {0} u {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},Napravljeno Custom Field {0} u {1} DocType: System Settings,Time Zone,Time Zone apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Specijalni znakovi nisu dozvoljeni DocType: Communication,Relinked,relinkovao @@ -2729,7 +2793,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",Polje "ruta" je obavezno za Veb pogledi +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"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 +205,Insert Column Before {0},Ubaci kolonu pre {0} DocType: Email Account,Add Signature,Dodaj Potpis apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Ostavio ovaj razgovor @@ -2739,9 +2803,9 @@ DocType: DocField,No Copy,Ne Kopirajte DocType: Workflow State,qrcode,qrcode DocType: Chat Token,IP Address,IP adresa DocType: Data Import,Submit after importing,Pošaljite nakon uvoza -apps/frappe/frappe/www/login.html +32,Login with LDAP,Prijavite se LDAP +apps/frappe/frappe/www/login.html +33,Login with LDAP,Prijavite se LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,Ako Vlasnik +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,Ako Vlasnik DocType: Data Migration Mapping,Push,Guranje DocType: OAuth Authorization Code,Expiration time,vrijeme isteka DocType: Web Page,Website Sidebar,Sajt Sidebar @@ -2752,12 +2816,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} {1 apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,Sve-veliko je gotovo kao lako pogoditi kao i svi-mala. DocType: Feedback Trigger,Email Fieldname,E-mail FIELDNAME DocType: Website Settings,Top Bar Items,Top Bar Proizvodi -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","E-mail ID mora biti jedinstven, e-pošte je već postoje \ za {0}" DocType: Notification,Print Settings,Postavke ispisa DocType: Page,Yes,Da DocType: DocType,Max Attachments,Max priloga -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Klijentski ključ je potreban +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,Klijentski ključ je potreban DocType: Calendar View,End Date Field,Kraj Datum Polja DocType: Desktop Icon,Page,Stranica apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},nisu mogli naći {0} u {1} @@ -2766,21 +2828,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,Baza znanja DocType: Workflow State,briefcase,aktovka apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},Vrijednost ne može se mijenjati za {0} DocType: Feedback Request,Is Manual,je ručna -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},U prilogu {0} {1} # +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},U prilogu {0} {1} # DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil predstavlja boju gumba: Uspjeh - zelena, opasnosti - Crvena, Inverzni - crna, Primarni - tamnoplava, info - svjetlo plava, upozorenje - Orange" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Status rata DocType: Workflow Transition,Workflow Transition,Tijek tranzicije apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,prije {0} mjeseci apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Kreirao -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,Dropbox Setup +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,Dropbox Setup DocType: Workflow State,resize-horizontal,resize-horizontalna DocType: Chat Message,Content,Sadržaj DocType: Data Migration Run,Push Insert,Push Insert apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,Group Node DocType: Communication,Notification,obavijest DocType: DocType,Document,Dokument -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},Serija {0} već koristi u {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,Nepodržani format datoteke +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},Serija {0} već koristi u {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,Nepodržani format datoteke DocType: DocField,Code,Šifra DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Sve je moguće Workflow države i uloge rada. Docstatus opcije: 0 je "spremljene", 1 je "dostavljen" i 2 je "Otkazano"" DocType: Website Theme,Footer Text Color,Footer Boja teksta @@ -2791,13 +2853,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Nevažeći payment gateway vjerodajnice DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ovo je šablon datoteka generisana samo sa redovima koji imaju neku grešku. Trebali biste koristiti ovu datoteku za korekciju i uvoz. apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Postaviti dozvole vrsta dokumenata i uloge -apps/frappe/frappe/model/meta.py +160,No Label,No Label +DocType: Data Migration Run,Remote ID,Remote ID +apps/frappe/frappe/model/meta.py +205,No Label,No Label +DocType: System Settings,Use socketio to upload file,Koristite socketio za otpremanje datoteke apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,Indeksiranje je slomljeno apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,Osvežavajuće apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,Nastavi apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,Promjena Do DocType: Address,Tripura,Tripura DocType: About Us Settings,"""Company History""","""Istorija firme""" +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,Ovaj dokument je izmenjen nakon slanja e-pošte. +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,Prikaži izveštaj DocType: Address,Tamil Nadu,Tamil Nadu DocType: Email Rule,Email Rule,E-mail pravilo apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document","Da biste zaustavili slanje ponavljajućih obaveštenja o grešci iz sistema, u Auto Repeat dokumentu smo označili polje Disabled" @@ -2811,7 +2877,7 @@ DocType: Notification,Send alert if this field's value changes,Pošalji upozoren apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Odaberite DOCTYPE da napravi novi format apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,'Primaoci' nisu navedeni apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,upravo sada -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,primijeniti +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,primijeniti DocType: Footer Item,Policy,politika apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} Postavke nije pronađen DocType: Module Def,Module Def,Modul Def @@ -2825,7 +2891,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,od DocType: Print Settings,Allow page break inside tables,Dozvolite prijelom stranice unutar tablice DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Print Format Pomoć -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,s Groups +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,s Groups DocType: DocType,Beta,beta apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,Ograniči izbor ikona za sve korisnike. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},obnovljena {0} kao {1} @@ -2834,8 +2900,9 @@ DocType: DocField,Translatable,Translatable DocType: Event,Every Month,Svaki mjesec DocType: Letter Head,Letter Head in HTML,Zaglavlje HTML DocType: Web Form,Web Form,Web Form +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},Datum {0} mora biti u formatu: {1} DocType: About Us Settings,Org History Heading,Org Povijest Heading -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Izvini. Dosegli ste maksimalan korisnik ograničenje za pretplatu. Možete ili onemogućiti postojeći korisnik ili kupiti veći plan pretplate. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Izvini. Dosegli ste maksimalan korisnik ograničenje za pretplatu. Možete ili onemogućiti postojeći korisnik ili kupiti veći plan pretplate. DocType: Print Settings,Allow Print for Cancelled,Dozvolite Ispis za Otkazano DocType: Communication,Integrations can use this field to set email delivery status,Integracije mogu koristiti ovo polje da biste postavili status slanje e DocType: Web Form,Web Page Link Text,Web Page Link Text @@ -2848,13 +2915,12 @@ DocType: GSuite Settings,Allow GSuite access,Dozvoli GSuite pristup DocType: DocType,DESC,DESC DocType: DocType,Naming,Imenovanje DocType: Event,Every Year,Svaki Godina -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,Odaberite sve +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,Odaberite sve apps/frappe/frappe/config/setup.py +247,Custom Translations,Custom Prijevodi apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,napredak apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,prema ulozi apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,Polja koja nedostaju -apps/frappe/frappe/email/smtp.py +188,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email nalog nije podešen. Molimo vas da kreirate novi nalog e-pošte iz Setup-a> E-pošta> E-poštni nalog -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,Nevažeći Naziv Polja '{0}' u autoname +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,Nevažeći Naziv Polja '{0}' u autoname apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Traži u vrsti dokumenta apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,Dopustite da ostanu na terenu uređivati čak i nakon podnošenja DocType: Custom DocPerm,Role and Level,Uloga i Level @@ -2863,14 +2929,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Prilagođeni izvjestaji DocType: Website Script,Website Script,Web Skripta DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,Ako ne koristite vlastitu objaviti Google Apps Script webapp možete koristiti zadani https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,Prilagođene HTML Obrasci za ispis transakcija. -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,orijentacija +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,orijentacija DocType: Workflow,Is Active,Je aktivan -apps/frappe/frappe/desk/form/utils.py +111,No further records,Nema daljnjih zapisi +apps/frappe/frappe/desk/form/utils.py +114,No further records,Nema daljnjih zapisi DocType: DocField,Long Text,Dugo Tekst DocType: Workflow State,Primary,Osnovni -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},"Molim vas, nemojte mijenjati retke iznad {0}" +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},"Molim vas, nemojte mijenjati retke iznad {0}" DocType: Web Form,Go to this URL after completing the form (only for Guest users),Idite na ovaj URL nakon popunjavanja obrasca (samo za korisnike gostiju) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Ctrl + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Više informacija DocType: Data Migration Mapping,Field Maps,Mape polja DocType: Desktop Icon,Desktop Icon,desktop Icon @@ -2891,13 +2957,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,Stripe Postavke DocType: Data Migration Mapping,Data Migration Mapping,Mapiranje migracija podataka apps/frappe/frappe/www/login.py +89,Invalid Login Token,Invalid Token Prijava -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,Odbaci +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,Odbaci apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,Prije 1 sat DocType: Website Settings,Home Page,Početna stranica DocType: Error Snapshot,Parent Error Snapshot,Roditelj Greška Snapshot -DocType: Kanban Board,Filters,Filteri +DocType: Prepared Report,Filters,Filteri DocType: Workflow State,share-alt,Udio-alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},Red bi trebao biti jedan od {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},Red bi trebao biti jedan od {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2927,12 +2993,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,Skripta ili upit prenosi
 DocType: Workflow Document State,Workflow Document State,Workflow dokument Država
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,File prevelika
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,E-mail računa dodao više puta
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,E-mail računa dodao više puta
 DocType: Payment Gateway,Payment Gateway,Payment Gateway
 DocType: Portal Settings,Hide Standard Menu,Hide Standard Menu
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,Dodaj / Upravljanje mail domena.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},Ne može otkazati prije slanja.
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,Print Format {0} je onemogućen
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},Ne može otkazati prije slanja.
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Format {0} je onemogućen
 ,Address and Contacts,Adresa i kontakti
 DocType: Notification,Send days before or after the reference date,Pošalji dana prije ili nakon referentnog datuma
 DocType: User,Allow user to login only after this hour (0-24),Dopustite korisniku da se prijavi tek nakon ovoliko sati (0-24)
@@ -2942,7 +3008,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,Predvidljivo zamjene kao što su "@" umjesto "a" ne pomažu puno.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Dodijelio drugima
 apps/frappe/frappe/utils/data.py +528,Zero,nula
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne u Developer Mode! U site_config.json ili napraviti 'Custom' DOCTYPE.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne u Developer Mode! U site_config.json ili napraviti 'Custom' DOCTYPE.
 DocType: Workflow State,globe,globus
 DocType: System Settings,dd.mm.yyyy,dd.mm.gggg
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,Sakrij polju u Standard Format
@@ -2955,19 +3021,21 @@ DocType: DocType,Allow Import (via Data Import Tool),Dozvoljava uvoz (preko Data
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,sr
 DocType: DocField,Float,Plutati
 DocType: Print Settings,Page Settings,Podešavanja stranice
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,Štedi ...
 DocType: Auto Repeat,Submit on creation,Dostavi na stvaranju
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,Invalid lozinke
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,Invalid lozinke
 DocType: Contact,Purchase Master Manager,Kupovina Master Manager
 DocType: Module Def,Module Name,Naziv modula
 DocType: DocType,DocType is a Table / Form in the application.,Vrsta dokumenta je Tabela / obrazac u aplikaciji.
 DocType: Social Login Key,Authorize URL,Ovlastite URL adresu
 DocType: Email Account,GMail,GMail
 DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} Izvještaj
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Izvještaj
 DocType: SMS Settings,Use POST,Koristite POST
 DocType: Communication,SMS,SMS
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,Fetch Images
 DocType: DocType,Web View,Web View
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,Upozorenje: Ovaj format ispisa u starom stilu i ne može biti generiran preko API-ja.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,Upozorenje: Ovaj format ispisa u starom stilu i ne može biti generiran preko API-ja.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,Ukupan rezultat
 DocType: DocField,Print Width,Širina ispisa
 ,Setup Wizard,Čarobnjak za postavljanje
@@ -2976,6 +3044,7 @@ DocType: Chat Message,Visitor,Visitor
 DocType: User,Allow user to login only before this hour (0-24),Dopustite korisniku da se prijaviti samo prije ovoliko sati (0-24)
 DocType: Social Login Key,Access Token URL,Pristup URL-u žetona
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,Folder je obavezno
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} dodijeljen {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,Novu poruku od Website Kontakt Page
 DocType: Notification,Reference Date,Referentni datum
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,Unesite valjane mobilne br
@@ -3002,21 +3071,22 @@ DocType: DocField,Small Text,Mali Tekst
 DocType: Workflow,Allow approval for creator of the document,Dozvoli odobrenje za kreatora dokumenta
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,API Endpoint Args
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pristupiti {0} na {1} preko IP adresa {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pristupiti {0} na {1} preko IP adresa {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,jednak
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opcije 'Dynamic Link' tip terena mora ukazati na drugo polje veze s opcijama kao 'DOCTYPEhtml'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opcije 'Dynamic Link' tip terena mora ukazati na drugo polje veze s opcijama kao 'DOCTYPEhtml'
 DocType: About Us Settings,Team Members Heading,Članovi tima Naslov
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,Invalid CSV format
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Set Broj Backup
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,Molim vas ispravite
 DocType: DocField,Do not allow user to change after set the first time,Ne dopustiti korisniku izmjene nakon što je upisao prvi put
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privatni ili javni?
-apps/frappe/frappe/utils/data.py +633,1 year ago,prije 1 godina
+apps/frappe/frappe/utils/data.py +635,1 year ago,prije 1 godina
 DocType: Contact,Contact,Kontakt
 DocType: User,Third Party Authentication,Autentičnosti treće strane
 DocType: Website Settings,Banner is above the Top Menu Bar.,Baner je iznad gornjeg menija.
-DocType: Razorpay Settings,API Secret,API Secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,Izvoz Izvještaj:
+DocType: User,API Secret,API Secret
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} kalendar
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,Izvoz Izvještaj:
 DocType: Data Migration Run,Push Update,Push Update
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,u Auto Repeat dokumentu
 DocType: Email Account,Port,luka
@@ -3027,7 +3097,7 @@ DocType: Website Slideshow,Slideshow like display for the website,Slideshow kao
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,Obaveštenja o podešavanju zasnovane na različitim kriterijumima.
 DocType: Communication,Updated,Obnovljeno
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,Odaberite modul
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,Pretražite ili kreirajte novi ćask
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,Pretražite ili kreirajte novi ćask
 apps/frappe/frappe/sessions.py +29,Cache Cleared,Cache Cleared
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,Novi E-mail
@@ -3043,7 +3113,7 @@ DocType: Print Settings,PDF Settings,PDF postavke
 DocType: Kanban Board Column,Column Name,Kolona Ime
 DocType: Language,Based On,Na osnovu
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Make Uobičajeno
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,Tip Polja {0} {1} za ne mogu biti indeksirane
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,Tip Polja {0} {1} za ne mogu biti indeksirane
 DocType: Communication,Email Account,Email nalog
 DocType: Workflow State,Download,Preuzimanje
 DocType: Blog Post,Blog Intro,Blog intro
@@ -3057,7 +3127,7 @@ DocType: Web Page,Insert Code,Umetnite kod
 DocType: Data Migration Run,Current Mapping Type,Sadašnji Mapping Type
 DocType: ToDo,Low,Nizak
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Možete dodati dinamičke osobine iz dokumenta pomoću Jinja templating.
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Nevažeći limit {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},Nevažeći limit {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Popis vrstu dokumenta
 DocType: Event,Ref Type,Ref. Tip
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ako upload nove rekorde, napustiti ""ime"" (ID) kolonu prazan."
@@ -3079,21 +3149,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N
 DocType: Print Settings,Send Print as PDF,Pošalji Print as PDF
 DocType: Web Form,Amount,Iznos
 DocType: Workflow Transition,Allowed,Dopušteno
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,Tu može biti samo jednokratno u obliku
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,Tu može biti samo jednokratno u obliku
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},Ne može pisati format za {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Vraćanje na standardne postavke?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Nevažeća naslovnica
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,Neuspješno logovanje. Pokušaj ponovo.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},Opcije potrebne za Link ili tip Tabela polje {0} u redu {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},Opcije potrebne za Link ili tip Tabela polje {0} u redu {1}
 DocType: Auto Email Report,Send only if there is any data,Pošalji samo ako postoji bilo koji podatak
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,Reset Filteri
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0} : Autorizacija  na nivou 0 mora biti postavljena prije vecih nivoa autorizacije
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,Reset Filteri
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0} : Autorizacija  na nivou 0 mora biti postavljena prije vecih nivoa autorizacije
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Zadatak zatvorio / la {0}
 DocType: Integration Request,Remote,daljinski
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Izračunaj
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Molimo najprije odaberite DOCTYPE
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,Potvrdi Vaš e-mail
-apps/frappe/frappe/www/login.html +40,Or login with,Ili se prijavite sa
+apps/frappe/frappe/www/login.html +41,Or login with,Ili se prijavite sa
 DocType: Error Snapshot,Locals,Mještani
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Komunicirali preko {0} na {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} vas je spomenuo  komentaru {1}
@@ -3103,23 +3173,24 @@ DocType: Integration Request,Integration Type,integracija Tip
 DocType: Newsletter,Send Attachements,Pošalji Attachements
 DocType: Transaction Log,Transaction Log,Dnevnik transakcije
 DocType: Contact Us Settings,City,Grad
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,Ctrl + Enter za slanje
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,Ctrl + Enter za slanje
 DocType: DocField,Perm Level,Perm Level
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,Pogledajte dokument
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Događanja u današnjem kalendaru
 DocType: Web Page,Web Page,Web stranica
 DocType: Workflow Document State,Next Action Email Template,Slijedeća Template Action Action
 DocType: Blog Category,Blogger,Bloger
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},'Global Search "nije dozvoljeno tipa {0} u redu {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},'Global Search "nije dozvoljeno tipa {0} u redu {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,Prikaz liste
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},Datum mora biti u formatu: {0}
 DocType: Workflow,Don't Override Status,Ne zamenjuju Status
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Molim Vas, dajte ocjenu."
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Upit
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,pojam za pretragu
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,Prvo Korisnik : Vi
 DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
+DocType: Prepared Report,Report Start Time,Vreme početka izveštaja
 apps/frappe/frappe/config/setup.py +112,Export Data,Izvoz podataka
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,Select Columns
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,Select Columns
 DocType: Translation,Source Text,izvorni tekst
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,Nedostaje parametri za prijavu
 DocType: Workflow State,folder-open,mapa otvoriti
@@ -3132,7 +3203,7 @@ DocType: Property Setter,Set Value,Postavite vrijednost
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Sakrij polju u obliku
 DocType: Webhook,Webhook Data,Webhook Data
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},Kreiranje {0}
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,Ilegalni Access Token. Molimo pokušajte ponovo
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,Ilegalni Access Token. Molimo pokušajte ponovo
 apps/frappe/frappe/public/js/frappe/desk.js +92,"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/core/doctype/communication/communication.js +35,Resend,Ponovo pošalji
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Opcionalno: upozorenje će biti poslana ako ovaj izraz je istina
@@ -3146,8 +3217,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,Nivo
 DocType: Custom DocPerm,Report,Izvjestaj
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Iznos mora biti veći od 0.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} je sacuvano
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,Korisnik {0} se ne može preimenovati
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} je sacuvano
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,Korisnik {0} se ne može preimenovati
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),Naziv Polja ograničena je na 64 znakova ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,E-mail Group List
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Ikona datoteke s ekstenzijom .ico. Trebalo bi biti 16 x 16 px. Generira putem loše generatora. [favicon-generator.org]
@@ -3160,23 +3231,22 @@ DocType: Website Theme,Background,Pozadina
 DocType: Report,Ref DocType,Ref. DOCTYPE
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,Molimo unesite ID klijenta pre nego što je omogućeno društveno prijavljivanje
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,Molimo dodajte ocjenu
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Full Page
 DocType: DocType,Is Child Table,Je Dijete Tablica
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} godinu dana
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} mora biti jedan od {1}
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} mora biti jedan od {1}
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0}  trenutno gleda ovaj dokument
 apps/frappe/frappe/config/core.py +52,Background Email Queue,Pozadina mail Queue
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,Password Reset
 DocType: Communication,Opened,Otvoren
 DocType: Workflow State,chevron-left,Chevron-lijevo
 DocType: Communication,Sending,Slanje
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,Nije dopušteno s ove IP adrese
+apps/frappe/frappe/auth.py +272,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.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,Instaliranje programa .
 DocType: Contact,Last Name,Prezime
 DocType: Event,Private,Privatan
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,Nema upozorenja za danas
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,Nema upozorenja za danas
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Pošalji E-mail Ispis privitaka u PDF (preporučeno)
 DocType: Web Page,Left,Lijevo
 DocType: Event,All Day,Cijeli dan
@@ -3187,10 +3257,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",Slika Field (Must
 apps/frappe/frappe/utils/bot.py +43,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/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen osnovni obrazac naslova. Molimo vas da kreirate novu od Setup> Printing and Branding> Template Template.
 DocType: Contact,Gender,Rod
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obavezna nedostaju informacije:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ne može se postaviti kao jedinstven kao što je ne-jedinstvene vrijednosti
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,Obavezna nedostaju informacije:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ne može se postaviti kao jedinstven kao što je ne-jedinstvene vrijednosti
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Proverite URL adresu za potraživanje
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,Samo 200 umetke dozvoljeno u jednom zahtjevu
 DocType: Footer Item,URL,URL
@@ -3206,12 +3275,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,drvo
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,Nije vam dozvoljeno da štampate ovu izvještaj
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Korisničke ovlasti
 DocType: Workflow State,warning-sign,Znak upozorenja
+DocType: Prepared Report,Prepared Report,Pripremljeni izvještaj
 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
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,teksta u tipa dokumenta
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Run Testovi
-apps/frappe/frappe/handler.py +94,Logged Out,odjavio
+apps/frappe/frappe/handler.py +95,Logged Out,odjavio
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Više ...
 DocType: System Settings,User can login using Email id or Mobile number,Korisnik može prijaviti koristeći E-mail id ili mobitela
 DocType: Bulk Update,Update Value,Ažurirajte vrijednost
@@ -3219,12 +3289,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},O
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,Molimo odaberite novo ime za preimenovanje
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,Nevažeći stupac
 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/request.js +167,Something went wrong,Nešto je pošlo po zlu
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,Samo {0} unosa prikazan. Molimo vas da filter za više konkretnih rezultata.
 DocType: System Settings,Number Format,Broj Format
 DocType: Auto Repeat,Frequency,frekvencija
 DocType: Custom Field,Insert After,Umetni Nakon
-DocType: Report,Report Name,Naziv izvještaja
+DocType: Prepared Report,Report Name,Naziv izvještaja
 DocType: Desktop Icon,Reverse Icon Color,Reverse Ikona u boji
 DocType: Notification,Save,Snimi
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,Sledeći Planirani Datum
@@ -3237,13 +3308,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,Podrazumjevano
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} je dodao
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Pretraži stranice za '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,Molimo da najprije spasiti izvještaj
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Molimo da najprije spasiti izvještaj
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} pretplatnika dodano
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,Ne nalazi se u
 DocType: Workflow State,star,zvijezda
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,Čvor
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,Vrijednosti razdvojene zarezom
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,Max width for type Currency is 100px in row {0},Max širina vrste valute je 100px u redu {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +281,values separated by commas,Vrijednosti razdvojene zarezom
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Max width for type Currency is 100px in row {0},Max širina vrste valute je 100px u redu {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Molimo vas da podijelite svoje povratne informacije za {0}
 apps/frappe/frappe/config/website.py +13,Content web page.,Sadržaj web stranice.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Dodaj novu ulogu
@@ -3256,15 +3327,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,Zapisi za sledeće doktipe će biti filtrirani
 DocType: Blog Settings,Blog Introduction,Blog uvod
 DocType: Address,Office,Ured
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,Ovo Kanban Odbor će biti privatni
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,Ovo Kanban Odbor će biti privatni
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standardni Izvještaji
 DocType: User,Email Settings,Postavke e-pošte
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,Molimo vas da unesete lozinku kako Nastavi
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,Molimo vas da unesete lozinku kako Nastavi
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,Nije važeći LDAP korisnik
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} nije validan uslov
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} nije validan uslov
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,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
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,Polje za pretragu {0} nije važeća
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,Polje za pretragu {0} nije važeća
 DocType: Workflow State,ok-circle,ok-krug
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Možete naći stvari tražeći 'Pronađite narančaste kupce'
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,Žao mi je! Korisnik treba imati potpuni pristup na svoje rekord.
@@ -3280,21 +3351,21 @@ DocType: DocField,Unique,Jedinstven
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Delimičan uspjeh
 DocType: Email Account,Service,Usluga
 DocType: File,File Name,Naziv datoteke
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),Nije pronađeno {0} za {0} ( {1} )
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),Nije pronađeno {0} za {0} ( {1} )
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Ups, nije vam dozvoljeno da zna da"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Sljedeći
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,Uspješno ste se odjavili
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,Uspješno ste se odjavili
 DocType: Calendar View,Calendar View,Pregled kalendara
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Edit Format
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,Kompletna Registracija
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,Kompletna Registracija
 DocType: GCalendar Settings,Enable,omogućiti
-DocType: Google Maps,Home Address,Kućna adresa
+DocType: Google Maps Settings,Home Address,Kućna adresa
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),Novi {0} (Ctrl + B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar u boji i teksta u boji su isti. Njih treba imati dobar kontrast da bude čitljiv.
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Možete poslati samo upto 5000 unosa u jednom pokretu. (Mogu biti manje u nekim slučajevima)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},Nedovoljna Dozvola za {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),Izvješće nije spašen (bilo pogrešaka)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,Ne možete menjati sadržaj zaglavlja
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),Izvješće nije spašen (bilo pogrešaka)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,Ne možete menjati sadržaj zaglavlja
 DocType: Print Settings,Print Style,Ispis Style
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Nije povezano sa svaki trag
 DocType: Custom DocPerm,Import,Uvoz
@@ -3324,9 +3395,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,Osvježite se dobiti najnovije dokument.
 DocType: User,Security Settings,Podešavanja sigurnosti
 DocType: Website Settings,Operators,Operatori
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,Dodaj kolonu
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,Dodaj kolonu
 ,Desktop,Radna površina
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},Izvoz Izvještaj: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},Izvoz Izvještaj: {0}
 DocType: Auto Email Report,Filter Meta,Filter Meta
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Tekst koji će biti prikazani na Link na web stranicu ako se ovaj oblik ima web stranice. Link ruta će biti automatski na osnovu `` page_name` i parent_website_route`
 DocType: Feedback Request,Feedback Trigger,povratne informacije Trigger
@@ -3353,6 +3424,6 @@ DocType: Bulk Update,Max 500 records at a time,Max 500 zapisa odjednom
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ako su vaši podaci u HTML, molimo kopirajte zalijepite točne HTML kod sa oznakama."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,Nije moguće otvoriti priloženu datoteku. Jeste li izvesti kao CSV?
 DocType: DocField,Ignore User Permissions,Ignorirajte korisnička dopuštenja
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,Zamolite svog administratora da provjerite sign-up
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,Zamolite svog administratora da provjerite sign-up
 DocType: Domain Settings,Active Domains,aktivna domena
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,Dnevnik
diff --git a/frappe/translations/ca.csv b/frappe/translations/ca.csv
index edf1ee7083..b9fabc7fd2 100644
--- a/frappe/translations/ca.csv
+++ b/frappe/translations/ca.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,Seleccioneu un camp de quantitat.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Prem Esc per tancar
-apps/frappe/frappe/desk/form/assign_to.py +158,"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/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}","Una nova tasca, {0}, s'ha assignat a vostè per {1}. {2}"
 DocType: Email Queue,Email Queue records.,Registres de cua de correu electrònic.
 DocType: Address,Punjab,Panjab
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,Canviar el nom de molts articles mitjançant la pujada d'un arxiu .csv.
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,Lloc web
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Ha d'estar registrat per accedir a aquesta pàgina
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: No es permeten diverses sessions en el cas dels dispositius mòbils
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},bústia de correu electrònic habilitat per a l'usuari {usuaris}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},bústia de correu electrònic habilitat per a l'usuari {usuaris}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No es pot enviar aquest correu electrònic. Vostè ha creuat el límit d'enviament de missatges de correu electrònic {0} per a aquest mes.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,Presentar permanentment {0}?
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Descarrega la còpia de seguretat dels fitxers
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} Arbre
 DocType: User,User Emails,Els correus electrònics d'usuaris
 DocType: User,Username,Nom d'usuari
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,Importar Zip
-apps/frappe/frappe/model/base_document.py +554,Value too big,Valors molt alts
+apps/frappe/frappe/model/base_document.py +563,Value too big,Valors molt alts
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,Prova d'execució de seqüència
 DocType: Data Import,Total Rows,Total de files
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,Registres
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,És necessari prendre aquesta acció avui mateix per a l'esmentat recurrent
 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 +539,Rename {0},Canviar el nom {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},Canviar el nom {0}
 DocType: Workflow State,zoom-out,menys-zoom
 apps/frappe/frappe/public/js/legacy/form.js +66,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 +1083,Table {0} cannot be empty,Taula {0} no pot estar buit
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,Taula {0} no pot estar buit
 DocType: SMS Parameter,Parameter,Paràmetre
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,With Ledgers
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,S'ha modificat el document.
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,With Ledgers
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,imatges
 DocType: Activity Log,Reference Owner,referència propietari
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Si està habilitat, l'usuari pot iniciar la sessió des de qualsevol adreça IP amb Two Factor Auth, també es pot establir per a tots els usuaris de la configuració del sistema"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Unitat més petita fracció de circulació (moneda). Per exemple, 1 cèntim per USD i ha de ser ingressat com 0.01"
 DocType: Social Login Key,GitHub,GitHub
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, {1} Fila"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, {1} Fila"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Si us plau, donar-li un nom complet."
-apps/frappe/frappe/model/document.py +1057,Beginning with,a partir de
+apps/frappe/frappe/model/document.py +1058,Beginning with,a partir de
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Plantilla d'importació de dades
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Pare
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Si està activat, la fortalesa de la contrasenya s'aplicarà en funció del valor mínim contrasenya Score. Un valor de 2 sent mig fort i 4 sent molt fort."
 DocType: About Us Settings,"""Team Members"" or ""Management""","""Membres de l'equip"" o ""Gestió"""
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',"Valor predeterminat pels tipus ""Check"" ha de ser '0' o '1'"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',"Valor predeterminat pels tipus ""Check"" ha de ser '0' o '1'"
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,Ahir
 DocType: Contact,Designation,Designació
 DocType: Test Runner,Test Runner,Prova Runner
@@ -66,10 +65,11 @@ 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 +47,Danger,Perill
-apps/frappe/frappe/www/login.html +20,Email Address,Adreça de correu electrònic
+apps/frappe/frappe/www/login.html +21,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/misc/tools.js +10,Export not allowed. You need {0} role to export.,No es pot exportar. Cal el rol {0} per a exportar.
+DocType: System Settings,In seconds,En segons
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,Vols cancel·lar {0} documents?
 DocType: DocType,Is Published Field,Es publica Camp
 DocType: GCalendar Settings,GCalendar Settings,Configuració de GCalendar
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,Grup correu electrònic
 DocType: Note,Seen By,Vist per
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,Afegir múltiple
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,No és una imatge d'usuari vàlida.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuració> Usuari
 DocType: Success Action,First Success Message,Primer missatge d'èxit
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,Not Com
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Defineix l'etiqueta de visualització per al camp
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},Valor incorrecte: {0} ha de ser {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},Valor incorrecte: {0} ha de ser {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","Canviar les propietats de camp (amagar, de només lectura, el permís etc.)"
 DocType: Workflow State,lock,bloquejar
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Configuració de pàgina de contacte.
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,Administrador de sessió
+apps/frappe/frappe/core/doctype/user/user.py +917,Administrator Logged In,Administrador de sessió
 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 +34,Add a tag ...,Afegeix una etiqueta ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},Nou {0}: # {1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},Nou {0}: # {1}
 DocType: Data Migration Run,Insert,Insereix
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Seleccioneu {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,Introduïu l'URL base
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,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/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,Inicia sessió o entrar al sistema per començar
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,Inicia sessió o entrar al sistema per començar
 DocType: Blog Post,Guest,Convidat
 DocType: DocType,Title Field,Title Field
 DocType: Error Log,Error Log,Registre d'errors
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"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."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} és obligatori
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} és obligatori
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","Opcions de nomenclatura:
  1. field: [fieldname] - Per Field
  2. naming_series: - Per nomenar sèries (el camp anomenat nom_series ha d'estar present
  3. Pregunta : usuari indicador d'un nom
  4. [sèrie] - Sèrie per prefix (separat per un punt); per exemple PRE. #####
  5. concatenate: [fieldname1], [fieldname2], ... [fieldnameX] - Per concatenació de noms de camp (podeu concatenar tants camps com vulgueu. L'opció de la sèrie també funciona)
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,Propietari DocType: Communication,Visit,Visita DocType: LDAP Settings,LDAP Search String,Cadena de cerca LDAP DocType: Translation,Translation,traducció -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Configuració> Personalitza el formulari apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Sr DocType: Custom Script,Client,Client apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,Selecciona la columna @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,Importa registre apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Embed image slideshows in website pages. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,Enviar DocType: Workflow Action Master,Workflow Action Name,Nom de l'acció del flux de treball (Workflow) -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,DocType can not be merged +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,DocType can not be merged,DocType can not be merged DocType: Web Form Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py +270,Not a zip file,No és un fitxer zip DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,Esdeveniment doc apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,Vostè DocType: Braintree Settings,Braintree Settings,Configuració de Braintree DocType: Website Theme,lowercase,minúscules -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,Seleccioneu Columnes basades en apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,Desa el filtre DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},No es pot eliminar {0} +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,Sense avantpassats de DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,El Newsletter ja s'ha enviat apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry",La sessió de sessió ha caducat i actualitza la pàgina per tornar-ho a intentar @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,Cancel·la la subscripció de corre DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Seleccioneu una imatge d'ample aprox 150px amb fons transparent per obtenir millors resultats. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Aplicacions de tercers apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,El primer usuari es convertirà en l'Administrador del sistema (que pot canviar això més endavant). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No s'ha trobat cap plantilla d'adreça predeterminada. Creeu-ne un de nou des de Configuració> Impressió i marca> Plantilla d'adreces. apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,El DocType ha de ser presentable per a l'esdeveniment Doc seleccionat ,App Installer,Aplicació Instal·lador DocType: Workflow State,circle-arrow-up,cercle de fletxa amunt DocType: Email Domain,Email Domain,domini de correu electrònic DocType: Workflow State,italic,itàlic -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0}: No es pot establir d'importació sense Crea +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0}: No es pot establir d'importació sense Crea DocType: SMS Settings,Enter url parameter for message,Introdueixi paràmetre url per al missatge apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,Mostra l'informe al vostre navegador apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Esdeveniments i altres calendaris. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Tots els camps són necessaris per enviar el comentari. +DocType: Print Settings,Printer Name,Nom de la impressora +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,Arrossega per ordenar les columnes apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Amples es poden establir en píxels o%. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,Començar DocType: Contact,First Name,Nom @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,Arxius apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Permisos d'aconseguir aplicar en usuaris amb base en el rols que se'ls assigna. apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,No et permet enviar missatges de correu electrònic relacionats amb aquest document -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,Seleccioneu almenys 1 columna d'{0} per ordenar / grup +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,Seleccioneu almenys 1 columna d'{0} per ordenar / grup DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Comprovar això si està provant el pagament mitjançant l'API de Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,No se li permet eliminar un tema web estàndar DocType: Data Import,Log Details,Detalls del registre DocType: Feedback Trigger,Example,Exemple DocType: Webhook Header,Webhook Header,Encapçalament Webhook +DocType: Print Settings,Print Server,Servidor d'impressió DocType: Workflow State,gift,regal DocType: Workflow Action,Completed By,Completat amb apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Reqd @@ -223,12 +227,13 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS 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/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,Documentació +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,Documentació DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,Eliminar {0} articles de forma permanent? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,No es permet DocType: DocShare,Internal record of document shares,Registre intern de documents accions DocType: Workflow State,Comment,Comentari +DocType: Data Migration Plan,Postprocess Method,Mètode de postprocessos apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,Fer una foto apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","Podeu canviar els documents presentats, cancel·lant-los i després esmenant-los." DocType: Data Import,Update records,Actualitza els registres @@ -236,20 +241,20 @@ 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/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,Guardar com +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,Guardar com DocType: Communication,Seen,Vist apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,Mostra més detalls DocType: System Settings,Run scheduled jobs only if checked,Executar els treballs programats només si s'activa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,només es mostrarà si s'habiliten els títols de secció apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arxiu -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,Càrrega d'arxius +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,Càrrega d'arxius DocType: Activity Log,Message,Missatge DocType: Communication,Rating,classificació DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Print Width of the field, if the field is a column in a table" DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,Nom de camp incorrecte {0} a la configuració add_fetch del script personalitzat +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,Nom de camp incorrecte {0} a la configuració add_fetch del script personalitzat DocType: Workflow State,headphones,auriculars -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,Es requereix contrasenya o seleccioneu Tot esperant la contrasenya +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,Es requereix contrasenya o seleccioneu Tot esperant la contrasenya DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,per exemple replies@yourcomany.com. Totes les respostes vindran a aquesta safata d'entrada. DocType: Slack Webhook URL,Slack Webhook URL,S'ha reduït l'URL de Webhook DocType: Data Migration Run,Current Mapping,Mapeig actual @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grups de doctypes apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Integració de Google Maps DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,Restablir la contrasenya +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,Mostra caps de setmana DocType: Workflow State,remove-circle,remove-circle DocType: Help Article,Beginner,principiant DocType: Contact,Is Primary Contact,És Contacte principal apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,Javascript to append to the head section of the page. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,No es pot imprimir esborranys de documents +apps/frappe/frappe/www/printview.py +80,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 +12,Reset to defaults,Torna als valors inicials DocType: Workflow,Transition Rules,Regles de Transició apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Exemple: -DocType: Google Maps,Google Maps,Google Maps 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 apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} no pot tenir caràcters especials com {1} @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,Actualit apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,Error: Document ha estat modificat després de que l'hagis obert apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} desconnectat: {1} DocType: Address,West Bengal,Bengala Occidental -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0}: No es pot establir Assignar Enviar si no submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0}: No es pot establir Assignar Enviar si no submittable DocType: Transaction Log,Row Index,Índex de files DocType: Social Login Key,Facebook,Facebook -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",Filtrat per "{0}" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",Filtrat per "{0}" DocType: Salutation,Administrator,Administrador DocType: Activity Log,Closed,Tancat DocType: Blog Settings,Blog Title,Títol del blog apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,funcions estàndard no es poden desactivar -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,Tipus de xat +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,Tipus de xat DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,No es pot utilitzar sub-consulta per tal de +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,No es pot utilitzar sub-consulta per tal de DocType: Web Form,Button Help,El botó d'ajuda DocType: Kanban Board Column,purple,porpra DocType: About Us Settings,Team Members,Membres de l'equip @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",Condicions de SQ DocType: User,Get your globally recognized avatar from Gravatar.com,Aconsegueix el teu avatar reconegut globalment des Gravatar.com apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","La seva subscripció expira el {0}. Per renovar, {1}." DocType: Workflow State,plus-sign,signe més -apps/frappe/frappe/__init__.py +918,App {0} is not installed,App {0} no està instal·lat +apps/frappe/frappe/__init__.py +994,App {0} is not installed,App {0} no està instal·lat DocType: Data Migration Plan,Mappings,Assignacions DocType: Notification Recipient,Notification Recipient,Destinatari de notificació DocType: Workflow State,Refresh,Refrescar DocType: Event,Public,Públic -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,No hi ha res a mostrar +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,No hi ha res a mostrar DocType: System Settings,Enable Two Factor Auth,Activa l'autenticació de dos factors -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[Urgent] S'ha produït un error en crear% s per a% s recurrents +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[Urgent] S'ha produït un error en crear% s per a% s recurrents apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Em va agradar Per DocType: DocField,Print Hide If No Value,Imprimir amaga Si No Valor DocType: Kanban Board Column,yellow,groc -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,Es publica camp ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,Es publica camp ha de ser un nom de camp vàlid apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Carregar document adjunt DocType: Block Module,Block Module,Mòdul de bloc apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,nou valor +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,No té permís per editar apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Afegir una columna apps/frappe/frappe/www/contact.html +34,Your email address,La seva adreça de correu electrònic DocType: Desktop Icon,Module,Mòdul 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/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,Assegureu-vos que els Documents de comunicació de referència no estiguin enllaçats circularment. +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,Assegureu-vos que els Documents de comunicació de referència no estiguin enllaçats circularment. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Crear un nou format apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,No es pot crear el cubell: {0}. Canvieu-lo a un nom més únic. DocType: Webhook,Request URL,URL de sol·licitud @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,és Taula apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,Apliqueu el permís d'usuari per seguir DocTypes DocType: Email Account,Total number of emails to sync in initial sync process ,Nombre total de missatges de correu electrònic per sincronitzar en el procés de sincronització inicial DocType: Website Settings,Set Banner from Image,Conjunt de la bandera de la Imatge -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Cerca global +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,Cerca global DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},Una nova compte ha estat creat per a vostè en {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,Les instruccions enviades per correu electrònic @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Bandera de correu electrònic de la cua apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,Fulls d'estils per a formats d'impressió apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,No pot identificar obert {0}. Intentar una altra cosa. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,La seva informació s'ha enviat -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,L'usuari {0} no es pot eliminar +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,La seva informació s'ha enviat +apps/frappe/frappe/core/doctype/user/user.py +305,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 +143,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. DocType: DocType,App,App @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Mostra t DocType: Workflow State,Print,Impressió DocType: User,Restrict IP,Restringir IP apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,panell -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,No es poden enviar missatges de correu electrònic en aquest moment -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,Busca o escriu una ordre +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,No es poden enviar missatges de correu electrònic en aquest moment +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,Busca o escriu una ordre DocType: Activity Log,Timeline Name,Nom de la línia de temps DocType: Email Account,e.g. smtp.gmail.com,per exemple smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,Afegir una nova regla @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,C DocType: Top Bar Item,Parent Label,Etiqueta de Pares apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","La seva petició ha estat rebuda. Li contestarem en breu. Si vostè té alguna informació addicional, si us plau respongui a aquest correu." DocType: GCalendar Account,Allow GCalendar Access,Permet l'accés a GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} és un camp obligatori +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} és un camp obligatori apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,S'ha requerit el token d'inici de sessió DocType: Event,Repeat Till,Repeteix Fins apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,Nou apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,"Si us plau, establir l'adreça URL de l'escriptura en Configuració GSuite" +DocType: Google Maps Settings,Google Maps Settings,Configuració de Google Maps apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Carregant ... DocType: DocField,Password,Contrasenya apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,"El seu sistema s'està actualitzant. Si us plau, actualitzi de nou després d'uns moments" @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,No hi ha registres coincidents. Cercar alguna cosa nova DocType: Chat Profile,Away,Away DocType: Currency,Fraction Units,Fraction Units -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} de {1} a {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} de {1} a {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Marqueu com a fet DocType: Chat Message,Type,Tipus DocType: Activity Log,Subject,Subjecte @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,Quantitat basada en el Camp apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,L'usuari és obligatori per Compartir DocType: DocField,Hidden,Ocult DocType: Web Form,Allow Incomplete Forms,Permetre formes incompletes -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} s'ha d'establir primer +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,La generació de PDF ha fallat +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} s'ha d'establir primer apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","Utilitzar algunes paraules, evitar frases comuns." DocType: Workflow State,plane,avió apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Siestàs carregant nous registres, ""Naming Series"" és obligatori, si està present." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,Rep alertes Avui -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DOCTYPE només es pot canviar el nom per Administrator +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,Rep alertes Avui +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DOCTYPE només es pot canviar el nom per Administrator DocType: Chat Message,Chat Message,Missatge de xat apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},El correu electrònic no s'ha verificat amb {0} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},canvi de valor de {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},canvi de valor de {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Si l'usuari té alguna funció verificada, l'usuari es converteix en un "Usuari del sistema". "Usuari del sistema" té accés a l'escriptori" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,"Si us plau, consultar el seu correu electrònic per a la verificació" -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,La carpeta no pot estar en l'extrem del formulari +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,"Si us plau, consultar el seu correu electrònic per a la verificació" +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,La carpeta no pot estar en l'extrem del formulari DocType: Communication,Bounced,Rebotats DocType: Deleted Document,Deleted Name,nom esborrat apps/frappe/frappe/config/setup.py +14,System and Website Users,Usuaris de sistema i lloc web @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,Estat del Doc DocType: Data Migration Run,Pull Update,Treu l'actualització DocType: Auto Email Report,No of Rows (Max 500),No de files (màx 500) DocType: Language,Language Code,Codi d'idioma +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: s'envien per correu electrònic per defecte les còpies de seguretat fallides. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","La seva descàrrega s'està construint, això pot trigar uns instants ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,Afegeix un filtre apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS enviat als telèfons: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,El teu vot: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} i {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,Comença una conversa. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,El teu vot: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El compte de correu electrònic no està configurat. Creeu un compte de correu electrònic nova a Configuració> Correu electrònic> Compte de correu electrònic +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} i {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,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 DocType: Data Migration Run,Current Mapping Start,Comença el mapa actual apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,El correu electrònic ha estat marcat com a correu brossa DocType: About Us Settings,Website Manager,Gestor de la Pàgina web -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,S'ha desconnectat la càrrega d'arxius. Siusplau torna-ho a provar. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,Camp de cerca no vàlid +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,S'ha desconnectat la càrrega d'arxius. Siusplau torna-ho a provar. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,Traduccions apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,Vostè Projecte seleccionat o documents cancel·lats -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},S'ha definit el document {0} a l'estat {1} per {2} -apps/frappe/frappe/model/document.py +1211,Document Queued,document en cua +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},S'ha definit el document {0} a l'estat {1} per {2} +apps/frappe/frappe/model/document.py +1212,Document Queued,document en cua DocType: GSuite Templates,Destination ID,ID de destinació DocType: Desktop Icon,List,Llista DocType: Activity Log,Link Name,Nom de l'enllaç -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,El camp {0} a la fila {1} no pot ser ocultat i obligatori sense valor predeterminat +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,El camp {0} a la fila {1} no pot ser ocultat i obligatori sense valor predeterminat DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,Contrasenya invàlida: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,Contrasenya invàlida: DocType: Print Settings,Send document web view link in email,Enviar document internacionalització del link a l'email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,La seva opinió de document {0} es guarda correctament apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Anterior -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,Re: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} files de {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,Re: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} files de {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Parts de moneda. Per exemple ""Cèntims""" apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,Nom de connexió -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Seleccioneu el fitxer pujat +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Seleccioneu el fitxer pujat DocType: Letter Head,Check this to make this the default letter head in all prints,Marqueu això per fer aquest cap de la carta per defecte en totes les impressions DocType: Print Format,Server,Servidor -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,Junta nou Kanban +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,Junta nou Kanban DocType: Desktop Icon,Link,Enllaç apps/frappe/frappe/utils/file_manager.py +122,No file attached,No hi ha cap arxiu adjunt DocType: Version,Version,Versió +DocType: S3 Backup Settings,Endpoint URL,URL del punt final apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,Gràfics DocType: User,Fill Screen,Omplir pantalla apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,Hi ha un perfil de xat per a l'usuari {usuari}. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,Els permisos s'apliquen automàticament als informes estàndard i a les cerques. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,S'ha produït un error en carregar -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,Edita a través Pujar +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,Edita a través Pujar apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Tipus de document ..., per exemple, al client" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,La condició '{0}' no és vàlida DocType: Workflow State,barcode,Barcode @@ -486,22 +496,24 @@ DocType: Country,Country Name,Nom del país 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 +5,"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 -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,Camp d'imatge ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,Camp d'imatge ha de ser un nom de camp vàlid DocType: Chat Token,Token,simbòlic DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (name) of the entity whose property is to be set apps/frappe/frappe/limits.py +84,"To renew, {0}.","Per renovar, {0}." DocType: Website Settings,Website Theme Image Link,Lloc web Imatge per tema Enllaç DocType: Web Form,Sidebar Items,Sidebar Items +DocType: Web Form,Show as Grid,Mostra com a graella apps/frappe/frappe/installer.py +129,App {0} already installed,Aplicació {0} ja instal·lat -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Sense previsualització +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,Sense previsualització DocType: Workflow State,exclamation-sign,Signe d'exclamació apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Mostra Permisos -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,camp de línia de temps ha de ser un vincle o enllaç dinàmic +DocType: Data Import,New data will be inserted.,S'han d'inserir noves dades. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,camp de línia de temps ha de ser un vincle o enllaç dinàmic apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Rang de dates apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Pàgina {0} de {1} DocType: About Us Settings,Introduce your company to the website visitor.,Presenta la teva empresa al visitant del lloc web. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json","clau de xifrat no és vàlid, Si us plau, comproveu site_config.json" +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json","clau de xifrat no és vàlid, Si us plau, comproveu site_config.json" DocType: SMS Settings,Receiver Parameter,Paràmetre de Receptor DocType: Data Migration Mapping Detail,Remote Fieldname,Nom del camp remot DocType: Communication,To,A @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,Mida de la Font DocType: System Settings,Disable Standard Email Footer,Desactivar Estàndard Email Peu de pàgina DocType: Workflow State,facetime-video,FaceTime i vídeo apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 comentari -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,vist +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,vist DocType: Notification,Days Before,Dies abans DocType: Workflow State,volume-down,volum cap avall -apps/frappe/frappe/desk/reportview.py +268,No Tags,No hi ha etiquetes +apps/frappe/frappe/desk/reportview.py +270,No Tags,No hi ha etiquetes DocType: DocType,List View Settings,Veure configuració de la llista DocType: Email Account,Send Notification to,Enviar Notificació a DocType: DocField,Collapsible,Plegable apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Saved -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,En què necessites ajuda? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,En què necessites ajuda? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opcions per seleccioni. Cada opció en una nova línia. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,Cancel·lar Permanentment {0}? DocType: Workflow State,music,Música +DocType: Website Theme,Text Styles,Estils de text apps/frappe/frappe/www/qrcode.html +3,QR Code,Codi QR -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,Última data modificada +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,Última data modificada DocType: Chat Profile,Settings,Ajustos DocType: Print Format,Style Settings,Ajustos apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Camps d'eix Y -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,Ordenar camp {0} ha de ser un nom de camp vàlid -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,Més +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,Ordenar camp {0} ha de ser un nom de camp vàlid +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Més DocType: Contact,Sales Manager,Gerent De Vendes -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,Canviar el nom +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,Canviar el nom DocType: Print Format,Format Data,Format de dades DocType: List Filter,Filter Name,Nom del filtre apps/frappe/frappe/utils/bot.py +91,Like,Com @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,Nom de la sala de xat DocType: OAuth Client,Grant Type,Tipus de subvenció apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Comproveu que els documents són llegibles per un usuari DocType: Deleted Document,Hub Sync ID,Identificador de sincronització del concentrador -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,Utilitza % com a comodí +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,Utilitza % com a comodí DocType: Auto Repeat,Quarterly,Trimestral apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Domini de correu electrònic no està configurat per a aquest compte, crear-ne un?" DocType: User,Reset Password Key,Restabliment de contrasenya @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Clau puntuació mínima DocType: DocType,Fields,Camps DocType: System Settings,Your organization name and address for the email footer.,El seu nom de l'organització i direcció per al peu de pàgina de correu electrònic. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Taula Pare +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,Taula Pare apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S'ha completat la còpia de seguretat S3. apps/frappe/frappe/config/desktop.py +60,Developer,Desenvolupador -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,Creat +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,Creat apps/frappe/frappe/client.py +101,No permission for {doctype},No hi ha permís per {doctype} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{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/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,Ancestres de apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Root {0} cannot be deleted apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,Cap comentari encara apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings",Configureu SMS abans de configurar-lo com a mètode d'autenticació mitjançant la configuració de SMS @@ -576,6 +590,7 @@ DocType: Contact,Open,Obert DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Defineix les accions dels estats i el següent pas i rols permesos. DocType: Data Migration Mapping,Remote Objectname,Nom de l'objecte remot apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Com a pràctica, no assigni el mateix conjunt de regles permís per a diferents funcions. En el seu lloc, establir diversos rols al mateix usuari." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,Confirmeu la vostra acció a {0} aquest document. DocType: Success Action,Next Actions HTML,Accions següents HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,Només {0} enviar per correu electrònic informes són permesos per l'usuari DocType: Address,Address Title,Direcció Títol @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Diari apps/frappe/frappe/config/setup.py +19,User Roles,Rols d'usuari DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property Setter overrides a standard DocType or Field property -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,No es pot actualitzar: Enllaç Incorrecte o caducat. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,No es pot actualitzar: Enllaç Incorrecte o caducat. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,Millor afegir algunes més lletres o una paraula apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},Codi d'inscripció d'un temps de contrasenya (OTP) de {} DocType: DocField,Set Only Once,Ajusta només una vegada DocType: Email Queue Recipient,Email Queue Recipient,Cua de correu electrònic de destinataris DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,URL del webhook -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,Nom d'usuari {0} ja existeix -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,{0}: no es pot establir d'importació com {1} no és importable +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Nom d'usuari {0} ja existeix +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,{0}: no es pot establir d'importació com {1} no és importable apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},Hi ha un error en la seva plantilla de direcció {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} és una adreça electrònica no vàlida a "Destinataris" DocType: User,Allow Desktop Icon,Permet la icona d'escriptori DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,amfitrió -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Columna {0} ja existeix. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,Columna {0} ja existeix. DocType: ToDo,High,Alt DocType: S3 Backup Settings,Secret Access Key,Clau d'accés secret apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Home -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret ha estat restablit. La inscripció serà obligatòria en el proper inici de sessió. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret ha estat restablit. La inscripció serà obligatòria en el proper inici de sessió. DocType: Communication,From Full Name,De Nom complet -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},No tens accés a l'informe: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},No tens accés a l'informe: {0} DocType: User,Send Welcome Email,Enviar Benvingut email -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,Treure filtre +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,Treure filtre +DocType: Web Form Field,Show in filter,Mostra al filtre DocType: Address,Daman and Diu,Daman i Diu -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,Projecte +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,Projecte DocType: Address,Personal,Personal apps/frappe/frappe/config/setup.py +125,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Mostra com cc @@ -625,12 +641,13 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,profe apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,No és de cap manera desenvolupador apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,La còpia de seguretat d'un fitxer està preparada DocType: DocField,In Global Search,En Recerca Global +DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,guió-esquerra apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,"És arriscat eliminar aquesta imatge: {0}. Si us plau, poseu-vos en contacte amb l'administrador del sistema." DocType: Currency,Currency Name,Nom moneda apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,No hi ha missatges de correu electrònic -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,Enllaç caducat -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,Seleccioneu el format de fitxer +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,Enllaç caducat +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,Seleccioneu el format de fitxer DocType: Report,Javascript,Javascript DocType: File,Content Hash,Hash contingut DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Emmagatzema el JSON de les últimes versions conegudes de diferents aplicacions instal·lades. S'utilitza per mostrar notes de la versió. @@ -642,16 +659,15 @@ DocType: Auto Repeat,Stopped,Detingut apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,No treure apps/frappe/frappe/desk/like.py +89,Liked,Em va agradar apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Enviar ara -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","Estàndard DOCTYPE no pot tenir format d'impressió per defecte, utilitzeu Personalitzar formulari" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","Estàndard DOCTYPE no pot tenir format d'impressió per defecte, utilitzeu Personalitzar formulari" DocType: Report,Query,Query DocType: DocType,Sort Order,Ordre de Classificació -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},'A Vista de llista' no permès per al tipus {0} a la fila {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},'A Vista de llista' no permès per al tipus {0} a la fila {1} DocType: Custom Field,Select the label after which you want to insert new field.,Selecciona l'etiqueta després de la qual vols inserir el nou camp. ,Document Share Report,Document Compartir Reportar DocType: Social Login Key,Base URL,URL base DocType: User,Last Login,Últim ingrés apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},No podeu definir 'Traduït per al camp {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},FIELDNAME es requereix a la fila {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Columna DocType: Chat Profile,Chat Profile,Perfil de xat DocType: Custom Field,Adds a custom field to a DocType,Afegeix un camp personalitzat a un DocType @@ -660,6 +676,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,Seleccionar com a mínim 1 resultat per a la impressió apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,Primer estableixi el nom i deseu el registre. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Compartit amb {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,Donar-se de baixa DocType: View log,Reference Name,Referència Nom @@ -681,17 +698,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opci apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} a {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Entrada d'error durant peticions. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} ha estat afegit al grup de correu electrònic. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,No editeu capçaleres que estiguin predefinides a la plantilla +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,No editeu capçaleres que estiguin predefinides a la plantilla apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},Codi de verificació d'inici de sessió de {} DocType: Address,Uttar Pradesh,Uttar Pradesh +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,Nota: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,Estat d'importació -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,Fer arxiu (s) privada o pública? +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,Fer arxiu (s) privada o pública? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Programat per enviar a {0} DocType: Kanban Board Column,Indicator,Indicador DocType: DocShare,Everyone,Tothom DocType: Workflow State,backward,cap enrere -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Només una regla permès amb el mateix paper, Nivell i {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Només una regla permès amb el mateix paper, Nivell i {1}" DocType: Email Queue,Add Unsubscribe Link,Afegir Enllaç Donar-se de baixa apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Cap comentari. Iniciar una nova discussió. DocType: Workflow State,share,Quota @@ -703,6 +721,7 @@ DocType: User,Last IP,Darrera IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Renovar / actualització apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,S'ha compartit un {0} document nou amb tu {1}. DocType: Data Migration Connector,Data Migration Connector,Connector de migració de dades +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ó DocType: PayPal Settings,API Password,API contrasenya apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Introduïu el mòdul python o seleccioneu el tipus de connector @@ -711,6 +730,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Darrera a apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Veure Subscriptors DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,No es pot esborrar el fitxer ja que pertany a {0} {1} pel qual no teniu permisos +DocType: Website Theme,Custom JS,Custom JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Sra DocType: Website Theme,Background Color,Color de fons apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,"Hi ha hagut errors a l'enviar el correu electrònic. Si us plau, torna a intentar-ho." @@ -719,21 +739,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,Cartografia DocType: Web Page,0 is highest,0 és el més alt apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,¿Segur que desitja tornar a vincular aquesta comunicació a {0}? -apps/frappe/frappe/www/login.html +86,Send Password,Enviar contrasenya +apps/frappe/frappe/www/login.html +87,Send Password,Enviar contrasenya +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic predeterminat des de Configuració> Correu electrònic> Compte de correu electrònic +DocType: Print Settings,Server IP,IP del servidor DocType: Email Queue,Attachments,Adjunts apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Vostè no té els permisos per accedir a aquest document DocType: Language,Language Name,Nom d'idioma DocType: Email Group Member,Email Group Member,Correu electrònic del Grup membre +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,El vostre compte s'ha bloquejat i es reprendrà després de {0} segons apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,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 +313,Duplicate name {0} {1},Nom duplicat {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},Nom duplicat {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,Torneu a provar DocType: Web Form Field,Web Form Field,Web de camp de formulari apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Amaga el camp en el Generador d'informes apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,Tens un missatge nou de: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Edició de HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,Introduïu l'URL de redirecció -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Configuració> Permisos d'usuari apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","per generar. Si es retarda, haurà de canviar manualment el camp "Repetir el dia del mes"" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,Restaurar permisos originals @@ -758,23 +780,25 @@ DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Ajuda de resposta de correu electrònic apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Informes de Report Builder són gestionats directament pel generador d'informes. Res a fer. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,"Si us plau, comproveu la vostra adreça de correu electrònic" -apps/frappe/frappe/model/document.py +1056,none of,cap de +apps/frappe/frappe/model/document.py +1057,none of,cap de apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,Enviar-me una còpia DocType: Dropbox Settings,App Secret Key,App clau secreta DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,lloc web apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Els elements marcats es mostraran a l'escriptori -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} no es pot establir per als tipus individuals +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} no es pot establir per als tipus individuals DocType: Data Import,Data Import,Importació de dades apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,Configurar el gràfic apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} està veient aquest document DocType: ToDo,Assigned By Full Name,Assignat pel nom complet apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} actualitzat -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,Informe no es pot ajustar per als tipus individuals +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,Informe no es pot ajustar per als tipus individuals +DocType: System Settings,Allow Consecutive Login Attempts ,Permet els intents d'inici de sessió consecutius apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,S'ha produït un error durant el procés de pagament. Poseu-vos en contacte amb nosaltres. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,Fa {0} dies DocType: Email Account,Awaiting Password,Tot esperant la contrasenya DocType: Address,Address Line 1,Adreça Línia 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,Sense descendents de DocType: Custom DocPerm,Role,Rol apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Configuració ... apps/frappe/frappe/utils/data.py +507,Cent,Cèntim @@ -794,10 +818,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,Aturi DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Enllaç a la pàgina que voleu obrir. Deixar en blanc si voleu que sigui un pare grup. DocType: DocType,Is Single,És Individual -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,Uneix-te a aquest lloc és fora -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} ha deixat la conversa en {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,Uneix-te a aquest lloc és fora +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} ha deixat la conversa en {1} {2} DocType: Blogger,User ID of a Blogger,ID d'usuari d'un Blogger -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,Ha de quedar almenys un administrador del sistema +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,Ha de quedar almenys un administrador del sistema DocType: GCalendar Account,Authorization Code,Codi d'autorització DocType: PayPal Settings,Mention transaction completion page URL,Menció transacció URL de la pàgina finalització DocType: Help Article,Expert,expert @@ -818,8 +842,10 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","Per afegir subjecte dinàmic, utilitzar etiquetes Jinja com
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,Aplicar permisos d'usuari DocType: User,Modules HTML,Mòduls HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Feu un seguiment si el destinatari ha obert el vostre correu electrònic.
Nota: si envieu a diversos destinataris, fins i tot si un destinatari llegeix el correu electrònic, es considerarà "Obert"" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,Camps Obligatoris DocType: DocType,Other Settings,altres ajustos DocType: Data Migration Connector,Frappe,Frape @@ -829,15 +855,13 @@ DocType: Customize Form,Change Label (via Custom Translation),Canviar etiqueta ( apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Sense permís per {0} {1} {2} DocType: Address,Permanent,permanent apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,Nota: també poden aplicar altres regles de permisos -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/templates/emails/print_link.html +2,View this in your browser,Veure això en el seu navegador DocType: DocType,Search Fields,Camps de recerca DocType: System Settings,OTP Issuer Name,Nom de l'emissor de l'OTP DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Portador d'emergència apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Cap document seleccionat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,Esteu connectat a Internet. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,Esteu connectat a Internet. DocType: Social Login Key,Enable Social Login,Habilita l'inici de sessió social DocType: Event,Event,Esdeveniment apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:","En {0}, {1} va escriure:" @@ -852,7 +876,7 @@ DocType: Print Settings,In points. Default is 9.,En punts. El valor per defecte DocType: OAuth Client,Redirect URIs,redirigir URI apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},Enviant {0} DocType: Workflow State,heart,cor -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,Edat requereix contrasenya. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,Edat requereix contrasenya. DocType: Role,Desk Access,departament d'accessibilitat DocType: Workflow State,minus,menys DocType: S3 Backup Settings,Bucket,Cubeta @@ -860,8 +884,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,No es pot carregar la càmera. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,Correu electrònic de benvinguda enviat apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,Anem a preparar el sistema per al primer ús. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,Ja està registrat +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,Ja està registrat DocType: System Settings,Float Precision,Precisió Float +DocType: Notification,Sender Email,Email del remitent apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Només l'administrador pot editar apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Nom de l'arxiu DocType: DocType,Editable Grid,Editable quadrícula @@ -872,17 +897,19 @@ DocType: Communication,Clicked,Seguit apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},No té permís per '{0}' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Programat per enviar DocType: DocType,Track Seen,Vist a la pista -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,Aquest mètode només es pot utilitzar per crear un comentari +DocType: Dropbox Settings,File Backup,Còpia de seguretat d'arxius +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,Aquest mètode només es pot utilitzar per crear un comentari DocType: Kanban Board Column,orange,taronja apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,{0} no trobat apps/frappe/frappe/config/setup.py +259,Add custom forms.,Afegir formularis personalitzats. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} {2} en -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,presentat aquest document +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,presentat aquest document apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,El sistema ofereix moltes funcions predefinides. Podeu afegir noves funcions per establir permisos més fins. DocType: Communication,CC,CC DocType: Country,Geo,Geo +DocType: Data Migration Run,Trigger Name,Nom del disparador DocType: Blog Category,Blog Category,Categoria Blog -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,No es pot assignar a causa següent condició falla: +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,No es pot assignar a causa següent condició falla: DocType: Role Permission for Page and Report,Roles HTML,Rols HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Seleccioneu una imatge de marca en primer lloc. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Actiu @@ -906,16 +933,17 @@ DocType: Address,Other Territory,Un altre territori ,Messages,Missatges apps/frappe/frappe/config/website.py +83,Portal,Portal DocType: Email Account,Use Different Email Login ID,Utilitzar diferents ID de sessió de correu electrònic -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,Must specify a Query to run +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,Must specify a Query to run apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Sembla que hi ha un problema amb la configuració de Braintree del servidor. No us preocupeu, en cas de fracàs, l'import es reemborsarà al vostre compte." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,Gestioneu aplicacions de tercers apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","Ajustaments d'idioma, data i hora" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Configuració> Permisos d'usuari DocType: User Email,User Email,user Correu electrònic DocType: Event,Saturday,Dissabte DocType: User,Represents a User in the system.,Representa un usuari en el sistema. DocType: Communication,Label,Etiqueta -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","La tasca {0}, que va assignar a {1}, s'ha tancat." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,"Si us plau, tancament aquesta finestra" +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","La tasca {0}, que va assignar a {1}, s'ha tancat." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,"Si us plau, tancament aquesta finestra" DocType: Print Format,Print Format Type,Format d'impressió Tipus DocType: Newsletter,A Lead with this Email Address should exist,Hi ha d'haver una iniciativa amb aquesta adreça de correu electrònic apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Aplicacions de codi obert per a la Web @@ -931,8 +959,8 @@ DocType: Data Export,Excel,sobresortir apps/frappe/frappe/templates/emails/password_update.html +2,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: Feedback Trigger,Condition,Condició -apps/frappe/frappe/utils/data.py +619,{0} hours ago,Fa {0} hores -apps/frappe/frappe/utils/data.py +629,1 month ago,fa 1 mes +apps/frappe/frappe/utils/data.py +621,{0} hours ago,Fa {0} hores +apps/frappe/frappe/utils/data.py +631,1 month ago,fa 1 mes DocType: Contact,User ID,ID d'usuari DocType: Communication,Sent,Enviat DocType: Address,Kerala,Kerala @@ -951,7 +979,7 @@ DocType: GSuite Templates,Related DocType,doctype relacionada apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Edita per afegir contingut apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,Seleccioneu Idiomes apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,Detalls de la targeta -apps/frappe/frappe/__init__.py +538,No permission for {0},Sense permís per {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},Sense permís per {0} DocType: DocType,Advanced,Avançat apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,Sembla clau d'API o API secret està malament !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referència: {0} {1} @@ -961,13 +989,13 @@ DocType: Address,Address Type,Tipus d'adreça apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,"Nom d'usuari o contrassenya de suport no vàlids. Si us plau, rectifica i torna a intentar-ho." DocType: Email Account,Yahoo Mail,Correu De Yahoo apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,La seva subscripció expira demà. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,Error en la notificació +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,Error en la notificació apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,senyora apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Actualitzat {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Mestre DocType: DocType,User Cannot Create,L'usuari no pot crear apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,Carpeta {0} no existeix -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,Accés Dropbox està aprovat! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,Accés Dropbox està aprovat! DocType: Customize Form,Enter Form Type,Introduïu el tipus de formulari apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Paràmetre de Missing Kanban Nom del tauler apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,No hi ha registres etiquetats. @@ -976,14 +1004,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,Enviar contrasenya Notificació d'actualització apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Permetre DOCTYPE, DOCTYPE. Vés amb compte!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formats personalitzats per a impressió, correu electrònic" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,Actualitzat Per Nova Versió +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,Actualitzat Per Nova Versió DocType: Custom Field,Depends On,Depèn de DocType: Kanban Board Column,Green,Verd DocType: Custom DocPerm,Additional Permissions,Permisos addicionals DocType: Email Account,Always use Account's Email Address as Sender,Utilitzar sempre de compte direcció de correu electrònic com a remitent apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Inicia sessió per comentar -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Comenceu a introduir dades per sota d'aquesta línia -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},valors modificats per {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,Comenceu a introduir dades per sota d'aquesta línia +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},valors modificats per {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","L'identificador de correu electrònic ha de ser únic, el compte de correu electrònic ja existeix \ per {0}" DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Personalitza ... DocType: Print Format,Align Labels to the Right,Alinea etiquetes cap a la dreta @@ -1002,39 +1032,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,Edici DocType: Workflow Action Master,Workflow Action Master,Mestre d'accions de Flux de treball DocType: Custom Field,Field Type,Tipus de camp apps/frappe/frappe/utils/data.py +537,only.,només. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,El secret d'OTP només es pot restablir per l'administrador. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,El secret d'OTP només es pot restablir per l'administrador. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,Evitar anys que s'associen amb vostè. apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,Restringeix l'usuari per un document específic DocType: GSuite Templates,GSuite Templates,plantilles GSuite +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,Descendent apps/frappe/frappe/utils/goal.py +110,Goal,Meta apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,"No vàlida del servidor de correu. Si us plau, rectifiqui i torni a intentar-ho." DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","Per Links, introdueixi la DOCTYPE com rang. En Seleccionar ingressi llista d'opcions, cadascun en una nova línia." DocType: Workflow State,film,film -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},No tens permís per llegir {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},No tens permís per llegir {0} apps/frappe/frappe/config/desktop.py +8,Tools,Instruments apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,Evitar els últims anys. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,Nodes arrel múltiple no permesa. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Si està habilitat, els usuaris rebran una notificació cada vegada que s'inicia sessió. Si no està habilitada, els usuaris només han de ser notificats una vegada." -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,La condició {0} no és vàlida +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,La condició {0} no és vàlida DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Si se selecciona, els usuaris no podran veure el quadre de diàleg de confirmació d'accés." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,Es requereix camp ID per editar valors usant informe. Seleccioneu el camp ID amb el Selector de columna apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Comentaris -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,Confirmar -apps/frappe/frappe/www/login.html +58,Forgot Password?,Has oblidat la contrasenya? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,Confirmar +apps/frappe/frappe/www/login.html +59,Forgot Password?,Has oblidat la contrasenya? DocType: System Settings,yyyy-mm-dd,aaaa-mm-dd apps/frappe/frappe/desk/report/todo/todo.py +19,ID,identificació apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,Error del servidor -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Cal iniciar una sessió Login +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Cal iniciar una sessió Login DocType: Website Slideshow,Website Slideshow,Website Slideshow apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,No hi ha dades DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Enllaç que és la pàgina d'inici del lloc web. Enllaços estàndard (índex, inici de sessió, productes, bloc, sobre, contacte)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Error d'autenticació al rebre correus electrònics de compte de correu electrònic {0}. Missatge del servidor: {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Error d'autenticació al rebre correus electrònics de compte de correu electrònic {0}. Missatge del servidor: {1} DocType: Custom Field,Custom Field,Camp personalitzat -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,Si us plau especificar quin camp de data ha de ser verificat +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,Si us plau especificar quin camp de data ha de ser verificat DocType: Custom DocPerm,Set User Permissions,Establir permisos d'usuari apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},No està permès per {0} = {1} DocType: Email Account,Email Account Name,Nom correu electrònic -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,"Va produir un error en generar el testimoni d'accés Dropbox. Si us plau, comproveu el registre d'errors per a més detalls." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,"Va produir un error en generar el testimoni d'accés Dropbox. Si us plau, comproveu el registre d'errors per a més detalls." DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Newsletters a contactes, clients potencials." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","per exemple ""Suport "","" Vendes "","" Jerry Yang """ @@ -1043,19 +1075,20 @@ DocType: DocField,Description,Descripció DocType: Print Settings,Repeat Header and Footer in PDF,Repetir capçalera i peu de pàgina en PDF 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 +20,Column Name cannot be empty,Nom de la columna no pot estar buida -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},S'ha produït un error en connectar al compte de correu electrònic {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,Nom de la columna no pot estar buida +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},S'ha produït un error en connectar al compte de correu electrònic {0} DocType: Workflow State,fast-forward,avanç ràpid DocType: Communication,Communication,Comunicació apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Comproveu columnes per seleccionar, arrossegar per establir l'ordre." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,Aquesta és una acció permanent i no es pot desfer. Voleu continuar? apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,Inicieu sessió i visualitzeu-lo al navegador DocType: Event,Every Day,Cada Dia DocType: LDAP Settings,Password for Base DN,Clau per a la base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,taula camp -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,Columnes basat en +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,Columnes basat en apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,Especificar les claus per permetre la integració amb Google GSuite DocType: Workflow State,move,moviment -apps/frappe/frappe/model/document.py +1254,Action Failed,Va fallar l'acció +apps/frappe/frappe/model/document.py +1255,Action Failed,Va fallar l'acció DocType: List Filter,For User,per usuari DocType: View log,View log,Veure el registre apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,Pla General de Comptabilitat @@ -1063,11 +1096,11 @@ DocType: Address,Assam,Assam apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Heu {0} dies restants a la vostra subscripció apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Sortint compte de correu electrònic no és correcta DocType: Transaction Log,Chaining Hash,Encadenant Hash -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Temperorily persones de mobilitat reduïda +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Temperorily persones de mobilitat reduïda apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,"Si us plau, estableix Adreça de correu electrònic" DocType: System Settings,Date and Number Format,Format de Data i nombres -apps/frappe/frappe/model/document.py +1055,one of,un -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,Comprovació d'un moment +apps/frappe/frappe/model/document.py +1056,one of,un +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,Comprovació d'un moment apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Mostrar Etiquetes DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Si Aplicar estricte de permisos d'usuari es comprova i permisos d'usuari es defineix per a un tipus de document per a un usuari, llavors tots els documents en què el valor de la relació està en blanc, no es mostraran a l'usuari que" DocType: Address,Billing,Facturació @@ -1078,7 +1111,7 @@ DocType: User,Middle Name (Optional),Cognom 1 apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,No permès apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,Següents camps tenen valors que falten: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,Primera transacció -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,No tens prou permisos per completar l'acció +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,No tens prou permisos per completar l'acció apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,No hi ha resultats DocType: System Settings,Security,Seguretat apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Programat per enviar a {0} destinataris @@ -1099,6 +1132,7 @@ DocType: Kanban Board Column,lightblue,blau clar apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,El mateix camp s'introdueix més d'una vegada apps/frappe/frappe/templates/includes/list/filters.html +19,clear,clar apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Cada dia els esdeveniments han d'acabar en el mateix dia. +DocType: Prepared Report,Filter Values,Valors del filtre DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,Falla DocType: Workflow State,download-alt,download-alt @@ -1106,13 +1140,13 @@ DocType: Data Migration Run,Pull Failed,Toca fallat DocType: Communication,Feedback Request,Sol·licitud de retroalimentació apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,Importar dades des de fitxers CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Següents camps falten: -apps/frappe/frappe/www/login.html +28,Sign in,Registra `t +apps/frappe/frappe/www/login.html +29,Sign in,Registra `t apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},S'està cancel·lant {0} DocType: Web Page,Main Section,Secció Principal DocType: Page,Icon,Icona -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","Consell: Incloure símbols, números i lletres majúscules en la contrasenya" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","Consell: Incloure símbols, números i lletres majúscules en la contrasenya" DocType: DocField,Allow in Quick Entry,Permetre en una entrada ràpida -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/aaaa apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,prova d'escriptura GSuite DocType: System Settings,Backups,Les còpies de seguretat @@ -1129,23 +1163,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,No és una DocType: Footer Item,Target,Objectiu DocType: System Settings,Number of Backups,Nombre de còpies de seguretat DocType: Website Settings,Copyright,Drets d'autor -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,anar +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,anar DocType: OAuth Authorization Code,Invalid,Invàlid DocType: ToDo,Due Date,Data De Venciment apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,dia trimestre DocType: Website Settings,Hide Footer Signup,Hide Footer Inscripció -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,cancel·lat aquest document +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,cancel·lat aquest document apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Write a Python file in the same folder where this is saved and return column and result. +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,Afegeix a la taula DocType: DocType,Sort Field,Ordenar Camp DocType: Razorpay Settings,Razorpay Settings,ajustos Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,Editar el filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,El camp {0} de tipus {1} no pot ser obligatori +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,Editar el filtre +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,El camp {0} de tipus {1} no pot ser obligatori apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Afegir més DocType: System Settings,Session Expiry Mobile,Sessió de caducitat mòbil apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,Usuari o contrasenya incorrectes apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,Resultats de la cerca apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,Introduïu l'URL de token d'accés -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,Seleccioneu per descarregar: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,Seleccioneu per descarregar: DocType: Notification,Slack,Fluix DocType: Custom DocPerm,If user is the owner,Si l'usuari és el propietari ,Activity,Activitat @@ -1154,7 +1189,7 @@ DocType: User Permission,Allow,Permetre apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,Evitem de paraules i caràcters repetits DocType: Communication,Delayed,Retard apps/frappe/frappe/config/setup.py +140,List of backups available for download,Llista de les còpies de seguretat disponibles per a baixar -apps/frappe/frappe/www/login.html +71,Sign up,Registra't +apps/frappe/frappe/www/login.html +72,Sign up,Registra't apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,Fila {0}: No es permet desactivar el Mandatari per als camps estàndard DocType: Test Runner,Output,sortida DocType: Notification,Set Property After Alert,Després d'establir la propietat Alerta @@ -1165,7 +1200,6 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Data Export,File Type,Tipus d'arxiu DocType: Workflow State,leaf,full DocType: Portal Menu Item,Portal Menu Item,Portal de l'Menú -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,Esborra la configuració de l'usuari DocType: Contact Us Settings,Email ID,Identificació de l'email DocType: Activity Log,Keep track of all update feeds,Feu un seguiment de tots els feeds d'actualització DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Una llista dels recursos que el client d'aplicació tindrà accés a la vegada que l'usuari ho permet.
per exemple, el projecte" @@ -1175,7 +1209,7 @@ DocType: Error Snapshot,Timestamp,Marca de temps DocType: Patch Log,Patch Log,Patch Log DocType: Data Migration Mapping,Local Primary Key,Clau primària local apps/frappe/frappe/utils/bot.py +164,Hello {0},Hola {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},Benvingut a {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},Benvingut a {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Afegir apps/frappe/frappe/www/me.html +40,Profile,Perfil DocType: Communication,Sent or Received,Enviat o rebut @@ -1199,7 +1233,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,Configuració per a DocType: Workflow State,minus-sign,signe menys apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,Extraviat -apps/frappe/frappe/www/printview.py +200,No {0} permission,No {0} permís +apps/frappe/frappe/www/printview.py +199,No {0} permission,No {0} permís apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,Exportació permisos personalitzats DocType: Data Export,Fields Multicheck,Camps Multicheck DocType: Activity Log,Login,Iniciar Sessió @@ -1207,7 +1241,7 @@ DocType: Web Form,Payments,Pagaments apps/frappe/frappe/www/qrcode.html +9,Hi {0},Hola {0} DocType: System Settings,Enable Scheduled Jobs,Habilita Treballs programats apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,Notes: -apps/frappe/frappe/www/message.html +65,Status: {0},Estat: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},Estat: {0} DocType: DocShare,Document Name,Nom del document apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Marca com a correu brossa DocType: ToDo,Medium,Medium @@ -1225,7 +1259,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},Nom de {0} no apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Des de la data apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Èxit apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},Sol·licitud de retroalimentació {0} és enviada a {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,Sessió expirada +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,Sessió expirada DocType: Kanban Board Column,Kanban Board Column,Columna Junta Kanban apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,files rectes de tecles són fàcils d'endevinar DocType: Communication,Phone No.,Número de Telèfon @@ -1248,17 +1282,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},Ignorat: {0} a {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,Registre d'errors d'esdeveniments automatitzats (Scheduler). -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),No és un fitxer de valors separats per comes vàlid (fitxer CSV) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),No és un fitxer de valors separats per comes vàlid (fitxer CSV) DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Per defecte entrant DocType: Workflow State,repeat,repetició DocType: Website Settings,Banner,Bandera 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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Ajuda i Recerca -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,Registrat però discapacitats +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,Registrat però discapacitats DocType: DocType,Hide Copy,Amaga Copiar apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,Desactiveu totes les funcions -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} ha de ser únic +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} ha de ser únic apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,Fila apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","Plantilla CC, BCC i correu electrònic" DocType: Data Migration Mapping Detail,Local Fieldname,Nom del camp local @@ -1266,7 +1300,7 @@ DocType: User Permission,Linked Doctypes,Linkcted Doctypes DocType: DocType,Track Changes,Control de canvis DocType: Workflow State,Check,comprovar DocType: Chat Profile,Offline,desconnectat -DocType: Razorpay Settings,API Key,API Key +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 +82,Edit Title,Edita apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,instal·lar Aplicacions @@ -1274,6 +1308,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Documents assignades a vostè i per vostè. DocType: User,Email Signature,Signatura de correu electrònic DocType: Website Settings,Google Analytics ID,ID de Google Analytics +DocType: Web Form,"For help see Client Script API and Examples","Per obtenir ajuda, consulteu l' API i els exemples del script de Client" DocType: Website Theme,Link to your Bootstrap theme,Enllaç al seu tema de Mans a l'Obra DocType: Custom DocPerm,Delete,Esborrar apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},Nou {0} @@ -1283,10 +1318,10 @@ DocType: Print Settings,PDF Page Size,Mida de pàgina PDF DocType: Data Import,Attach file for Import,Adjunta un fitxer per importar DocType: Communication,Recipient Unsubscribed,Beneficiari no subscriure DocType: Feedback Request,Is Sent,s'envia -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,Sobre +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,Sobre apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.","Per a l'actualització, pot actualitzar només les columnes seleccionades." DocType: Chat Token,Country,País -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,Direccions +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,Direccions DocType: Communication,Shared,compartit apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,Attach Document Print DocType: Bulk Update,Field,camp @@ -1297,12 +1332,12 @@ DocType: Chat Message,URLs,URLs DocType: Data Migration Run,Total Pages,Pàgines totals DocType: DocField,Attach Image,Adjuntar imatge DocType: Workflow State,list-alt,list-alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,Contrasenya Actualitzada +apps/frappe/frappe/www/update-password.html +79,Password Updated,Contrasenya Actualitzada apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,Passos per verificar el vostre inici de sessió apps/frappe/frappe/utils/password.py +50,Password not found,La contrasenya no trobat DocType: Data Migration Mapping,Page Length,Longitud de pàgina DocType: Email Queue,Expose Recipients,exposar destinataris -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,Annexar A és obligatòria per als correus entrants +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,Annexar A és obligatòria per als correus entrants DocType: Contact,Salutation,Salutació DocType: Communication,Rejected,Rebutjat apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,Elimina l'etiqueta @@ -1313,14 +1348,14 @@ DocType: User,Set New Password,Establir una contrasenya apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},El camp {0} apareix diverses vegades en les files {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} de {1} a {2} en fila # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},El camp {0} apareix diverses vegades en les files {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{0} from {1} to {2} in row #{3},{0} de {1} a {2} en fila # {3} DocType: Communication,Expired,Caducat apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +32,Seems token you are using is invalid!,Sembla que el testimoni que esteu utilitzant no és vàlid. DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Nombre de columnes per a un camp en una quadrícula (Total de columnes en una quadrícula ha de ser inferior a 11) DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Adjunt Mida màxima (en MB) -apps/frappe/frappe/www/login.html +75,Have an account? Login,Tens un compte? iniciar Sessió +apps/frappe/frappe/www/login.html +76,Have an account? Login,Tens un compte? iniciar Sessió apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Desconegut d'impressió: {0} DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},Usuari no està permès eliminar {0}: {1} @@ -1332,30 +1367,30 @@ DocType: Help Article,Likes,Gustos DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,codi guió apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,Crear usuari de correu electrònic -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,No hi ha permisos especificats +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,No hi ha permisos especificats apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} no trobat DocType: Custom Role,Custom Role,El paper d'encàrrec apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Inici / Test Carpeta 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,"Si us plau, guardi el document abans de carregar." -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,Introduïu la contrasenya +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,Introduïu la contrasenya DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Social Login Key,Social Login Provider,Proveïdor d'inici de sessió social apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Afegir un altre comentari -apps/frappe/frappe/core/doctype/data_import/importer.py +81,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. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,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. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,Edita Tipus Document apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,Cancel·lat la subscripció a Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,Doblar ha de venir abans d'un salt de secció +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,Doblar ha de venir abans d'un salt de secció apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,En desenvolupament apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,Aneu al document apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,Darrera modificació per apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,Restabliment de personalitzacions DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,estat GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0}: No es pot establir sense Cancel Enviar +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0}: No es pot establir sense Cancel Enviar DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de redireccionament obligat a Auth Code DocType: DocType,Is Submittable,És submittable -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,Menció nova +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,Menció nova apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,El valor per a un camp de verificació pot ser 0 o 1 apps/frappe/frappe/model/document.py +733,Could not find {0},No s'ha pogut trobar {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,Etiquetes de columna: @@ -1375,7 +1410,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,Grup DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select target = ""_blank"" per obrir una nova pàgina." apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,Mida de la base de dades: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,Eliminar permanentment {0}? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,Eliminar permanentment {0}? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,El mateix arxiu ja s'ha adjuntat a l'expedient apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} no és un estat de flux de treball vàlid. Actualitzeu el vostre flux de treball i torneu-ho a provar. DocType: Workflow State,wrench,wrench @@ -1389,27 +1424,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Afegir comentari DocType: DocField,Mandatory,Obligatori apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Mòdul per exportar -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0}: No s'ha establert cap conjunt permisos bàsic +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0}: No s'ha establert cap conjunt permisos bàsic apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,La seva subscripció expirarà en {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},L'enllaç de descàrrega per a la còpia de seguretat serà enviat per correu electrònic a l'adreça electrònica següent: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Significat de Presentar, anul·lar, modificar" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Per fer DocType: Test Runner,Module Path,ruta mòdul DocType: Social Login Key,Identity Details,Detalls d'identitat +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),Llavors per (opcional) DocType: File,Preview HTML,Vista prèvia HTML DocType: Desktop Icon,query-report,consulta d'informe -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Assignat a {0}: {1} DocType: DocField,Percent,Per cent apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,Vinculat Amb apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,Editeu Configuració de l'informe de correu electrònic automàtic DocType: Chat Room,Message Count,Recompte de missatges DocType: Workflow State,book,llibre +DocType: Communication,Read by Recipient,Llegir per destinatari DocType: Website Settings,Landing Page,La pàgina de destinació apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Error en la seqüència de personalització apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} Nom apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,No hi ha permisos establerts per a aquest criteri. DocType: Auto Email Report,Auto Email Report,Acte Informe correu electrònic -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,Esborrar comentaris? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,Esborrar comentaris? DocType: Address Template,This format is used if country specific format is not found,Aquest format s'utilitza si no hi ha el format específic de cada país DocType: System Settings,Allow Login using Mobile Number,Permetre que inicia sessió usant Nombre Mòbil apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Vostè no té permisos suficients per accedir a aquest apartat. Si us plau, poseu-vos en contacte amb l'administrador per obtenir accés." @@ -1426,7 +1462,7 @@ DocType: Letter Head,Printing,Impressió DocType: Workflow State,thumbs-up,thumbs-up DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fonts -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,Precisió ha d'estar entre 1 i 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,Precisió ha d'estar entre 1 i 6 apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,i apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},Aquest informe s'ha generat a {0} @@ -1438,14 +1474,14 @@ DocType: Auto Email Report,Report Filters,Filtres d'informe apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,ara DocType: Workflow State,step-backward,pas enrere apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{app_title} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,Please set Dropbox access keys in your site config +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,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 +16,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 apps/frappe/frappe/core/doctype/data_import/exporter.py +67,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/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,No es pot actualitzar esdeveniment -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,El pagament complet +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,No es pot actualitzar esdeveniment +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,El pagament complet apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,El codi de verificació s'ha enviat a la vostra adreça electrònica registrada. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,Tritura -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","El filtre ha de tenir 4 valors (DOCTYPE, nom de camp, operador, valor): {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,Tritura +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","El filtre ha de tenir 4 valors (DOCTYPE, nom de camp, operador, valor): {0}" apps/frappe/frappe/utils/bot.py +89,show,espectacle DocType: Address Template,Address Template,Plantilla de Direcció DocType: Workflow State,text-height,text-height @@ -1456,13 +1492,14 @@ DocType: Workflow State,map-marker,mapa marcador apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Presentar un problema DocType: Event,Repeat this Event,Repetir aquest esdeveniment DocType: Address,Maintenance User,Usuari de Manteniment +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,classificació de Preferències apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,Evitar dates i anys que s'associen amb vostè. DocType: Custom DocPerm,Amend,Esmenar DocType: Data Import,Generated File,Arxiu generat DocType: Transaction Log,Previous Hash,Anterior Hash DocType: File,Is Attachments Folder,És carpeta Arxius adjunts apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,expandir tots -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,Seleccioneu un xat per començar a enviar missatges. +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,Seleccioneu un xat per començar a enviar missatges. apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,Seleccioneu primer el tipus d'entitat apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,Es requereix un nom d'usuari vàlid apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,Seleccioneu un arxiu csv vàlids amb dades @@ -1475,26 +1512,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,El registre no e apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,valor original DocType: Help Category,Help Category,ajuda Categoria apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,L'usuari {0} està deshabilitat -apps/frappe/frappe/www/404.html +20,Page missing or moved,Pàgina falta o traslladat +apps/frappe/frappe/www/404.html +21,Page missing or moved,Pàgina falta o traslladat DocType: DocType,Route,ruta apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,configuració de la passarel·la de pagament Razorpay +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,Obteniu imatges adjunts del document DocType: Chat Room,Name,Nom DocType: Contact Us Settings,Skype,Skype apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,S'ha superat l'espai màxim de {0} per al seu pla. {1}. DocType: Chat Profile,Notification Tones,Tons de notificació -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cerca en els documents +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,Cerca en els documents DocType: OAuth Authorization Code,Valid,vàlid apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,Obre l'enllaç apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,El teu idioma apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,Afegir fila DocType: Tag Category,Doctypes,doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,Consulta ha de ser un SELECT -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,Adjunteu un fitxer per importar -DocType: Auto Repeat,Completed,Acabat +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,Consulta ha de ser un SELECT +DocType: Prepared Report,Completed,Acabat DocType: File,Is Private,És privat DocType: Data Export,Select DocType,Seleccioneu doctype apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,La mida del fitxer supera la mida màxima permesa de {0} MB -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,Creat el +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,Creat el DocType: Workflow State,align-center,alinear-centre DocType: Feedback Request,Is Feedback request triggered manually ?,Es sol·licitud de comentaris activat manualment? DocType: Address,Lakshadweep Islands,Illes Lakshadweep @@ -1502,7 +1539,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Alguns documents, com una factura, no haurien de canviar un cop final. L'estat final d'aquests documents es diu Enviat. Podeu restringir quins rols poden Submit." DocType: Newsletter,Test Email Address,Adreça de correu electrònic de prova DocType: ToDo,Sender,Remitent -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,S'ha produït un error en avaluar la notificació {0}. Corregiu la vostra plantilla. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,S'ha produït un error en avaluar la notificació {0}. Corregiu la vostra plantilla. DocType: GSuite Settings,Google Apps Script,Google Apps Script apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Deixa un comentari DocType: Web Page,Description for search engine optimization.,Descripció per a l'optimització de motors de cerca. @@ -1512,7 +1549,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,Pend DocType: System Settings,Allow only one session per user,Permetre només una sessió per usuari apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Carpeta Inici / Test 1 / Carpeta Prova 3 DocType: Website Settings,<head> HTML,<head> de HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,Seleccioneu o arrossegament a través de caselles de temps per crear un nou esdeveniment. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,Seleccioneu o arrossegament a través de caselles de temps per crear un nou esdeveniment. DocType: DocField,In Filter,En Filter apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Mostra a la secció Mòdul @@ -1524,17 +1561,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",Pàgina per mostrar a la pàgina web DocType: Note,Seen By Table,Vist per la taula -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,seleccionar plantilla +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,seleccionar plantilla apps/frappe/frappe/www/third_party_apps.html +47,Logged in,Connectat apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,Identificació d'usuari o contrasenya incorrecta apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,Explorar apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Per defecte Enviament i Safata d'entrada DocType: System Settings,OTP App,Aplicació OTP +DocType: Dropbox Settings,Send Email for Successful Backup,Envieu un correu electrònic per fer una còpia de seguretat amb èxit apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,document d'identitat DocType: Print Settings,Letter,Carta -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,Camp d'imatge ha de ser de tipus Adjuntar imatge +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,Camp d'imatge ha de ser de tipus Adjuntar imatge DocType: DocField,Columns,columnes -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,S'ha compartit amb l'usuari {0} amb accés de lectura +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,S'ha compartit amb l'usuari {0} amb accés de lectura DocType: Async Task,Succeeded,Succeït apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},Camps obligatoris requerits a {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,Restablir permisos per {0}? @@ -1552,14 +1590,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,alinear-esquerra DocType: User,Defaults,Predeterminats DocType: Feedback Request,Feedback Submitted,comentaris enviats -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,Combinar amb existent +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,Combinar amb existent DocType: User,Birth Date,Data De Naixement DocType: Dynamic Link,Link Title,link Títol DocType: Workflow State,fast-backward,fast-backward DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,Divendres -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,Edita a pàgina completa +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,Edita a pàgina completa DocType: Report,Add Total Row,Afegir total de Fila apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,Consulteu la vostra adreça de correu electrònic registrada per obtenir instruccions sobre com procedir. No tanqueu aquesta finestra ja que haurà de tornar-hi. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,Per exemple si es cancel·la i enmendáis INV004 es convertirà en un nou document INV004-1. Això l'ajuda a mantenir un registre de cada esmena. @@ -1581,11 +1619,10 @@ DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent","1 moneda = [?] Fracció Per exemple, 1 USD = 100 Cent" DocType: Data Import,Partially Successful,Parcialment reeixit -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Hi ha massa usuaris es van inscriure recentment, pel que el registre està desactivat. Si us plau, intenti tornar a una hora" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Hi ha massa usuaris es van inscriure recentment, pel que el registre està desactivat. Si us plau, intenti tornar a una hora" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,Afegir nova regla de permís apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Podeu utilitzar comodins % DocType: Chat Message Attachment,Chat Message Attachment,Missatge de xat adjunt -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic predeterminat des de Configuració> Correu electrònic> Compte de correu electrònic apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Només extensions d'imatge (.gif, .jpg, .jpeg, .tiff, .png, .svg) permesos" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,motor de base @@ -1606,7 +1643,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,Filial DocType: System Settings,In Hours,En Hores apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,De carta -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,Invàlid servidor de correu sortint o Port +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,Invàlid servidor de correu sortint o Port DocType: Custom DocPerm,Write,Escriure apps/frappe/frappe/core/doctype/report/report.py +37,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 +13,Updating,Actualització @@ -1615,28 +1652,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i 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 +13,Import Email From,Importació de correu electrònic De apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,Convida com usuari -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,Es requereix l'adreça de casa +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,Es requereix l'adreça de casa DocType: Data Migration Run,Started,Va començar +DocType: Data Migration Run,End Time,Hora de finalització apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,Seleccionar adjunts apps/frappe/frappe/model/naming.py +113, for {0},per {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,"Hi va haver errors. Si us plau, informe d'això." +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,"Hi va haver errors. Si us plau, informe d'això." apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,No està permès imprimir aquest document apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},Actualitzant actualment {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,"Si us plau, estableix el valor en la taula de filtres Filtre d'informe." -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,Carregant Informe +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,"Si us plau, estableix el valor en la taula de filtres Filtre d'informe." +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,Carregant Informe apps/frappe/frappe/limits.py +74,Your subscription will expire today.,La seva subscripció expira avui. DocType: Page,Standard,Estàndard -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Adjuntar Arxiu +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,Adjuntar Arxiu +DocType: Data Migration Plan,Preprocess Method,Mètode de preprocessament apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Mida apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Assignació completa DocType: Desktop Icon,Idx,idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

No s'han trobat resultats per a '

DocType: Address,Madhya Pradesh,Madhya Pradesh DocType: Deleted Document,New Name,Nou Nom DocType: System Settings,Is First Startup,És el primer inici DocType: Communication,Email Status,Estat de correu electrònic apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,"Si us plau, guardi el document abans de treure l'assignació" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,Inseriu sobre -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,El propietari només pot editar el comentari +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,El propietari només pot editar el comentari DocType: Data Import,Do not send Emails,No enviïs correus electrònics apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,noms i cognoms comuns són fàcils d'endevinar. DocType: Auto Repeat,Draft,Esborrany @@ -1648,14 +1688,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,Revocar DocType: Contact,Replied,Respost DocType: Newsletter,Test,Prova DocType: Custom Field,Default Value,Valor per defecte -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,Verificar +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,Verificar DocType: Workflow Document State,Update Field,Actualitzar camps DocType: Chat Profile,Enable Chat,Activa el xat DocType: LDAP Settings,Base Distinguished Name (DN),Nom distingit base (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,Deixa aquesta conversa -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},Opcions no establertes per a camp d'enllaç {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},Opcions no establertes per a camp d'enllaç {0} DocType: Customize Form,"Must be of type ""Attach Image""",Ha de ser del tipus "Adjunta imatge" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,Cancel totes les seleccions +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,Cancel totes les seleccions apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},No es pot desarmar 'només lectura' per al camp {0} DocType: Auto Email Report,Zero means send records updated at anytime,Zero significa enviar els registres actualitzats en qualsevol moment apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,Instal·lació completa @@ -1671,7 +1711,7 @@ DocType: Social Login Key,Google,Google DocType: Email Domain,Example Email Address,Exemple Adreça de correu electrònic apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Més Utilitzades apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,Donar-se de baixa de Newsletter -apps/frappe/frappe/www/login.html +83,Forgot Password,Has oblidat la contrasenya +apps/frappe/frappe/www/login.html +84,Forgot Password,Has oblidat la contrasenya DocType: Dropbox Settings,Backup Frequency,Freqüència de còpia de seguretat DocType: Workflow State,Inverse,Invers DocType: DocField,User permissions should not apply for this Link,Els permisos d'usuaris no haurien de sol·licitar aquest enllaç @@ -1688,6 +1728,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Llista de t apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,S'ha actualitzat correctament DocType: Activity Log,Logout,Tancar sessió apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,Permisos en els nivells més alts són els permisos de nivell de camp. Tots els camps tenen un conjunt Nivell de permís en contra i les regles definides en el qual els permisos s'apliquen al camp. Això és útil en el cas que vulgui amagar o fer cert camp de només lectura per a certes funcions. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Configuració> Personalitza el formulari DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduïu els paràmetres d'URL estàtiques aquí (Ex. Remitent = ERPNext, nom d'usuari = ERPNext, password = 1234 etc.)" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Si aquestes instruccions no són útils, si us plau agreguin en els seus suggeriments sobre qüestions de GitHub." DocType: Workflow State,bookmark,marcador @@ -1699,12 +1740,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,Les apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} ja existeix. Selecciona un altre nom apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,condicions de retroalimentació no coincideixen DocType: S3 Backup Settings,None,Cap -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,camp de línia de temps ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,camp de línia de temps ha de ser un nom de camp vàlid DocType: GCalendar Account,Session Token,Títol de sessió DocType: Currency,Symbol,Símbol -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,Fila # {0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,Fila # {0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,S'ha enviat una nova contrassenya per correu electrònic -apps/frappe/frappe/auth.py +272,Login not allowed at this time,Login no permès en aquest moment +apps/frappe/frappe/auth.py +286,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: Email Account,Email Sync Option,Sincronitzar correu Opció apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,Fila núm @@ -1720,12 +1761,12 @@ DocType: Address,Fax,Fax apps/frappe/frappe/config/setup.py +263,Custom Tags,Les etiquetes personalitzades DocType: Communication,Submitted,Enviat DocType: System Settings,Email Footer Address,Email peu de pàgina -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,taula s'actualitza +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,taula s'actualitza DocType: Activity Log,Timeline DocType,DOCTYPE línia de temps DocType: DocField,Text,Text apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Enviament per defecte DocType: Workflow State,volume-off,volum-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},Ha agradat a {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},Ha agradat a {0} DocType: Footer Item,Footer Item,Peu de pàgina de l'article ,Download Backups,Descàrrega Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Inici / Carpeta Prova 1 @@ -1733,7 +1774,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me,A DocType: DocField,Dynamic Link,Enllaç Dinàmic apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,Fins La Data apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Mostra fallat llocs de treball -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,Detalls +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,Detalls DocType: Property Setter,DocType or Field,DocType or Field DocType: Communication,Soft-Bounced,-Soft Rebotats DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Si està habilitat, tots els usuaris poden iniciar la sessió des de qualsevol adreça IP mitjançant l'Autenticació de dos factors. Això també es pot establir per als usuaris específics de la pàgina d'usuari" @@ -1744,7 +1785,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,El correu electrònic ha estat traslladat a les escombraries DocType: Report,Report Builder,Generador d'informes DocType: Async Task,Task Name,Nom de tasca -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","La seva sessió ha expirat, si us plau entra de nou per continuar." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","La seva sessió ha expirat, si us plau entra de nou per continuar." DocType: Communication,Workflow,Workflow DocType: Website Settings,Welcome Message,Missatge de benvinguda DocType: Webhook,Webhook Headers,Encapçalaments de Webhook @@ -1761,10 +1802,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,Imprimeix documents DocType: Contact Us Settings,Forward To Email Address,Reenviar al Correu Electrònic apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Mostra totes les dades -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,El Camp Títol ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,El Camp Títol ha de ser un nom de camp vàlid apps/frappe/frappe/config/core.py +7,Documents,Documents DocType: Social Login Key,Custom Base URL,URL base personalitzada DocType: Email Flag Queue,Is Completed,es completa +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,Obteniu camps apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} t'ha mencionat en un comentari apps/frappe/frappe/www/me.html +22,Edit Profile,Edita el perfil DocType: Kanban Board Column,Archived,Arxivat @@ -1774,17 +1816,18 @@ myfield 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/form/controls/date.js +49,Today,avui +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,avui apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"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: 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 apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Presentar +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,El pare és el nom del document al qual s'afegiran les dades. apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,Mostrar Likes DocType: DocType,UPPER CASE,MAJÚSCULES apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,HTML personalitzat apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,Introduïu carpeta de nom -apps/frappe/frappe/auth.py +228,Unknown User,Usuari desconegut +apps/frappe/frappe/auth.py +233,Unknown User,Usuari desconegut apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,Seleccioneu Rol DocType: Communication,Deleted,Suprimit DocType: Workflow State,adjust,ajustar @@ -1806,21 +1849,21 @@ DocType: Data Migration Connector,Database Name,Nom de la base de dades apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Formulari d'actualització DocType: DocField,Select,Seleccionar apps/frappe/frappe/utils/csvutils.py +29,File not attached,L'arxiu no s'adjunta -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,Connexió perduda. Pot ser que algunes funcions no funcionin. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,Connexió perduda. Pot ser que algunes funcions no funcionin. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess",Repeteix com "AAA" són fàcils d'endevinar -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,Nou xat +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,Nou xat DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Establint aquest, aquest article vindrà en un desplegable sota el pare seleccionat." DocType: Print Format,Show Section Headings,Mostra títols de les seccions DocType: Bulk Update,Limit,límit -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},No es troba la plantillaen a : {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,Tancar sessió de totes les sessions +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,Afegeix una nova secció +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},No es troba la plantillaen a : {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,No compte de correu electrònic DocType: Communication,Cancelled,Cancel·lat DocType: Chat Room,Avatar,Avatar DocType: Blogger,Posts,Posts DocType: Social Login Key,Salesforce,Força de vendes DocType: DocType,Has Web View,Té Web -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","El nom del tipus de document ha de començar amb una lletra i només pot consistir en lletres, nombres, espais i guions baixos" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","El nom del tipus de document ha de començar amb una lletra i només pot consistir en lletres, nombres, espais i guions baixos" DocType: Communication,Spam,Correu brossa DocType: Integration Request,Integration Request,Sol·licitud d'integració apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,Estimat @@ -1836,15 +1879,17 @@ DocType: Communication,Assigned,Assignat DocType: Print Format,Js,js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,Seleccionar el format d'impressió apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,patrons de teclat curts són fàcils d'endevinar +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,Genera un nou informe DocType: Portal Settings,Portal Menu,menú portal apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,Longitud de {0} ha d'estar entre 1 i 1000 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Cerca de res +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,Cerca de res DocType: Data Migration Connector,Hostname,Nom de l'amfitrió DocType: Data Migration Mapping,Condition Detail,Detall d'estat DocType: DocField,Print Hide,Imprimir Amaga -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Introduir valor +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,Introduir valor DocType: Workflow State,tint,tint DocType: Web Page,Style,Estil +DocType: Prepared Report,Report End Time,Hora de finalització d'informes apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,per exemple: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} comentaris apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,Versió actualitzada @@ -1857,10 +1902,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,Canvia les cartes DocType: Website Settings,Sub-domain provided by erpnext.com,Sub-domini proporcionat per erpnext.com apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,Configuració del vostre sistema +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,Descendents de DocType: System Settings,dd-mm-yyyy,dd-mm-aaaa -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,Ha de tenir informe de permís per accedir a aquest informe. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,Ha de tenir informe de permís per accedir a aquest informe. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,Seleccioneu Contrasenya puntuació mínima -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,Afegit +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,Afegit apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,Heu subscrit un pla gratuït per a usuaris DocType: Auto Repeat,Half-yearly,Semestral apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,Resum diari d'esdeveniments s'envia per a esdeveniments de calendari en el qual es configura recordatoris. @@ -1871,7 +1917,7 @@ DocType: Workflow State,remove,Treure DocType: Email Domain,If non standard port (e.g. 587),If non standard port (e.g. 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,Recarregar apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,Afegir les seves pròpies etiquetes Categories -apps/frappe/frappe/desk/query_report.py +227,Total,Total +apps/frappe/frappe/desk/query_report.py +312,Total,Total DocType: Event,Participants,Participants DocType: Integration Request,Reference DocName,Referència DocName DocType: Web Form,Success Message,Missatge d'èxit @@ -1885,7 +1931,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,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/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge","{0} {1} no existeix, seleccioneu un nou objectiu per unir" -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",Resultats de la cerca per "{0}" DocType: Data Migration Connector,Python Module,Mòdul Python DocType: GSuite Settings,Google Credentials,Les credencials de Google apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,Codi QR per a la verificació d'inici de sessió @@ -1894,8 +1939,8 @@ DocType: Footer Item,Company,Empresa apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Assignat a mi apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Google GSuite plantilles per a la integració amb DOCTYPES DocType: User,Logout from all devices while changing Password,Tanqueu tots els dispositius mentre canvieu la contrasenya -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,Verificar Contrasenya -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Hi van haver errors +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,Verificar Contrasenya +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,Hi van haver errors apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Close apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,No es pot canviar DocStatus de 0 a 2 DocType: File,Attached To Field,Adjunt al camp @@ -1905,7 +1950,7 @@ DocType: Transaction Log,Transaction Hash,Transacció Hash DocType: Error Snapshot,Snapshot View,Instantània de vista apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,"Si us plau, guardi el butlletí abans d'enviar-" apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Configureu els comptes del calendari de Google -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},Les opcions han de ser un tipus de document vàlid per al camp {0} a la fila {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},Les opcions han de ser un tipus de document vàlid per al camp {0} a la fila {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edita les propietats DocType: Patch Log,List of patches executed,Llista de pegats executat apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ja donat de baixa @@ -1924,8 +1969,8 @@ DocType: Data Migration Connector,Authentication Credentials,Credencials d'a DocType: Role,Two Factor Authentication,Autenticació de dos factors apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,Pagar DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL -apps/frappe/frappe/model/base_document.py +508,"{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/utils/data.py +638,{0} or {1},{0} o {1} +apps/frappe/frappe/model/base_document.py +517,"{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/utils/data.py +640,{0} or {1},{0} o {1} apps/frappe/frappe/core/doctype/user/user.py +250,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 @@ -1941,16 +1986,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,Recaiguda apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,L'article no es pot afegir als seus propis descendents DocType: System Settings,Expiry time of QR Code Image Page,Temps de caducitat de la pàgina d'imatge del codi QR -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,Mostra totals +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,Mostra totals DocType: Error Snapshot,Relapses,Les recaigudes DocType: Address,Preferred Shipping Address,Adreça d'enviament preferida -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,Amb el cap de la lletra +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,Amb el cap de la lletra apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} creat aquest {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 +38,Document is only editable by users of role,Document és només editable pels usuaris de paper -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.","La tasca {0}, que va assignar a {1}, ha estat tancat per {2}." +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.","La tasca {0}, que va assignar a {1}, ha estat tancat per {2}." DocType: Print Format,Show Line Breaks after Sections,Mostra salts de línia després de les Seccions +DocType: Communication,Read by Recipient On,Llegir per destinatari encès DocType: Blogger,Short Name,Nom curt -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},Pàgina {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},Pàgina {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},Enllaçat amb {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1977,20 +2024,20 @@ DocType: Communication,Feedback,Resposta apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,Obre la traducció apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,Aquest correu electrònic està autogenerat DocType: Workflow State,Icon will appear on the button,La icona apareixerà al botó -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Socketio no està connectat. No es pot carregar +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Socketio no està connectat. No es pot carregar DocType: Website Settings,Website Settings,Configuració del lloc web apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,Mes DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Afegeix Reference: {{ reference_doctype }} {{ reference_name }} enviar referència del document DocType: DocField,Fetch From,Obtenir des de apps/frappe/frappe/modules/utils.py +205,App not found,App not found -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},No es pot crear un {0} en contra d'un document secundari: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},No es pot crear un {0} en contra d'un document secundari: {1} DocType: Social Login Key,Social Login Key,Clau d'accés social DocType: Portal Settings,Custom Sidebar Menu,Menú d'encàrrec de la barra lateral DocType: Workflow State,pencil,llapis apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Missatges de xat i altres notificacions. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},Insereix després no es pot establir com {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Compartir {0} amb -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,"Configuració de comptes de correu electrònic si us plau, introdueixi la contrasenya per a:" +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,"Configuració de comptes de correu electrònic si us plau, introdueixi la contrasenya per a:" DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,Escriptors Introducció DocType: Address,Phone,Telèfon @@ -1998,18 +2045,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,Passiu DocType: Contact,Accounts Manager,Gerent de Comptes apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,El seu pagament es cancel·la. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,Seleccioneu el tipus de fitxer +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,Seleccioneu el tipus de fitxer apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,Veure tot DocType: Help Article,Knowledge Base Editor,Coneixement Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Pàgina no trobada DocType: DocField,Precision,Precisió DocType: Website Slideshow,Slideshow Items,Presentació Articles apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,Intenta evitar les paraules i caràcters repetits -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,Hi ha correccions fallides amb el mateix Pla de migració de dades DocType: Event,Groups,Grups DocType: Workflow Action,Workflow State,Estat de flux de treball (workflow) apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,Afegit files -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,Èxit! Que són bons per anar 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,Èxit! Que són bons per anar 👍 apps/frappe/frappe/www/me.html +3,My Account,El meu compte DocType: ToDo,Allocated To,Assignats a apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,"Si us plau, feu clic al següent enllaç per configurar la nova contrasenya" @@ -2017,36 +2063,39 @@ DocType: Notification,Days After,Dies Després DocType: Newsletter,Receipient,receipient DocType: Contact Us Settings,Settings for Contact Us Page,Ajustos per Contacti'ns Pàgina DocType: Custom Script,Script Type,Script Type +DocType: Print Settings,Enable Print Server,Activa el servidor d'impressió apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,Fa {0} setmanes DocType: Auto Repeat,Auto Repeat Schedule,Repetició de l'horari automàtic DocType: Email Account,Footer,Peu de pàgina apps/frappe/frappe/config/integrations.py +48,Authentication,autenticació apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,Link Inválido +DocType: Web Form,Client Script,Escriptura de client DocType: Web Page,Show Title,Mostrar títol DocType: Chat Message,Direct,Directe DocType: Property Setter,Property Type,Tipus de propietat DocType: Workflow State,screenshot,captura de pantalla apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Només l'administrador pot guardar un informe estàndard. Si us plau, canvia-li el nom i desa'l" DocType: System Settings,Background Workers,Treballadors de fons -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,Nom de camp {0} en conflicte a fi meta +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,Nom de camp {0} en conflicte a fi meta DocType: Deleted Document,Data,Dades apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Estat del document apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Vostè ha fet {0} de {1} DocType: OAuth Authorization Code,OAuth Authorization Code,Codi d'autorització OAuth -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,No es permet importar +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,No es permet importar DocType: Deleted Document,Deleted DocType,dOCTYPE eliminat apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Nivells de permisos DocType: Workflow State,Warning,Advertència DocType: Data Migration Run,Percent Complete,Percentatge complet DocType: Tag Category,Tag Category,tag Categoria -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","S'ignorarà l'article {0}, perquè hi ha un grup amb el mateix nom!" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,Ajuda +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","S'ignorarà l'article {0}, perquè hi ha un grup amb el mateix nom!" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,Ajuda DocType: User,Login Before,Identifica't abans DocType: Web Page,Insert Style,Inserir Estil apps/frappe/frappe/config/setup.py +276,Application Installer,Instal·lador d'aplicacions -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,Nou nom d'Informe +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,Nou nom d'Informe +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,Amaga caps de setmana DocType: Workflow State,info-sign,info-signe -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Valor {0} no pot ser una llista +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,Valor {0} no pot ser una llista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Com s'ha de formatar aquesta moneda? Si no s'estableix, s'utilitzarà valors predeterminats del sistema" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,Enviar documents {0}? apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,Has d'estar connectat i tenir l'Administrador del sistema de funcions per poder accedir a les còpies de seguretat. @@ -2057,6 +2106,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,Permisos de rol DocType: Help Article,Intermediate,intermedi apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Document cancel·lat restaurat com a esborrany +DocType: Data Migration Run,Start Time,Hora d'inici apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},No es pot esborrar o cancel·lar perquè {0} {1} està enllaçat amb {2} {3} {4} apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Es pot llegir apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} Gràfic @@ -2067,6 +2117,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Pot compartir apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Direcció del destinatari no vàlid DocType: Workflow State,step-forward,pas cap endavant +DocType: System Settings,Allow Login After Fail,Permet l'inici de sessió després d'un error apps/frappe/frappe/limits.py +69,Your subscription has expired.,La seva subscripció ha caducat. DocType: Role Permission for Page and Report,Set Role For,Per establir Rol DocType: GCalendar Account,The name that will appear in Google Calendar,El nom que apareixerà a Google Calendar @@ -2075,7 +2126,7 @@ DocType: Event,Starts on,Comença en 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 +36,Session Start Failed,Inici de Sessió Error -apps/frappe/frappe/email/queue.py +499,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/email/queue.py +511,This email was sent to {0} and copied to {1},Aquest correu electrònic va ser enviat a {0} i copiat a {1} DocType: Workflow State,th,th DocType: Social Login Key,Provider Name,Nom del proveïdor apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},Crear un nou {0} @@ -2089,35 +2140,38 @@ DocType: System Settings,Choose authentication method to be used by all users,Tr apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Es requereix Doctype DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/setup.py +146,Deleted Documents,documents eliminats -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,El format CSV distingeix entre majúscules i minúscules +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,El format CSV distingeix entre majúscules i minúscules apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,Icona d'escriptori ja existeix apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,Duplicar DocType: Newsletter,Create and Send Newsletters,Crear i enviar butlletins de notícies -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,A partir de la data ha de ser abans Per Data +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,A partir de la data ha de ser abans Per Data DocType: Address,Andaman and Nicobar Islands,Illes Andaman i Nicobar -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,document GSuite -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,Si us plau especificar quin valor del camp ha de ser verificat +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,document GSuite +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,Si us plau especificar quin valor del camp ha de ser verificat apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Pare"" es refereix a la taula principal en la qual cal afegir aquesta fila" apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,No es pot enviar aquest correu electrònic. Heu creuat el límit d'enviament de {0} correus electrònics per aquest dia. DocType: Website Theme,Apply Style,Aplicar Estil DocType: Feedback Request,Feedback Rating,grau de la regeneració apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Compartit Amb +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,Adjunta fitxers / URL i afegiu-los a la taula. DocType: Help Category,Help Articles,Ajuda a les persones apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Tipus: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,El seu pagament ha fallat. DocType: Communication,Unshared,incompartible DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Mòdul no trobat -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} està establert per a l'estat {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} està establert per a l'estat {2} DocType: User,Location,Ubicació ,Permitted Documents For User,Documents permesos Per Usuari apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Vostè necessita tenir el permís ""Compartir""" DocType: Communication,Assignment Completed,assignació Completat -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},Edita granel {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},Edita granel {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,Baixa l'informe apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,No actiu DocType: About Us Settings,Settings for the About Us Page,Configuració de la pàgina Qui som apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,configuració de la passarel·la de pagament de la ratlla DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,per exemple pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,Generar claus apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Utilitzeu el camp per filtrar registres DocType: DocType,View Settings,veure configuració DocType: Email Account,Outlook.com,Outlook.com @@ -2127,12 +2181,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,Envia'm una còpia de correus electrònics sortints DocType: System Settings,Scheduler Last Event,Programador Últim esdeveniment DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Afegir Google Analytics ID: per exemple. UA-89XXX57-1. Si us plau, busca ajuda sobre Google Analytics per obtenir més informació." -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,La contrasenya no pot contenir més de 100 caràcters +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,La contrasenya no pot contenir més de 100 caràcters DocType: OAuth Client,App Client ID,App ID de client DocType: Kanban Board,Kanban Board Name,Nom del Fòrum Kanban DocType: Notification Recipient,"Expression, Optional","Expressió, opcional" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Còpia i pega el codi a Code.gs i buit en el seu projecte a script.google.com -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},Aquest correu electrònic va ser enviat a {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},Aquest correu electrònic va ser enviat a {0} DocType: System Settings,Hide footer in auto email reports,Amaga el peu de pàgina als informes de correu electrònic automàtic DocType: DocField,Remember Last Selected Value,Recordeu que l'últim valor seleccionat DocType: Email Account,Check this to pull emails from your mailbox,Selecciona perenviar correus electrònics de la seva bústia de correu @@ -2148,15 +2202,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",Resultats de la documentació per a "{0}" DocType: Workflow State,envelope,embolcall apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opció 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,No s'ha pogut imprimir DocType: Feedback Trigger,Email Field,El camp de correu electrònic -apps/frappe/frappe/www/update-password.html +68,New Password Required.,Nova contrasenya requerida. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,Nova contrasenya requerida. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} compartit aquest document {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,Afegiu la vostra ressenya +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,Afegiu la vostra ressenya DocType: Website Settings,Brand Image,Imatge de marca DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuració de barra de navegació superior, peu de pàgina i el logo." DocType: Web Form Field,Max Value,valor màxim -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},Per {0} a nivell {1} a {2} en fila {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},Per {0} a nivell {1} a {2} en fila {3} DocType: User Social Login,User Social Login,Accés social de l'usuari DocType: Contact,All,Tots DocType: Email Queue,Recipient,Receptor @@ -2165,27 +2220,27 @@ DocType: Address,Sales User,Usuari de vendes apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,Arrossegar i eines Separar per construir i personalitzar formats d'impressió. DocType: Address,Sikkim,Sikkim apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,Setembre -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,Aquest estil de consulta s'interromp +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,Aquest estil de consulta s'interromp DocType: Notification,Trigger Method,Mètode d'activació -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},L'operador ha de ser un {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},L'operador ha de ser un {0} DocType: Dropbox Settings,Dropbox Access Token,Dropbox accés d'emergència DocType: Workflow State,align-right,alinear a la dreta DocType: Auto Email Report,Email To,Destinatari apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,Carpeta {0} no està buit DocType: Page,Roles,Rols -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Error: valor perdut per {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,El camp {0} no es pot seleccionar. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},Error: valor perdut per {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,El camp {0} no es pot seleccionar. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,Caducitat Sessió DocType: Workflow State,ban-circle,ban-cercle apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,S'ha produït un fracàs en l'error de Webhook DocType: Email Flag Queue,Unread,no llegit DocType: Auto Repeat,Desk,Escriptori -apps/frappe/frappe/utils/data.py +801,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/utils/data.py +805,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 +8,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) DocType: Address,Arunachal Pradesh,Arunachal Pradesh -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,Configuració automàtica de correu electrònic +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Configuració automàtica de correu electrònic apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + A baix DocType: Chat Profile,Message Preview,Visualització prèvia de missatges apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,Es tracta d'una contrasenya comuna entre els 10 primers. @@ -2208,7 +2263,7 @@ DocType: OAuth Client,Implicit,implícit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Annexar com la comunicació en contra d'aquest tipus de document (ha de tenir camps, ""Estat"", ""Assumpte"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI per a la recepció de codi d'autorització una vegada que l'usuari permet l'accés, així com les respostes de fallada. Normalment, un extrem REST exposat pel client de l'aplicació.
per exemple, http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,No es pot canviar {0} després de ser presentat +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,No es pot canviar {0} després de ser presentat DocType: Data Migration Mapping,Migration ID Field,Camp d'identificació de la migració DocType: Communication,Comment Type,Tipus Comentari DocType: OAuth Client,OAuth Client,client OAuth @@ -2220,6 +2275,7 @@ DocType: DocField,Signature,Signatura apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Compartir amb apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,Carregant apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","Introduïu les claus per permetre inici de sessió a través de Facebook, Google, GitHub." +DocType: Data Import,Insert new records,Insereix nous registres apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},No es pot llegir el format d'arxiu per a {0} DocType: Auto Email Report,Filter Data,Filtrar dades apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Si us plau adjuntar un arxiu primer. @@ -2236,7 +2292,7 @@ DocType: DocType,Title Case,Títol del Cas DocType: Data Migration Run,Data Migration Run,Execució de la migració de dades DocType: Blog Post,Email Sent,Correu electrònic enviat DocType: DocField,Ignore XSS Filter,Ignorar filtre XSS -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,eliminat +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,eliminat apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,la configuració de còpia de seguretat de Dropbox apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,Enviar com a correu electrònic DocType: Website Theme,Link Color,Enllaç color @@ -2252,22 +2308,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,Configuració d' apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,Nom de l'entitat apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Rectificativo apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,configuració de la passarel·la de pagament de PayPal -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultaran truncades, com caràcters màxim permès és {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultaran truncades, com caràcters màxim permès és {2}" DocType: OAuth Client,Response Type,Tipus de resposta DocType: Contact Us Settings,Send enquiries to this email address,Envieu les seves consultes a la següent adreça de correu electrònic DocType: Letter Head,Letter Head Name,Nom Carta Head DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Nombre de columnes per a un camp en una vista de llista o una quadrícula (Columnes total ha de ser inferior a 11) apps/frappe/frappe/config/website.py +18,User editable form on Website.,Formulari d'edició d'Usuari en el Lloc Web. DocType: Workflow State,file,Expedient -apps/frappe/frappe/www/login.html +90,Back to Login,Tornar a inici +apps/frappe/frappe/www/login.html +91,Back to Login,Tornar a inici DocType: Data Migration Mapping,Local DocType,DocType local apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,Cal el permís d'escriptura per canviar el nom +DocType: Email Account,Use ASCII encoding for password,Utilitzeu la codificació ASCII per a la contrasenya DocType: User,Karma,Karma DocType: DocField,Table,Taula DocType: File,File Size,Mida del fitxer -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Has d'iniciar sessió per presentar aquest formulari +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,Has d'iniciar sessió per presentar aquest formulari DocType: User,Background Image,Imatge de fons -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},No es pot establir la notificació en el tipus de document {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},No es pot establir la notificació en el tipus de document {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","Seleccioni el seu País, Zona horària i moneda" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,entre @@ -2276,7 +2333,7 @@ DocType: Braintree Settings,Use Sandbox,ús Sandbox apps/frappe/frappe/utils/goal.py +101,This month,Aquest mes apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,Nou format personalitzat Imprimir DocType: Custom DocPerm,Create,Crear -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},Filtre no vàlid: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},Filtre no vàlid: {0} DocType: Email Account,no failed attempts,intents fallits sense DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Aplicació Clau d'Accés @@ -2285,7 +2342,7 @@ 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/page/usage_info/usage_info.html +66,Backup Size:,Mida de còpia de seguretat: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},La repetició automàtica ha estat {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},La repetició automàtica ha estat {0} 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 @@ -2294,10 +2351,10 @@ DocType: Web Form,Allow Edit,Permetre Editar apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,Enganxa DocType: Webhook,Doc Events,Esdeveniments doc DocType: Auto Email Report,Based on Permissions For User,Sobre la base de permisos per a l'usuari -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},No es pot canviar l'estat de Document Cancel·lat. Transition row {0} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},No es pot canviar l'estat de Document Cancel·lat. Transition row {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Normes de com els estats són transicions, com pròxim estat i a quin rol se li permet canviar l'estat, etc." apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} ja existeix -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},Annexar A pot ser una de {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},Annexar A pot ser una de {0} DocType: DocType,Image View,Veure imatges apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Sembla que alguna cosa ha anat malament durant la transacció. Ja que no hem confirmat el pagament, PayPal li reemborsarà automàticament aquesta quantitat. Si no és així, si us plau, envieu-nos un correu electrònic i esmentar la identificació de correlació: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Incloure símbols, números i lletres majúscules en la contrasenya" @@ -2307,7 +2364,6 @@ DocType: List Filter,List Filter,Filtre de llista DocType: Workflow State,signal,senyal apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,Té fitxers adjunts DocType: DocType,Show Print First,Show Print First -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuració> Usuari apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Crear {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,Nou compte de correu apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,document restaurat @@ -2333,7 +2389,7 @@ DocType: Web Form,Web Form Fields,Web Form Fields DocType: Website Theme,Top Bar Text Color,Top Bar Color del text DocType: Auto Repeat,Amended From,Modificada Des de apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},Avís: No es pot trobar {0} en qualsevol taula relacionada amb {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,Aquest document es posa en cua per a la seva execució actualment. Siusplau torna-ho a provar +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,Aquest document es posa en cua per a la seva execució actualment. Siusplau torna-ho a provar apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,Arxiu '{0}' no trobat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Traieu la Secció DocType: User,Change Password,Canvia la contrasenya @@ -2343,19 +2399,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,Hola! apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,Configuració de la passarel·la de pagament de Braintree apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Finalització de l'esdeveniment ha de ser després de la posta apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Això tancarà la sessió {0} des de tots els altres dispositius -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},No té permís per obtenir un informe sobre: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},No té permís per obtenir un informe sobre: {0} DocType: System Settings,Apply Strict User Permissions,Aplicar permisos d'usuari estrictes DocType: DocField,Allow Bulk Edit,Permetre Edició massiva DocType: Blog Post,Blog Post,Post Blog -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,Cerca avançada +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,Cerca avançada apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,No us permet veure el butlletí. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,Les Instruccions de restabliment de contrasenya han estat enviades al seu correu electrònic +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,Les Instruccions de restabliment de contrasenya han estat enviades al seu correu electrònic apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"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." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,No es pot desar el formulari perquè la importació de dades està en curs. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,Ordenar Per DocType: Workflow,States,Units DocType: Notification,Attach Print,Adjuntar Imprimir -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},Suggerida Nom d'usuari: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Suggerida Nom d'usuari: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,dia ,Modules,mòduls apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Establir icones de l'escriptori @@ -2365,11 +2422,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,revocat DocType: Web Page,Sidebar and Comments,Barra lateral i Comentaris apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Quan es modifiqui un document després de cancelar-lo i guardar-lo, tindrà un nou número que és una versió de l'antic nombre." -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","No es permet admetre {0} document, habiliteu Permetre impressió per a {0} a la configuració d'impressió" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,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 +68,Start Import,Inicia la importació +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,Inicia la importació DocType: Workflow State,circle-arrow-left,circle-arrow-left apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,"Servidor de memòria cau Redis parat. Si us plau, poseu-vos en contacte amb l'Administrador / Suport tècnic" apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Fer un nou registre @@ -2377,7 +2434,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,r DocType: Currency,Fraction,Fracció DocType: LDAP Settings,LDAP First Name Field,LDAP camp de nom apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,per a la creació automàtica del document recurrent per continuar. -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,Seleccioneu d'arxius adjunts existents +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,Seleccioneu d'arxius adjunts existents DocType: Custom Field,Field Description,Descripció del camp apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,Nom no establert a través de Prompt 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"".","Introduïu camps (valors) i valors de valor predeterminat. Si afegiu diversos valors per a un camp, el primer serà escollit. Aquests valors predeterminats també s'utilitzen per establir regles de permisos de "coincidència". Per veure la llista de camps, aneu a "Personalitzar formulari"." @@ -2397,6 +2454,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Obtenir elements DocType: Contact,Image,Imatge DocType: Workflow State,remove-sign,eliminar l'efecte de signe +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,Ha fallat la connexió amb el servidor apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,No hi ha dades per exportar DocType: Domain Settings,Domains HTML,Dominis HTML apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,Escriu alguna cosa en el quadre de cerca per buscar @@ -2424,33 +2482,34 @@ DocType: Address,Address Line 2,Adreça Línia 2 DocType: Address,Reference,referència apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Assignat a DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detall de cartografia de la migració de dades -DocType: Email Flag Queue,Action,Acció +DocType: Data Import,Action,Acció DocType: GSuite Settings,Script URL,URL del guió -apps/frappe/frappe/www/update-password.html +119,Please enter the password,"Si us plau, introdueixi la contrasenya" -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,No es permet imprimir documents cancel·lats +apps/frappe/frappe/www/update-password.html +111,Please enter the password,"Si us plau, introdueixi la contrasenya" +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,No es permet imprimir documents cancel·lats apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,No se li permet crear columnes DocType: Data Import,If you don't want to create any new records while updating the older records.,Si no voleu crear cap registre nou mentre s'actualitzen els registres més antics. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Info: DocType: Custom Field,Permission Level,Nivell de permís DocType: User,Send Notifications for Transactions I Follow,Enviar notificacions de transaccions que segueixo -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: No es pot establir a Presentat, Anul·lat, Modificat sense escriptura" -DocType: Google Maps,Client Key,Clau del client -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Segur que vols eliminar l'adjunt? -apps/frappe/frappe/__init__.py +1097,Thank you,Gràcies +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: No es pot establir a Presentat, Anul·lat, Modificat sense escriptura" +DocType: Google Maps Settings,Client Key,Clau del client +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,Segur que vols eliminar l'adjunt? +apps/frappe/frappe/__init__.py +1178,Thank you,Gràcies apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Estalvi DocType: Print Settings,Print Style Preview,Vista prèvia de l'estil d'impressió apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,Icones -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Vostè no està autoritzat a actualitzar aquest formulari web +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,Vostè no està autoritzat a actualitzar aquest formulari web apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,Correus electrònics apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Seleccioneu Tipus de document primera apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Establiu l'URL base a la clau d'accés social de Frappe DocType: About Us Settings,About Us Settings,Ajustaments del Sobre nosaltres DocType: Website Settings,Website Theme,Lloc web temàtic +DocType: User,Api Access,Api Access DocType: DocField,In List View,Vista de llista DocType: Email Account,Use TLS,Utilitza TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Usuari o contrasenya no vàlids -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,Descarregar plantilla +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,Descarregar plantilla apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,Add custom javascript to forms. ,Role Permissions Manager,Administrador de Permisos de rols apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nom del nou format d'impressió @@ -2469,7 +2528,6 @@ DocType: Website Settings,HTML Header & Robots,Capçalera HTML i Robots DocType: User Permission,User Permission,Permís d'usuari apps/frappe/frappe/config/website.py +32,Blog,Bloc apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,LDAP no instal·lat -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,Descàrrega de dades DocType: Workflow State,hand-right,la mà dreta DocType: Website Settings,Subdomain,Subdomini apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,Ajustaments per al proveïdor OAuth @@ -2481,6 +2539,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,Correu electrònic d'usuari ID apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,pagament cancel·lat ,Addresses And Contacts,Adreces i contactes +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,Seleccioneu primer el tipus de document. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Registres d'errors clars apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Seleccioneu una qualificació apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,Restablir el secret d'OTP @@ -2489,19 +2548,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,Fa 2 d apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Classificar les entrades del blog. DocType: Workflow State,Time,temps DocType: DocField,Attach,Adjuntar -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} no és un patró de nom de camp vàlid. Ha de ser {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} no és un patró de nom de camp vàlid. Ha de ser {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Comentaris del Sol·licitud només si hi ha almenys una comunicació està disponible per al document. DocType: Custom Role,Permission Rules,Regles de permisos DocType: Braintree Settings,Public Key,Clau pública DocType: GSuite Settings,GSuite Settings,ajustaments GSuite DocType: Address,Links,Enllaços apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,Seleccioneu el tipus de document. -apps/frappe/frappe/model/base_document.py +396,Value missing for,Falta a +apps/frappe/frappe/model/base_document.py +405,Value missing for,Falta a apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,Afegir Nen apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,"{0} {1}: Registre Presentat, no es pot eliminar." DocType: GSuite Templates,Template Name,Nom de la plantilla apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nou tipus de document -DocType: Custom DocPerm,Read,Llegir +DocType: Communication,Read,Llegir DocType: Address,Chhattisgarh,Chhattisgarh DocType: Role Permission for Page and Report,Role Permission for Page and Report,El permís per a la funció Pàgina i Informe apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,alinear Valor @@ -2511,9 +2570,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,L'habitació directa amb {other} ja existeix. DocType: Has Domain,Has Domain,té domini apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Amaga -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,No tens un compte? Registra't +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,No tens un compte? Registra't apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,No es pot eliminar el camp ID -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,{0}: No es pot establir Assignar esmenar si no submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,{0}: No es pot establir Assignar esmenar si no submittable DocType: Address,Bihar,Bihar DocType: Activity Log,Link DocType,enllaç dOCTYPE apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,Encara no tens cap missatge. @@ -2528,14 +2587,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Les Taules fill es mostren com una quadrícula en altres DocTypes. DocType: Chat Room User,Chat Room User,Usuari de la sala de xat apps/frappe/frappe/model/workflow.py +38,Workflow State not set,Estat del flux de treball no configurat -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},Codi d'error: {0} +apps/frappe/frappe/www/404.html +23,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 +26,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)" DocType: Workflow,Allow Self Approval,Permet l'autoaprovenció apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,John Doe DocType: DocType,Name Case,Nom del cas apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,Compartit amb tothom -apps/frappe/frappe/model/base_document.py +392,Data missing in table,falten dades a la taula +apps/frappe/frappe/model/base_document.py +401,Data missing in table,falten dades a la taula DocType: Web Form,Success URL,Success URL DocType: Email Account,Append To,Annexar a apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,Alçada fixa @@ -2556,31 +2615,32 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,Ho sento! Compartir amb els del Lloc Web està prohibit. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,Afegir tots els rols +DocType: Website Theme,Bootstrap Theme,Tema d'arrencada apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!","Si us plau ingressi tant el seu email i missatge perquè puguem \ pot tornar a vostè. Gràcies!" -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,No s'ha pogut connectar amb el servidor de correu electrònic sortint +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,No s'ha pogut connectar amb el servidor de correu electrònic sortint apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Gràcies pel seu interès en subscriure-vos-hi DocType: Braintree Settings,Payment Gateway Name,Nom de la passarel·la de pagament -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,columna personalitzada +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,columna personalitzada DocType: Workflow State,resize-full,resize-full DocType: Workflow State,off,apagat apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,Reprès -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,L'Informe {0} està deshabilitat +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,L'Informe {0} està deshabilitat DocType: Activity Log,Core,Nucli apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,establir permisos DocType: DocField,Set non-standard precision for a Float or Currency field,Ajusta una precisió no estàndard per a un camp Float o moneda DocType: Email Account,Ignore attachments over this size,No feu cas dels accessoris més d'aquesta mida DocType: Address,Preferred Billing Address,Preferit Direcció de facturació apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,L'estat del flux de treball {0} no està permès -apps/frappe/frappe/database.py +296,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/database.py +295,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/core/doctype/version/version_view.html +8,Values Changed,Els valors modificats DocType: Workflow State,arrow-up,arrow-up DocType: OAuth Bearer Token,Expires In,en expira DocType: DocField,Allow on Submit,Permetre al presentar DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Tipus d'excepció -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,Esculli Columnes +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Esculli Columnes DocType: Web Page,Add code as <script>,Add code as <script> DocType: Webhook,Headers,Encapçalaments apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,"Si us plau, introdueixi els valors amb accés a aplicacions clau i l'App clau secreta" @@ -2599,6 +2659,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,No hi ha sessions actives DocType: Top Bar Item,Right,Dreta DocType: User,User Type,Tipus d'usuari +DocType: Prepared Report,Ref Report DocType,Ref. Informe DocType apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,Feu clic a la taula per editar DocType: GCalendar Settings,Client ID,ID de client DocType: Async Task,Reference Doc,Referència Doc @@ -2617,18 +2678,18 @@ DocType: Workflow State,Edit,Edita apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Els permisos es poden gestionar a través de Configuració & gt; Permisos del rol Administrador DocType: Website Settings,Chat Operators,Operadors de xat DocType: Contact Us Settings,Pincode,Codi PIN -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,"Si us plau, assegureu-vos que no hi ha columnes buides a l'arxiu." +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,"Si us plau, assegureu-vos que no hi ha columnes buides a l'arxiu." apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,"Si us plau, assegureu-vos que el seu perfil té una adreça de correu electrònic" apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,"Hi ha canvis sense desar en aquest formulari. Si us plau, guarda abans de continuar." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,Defecte per {0} ha de ser una opció +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,Defecte per {0} ha de ser una opció DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categoria DocType: User,User Image,Imatge d'Usuari -apps/frappe/frappe/email/queue.py +338,Emails are muted,Els correus electrònics es silencien +apps/frappe/frappe/email/queue.py +341,Emails are muted,Els correus electrònics es silencien apps/frappe/frappe/config/integrations.py +88,Google Services,Serveis de Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Ctrl + A dalt DocType: Website Theme,Heading Style,Estil de títol -apps/frappe/frappe/utils/data.py +625,1 weeks ago,fa 1 setmana +apps/frappe/frappe/utils/data.py +627,1 weeks ago,fa 1 setmana DocType: Communication,Error,Error DocType: Auto Repeat,End Date,Data de finalització DocType: Data Import,Ignore encoding errors,Ignora els errors de codificació @@ -2636,6 +2697,7 @@ DocType: Chat Profile,Notifications,Notificacions DocType: DocField,Column Break,Salt de columna DocType: Event,Thursday,Dijous apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,Vostè no té permís per accedir a aquesta imatge +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,Desa l'API secret: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},No es pot vincular document anul·lat: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,"No es pot editar un informe estàndard. Si us plau, duplicar i crear un nou informe" apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","Company és obligatòria, ja que és la direcció de l'empresa" @@ -2652,9 +2714,9 @@ DocType: Custom Field,Label Help,Label Help DocType: Workflow State,star-empty,star-empty apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,Les dates són sovint fàcils d'endevinar. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,Properes accions -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","No es pot editar la notificació estàndard. Per editar-lo, inhabiliteu-lo i torneu-lo a duplicar" +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","No es pot editar la notificació estàndard. Per editar-lo, inhabiliteu-lo i torneu-lo a duplicar" DocType: Workflow State,ok,ok -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,Envieu una revisió +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,Envieu una revisió DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Aquests valors s'actualitzaran automàticament en les transaccions i també podrà ser útil restringir els permisos per a aquest usuari en transaccions que contenen aquests valors. apps/frappe/frappe/twofactor.py +312,Verfication Code,Codi de verificació apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,per generar el recurrent @@ -2672,12 +2734,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,Restablir contra apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Si us plau, actualitzi Per afegir més d'{0} subscriptors" DocType: Workflow State,hand-left,hand-left DocType: Data Import,If you are updating/overwriting already created records.,Si esteu actualitzant o sobreescrivint registres ja creats. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,FieldType {0} de {1} no pot ser únic +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,FieldType {0} de {1} no pot ser únic apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,És global DocType: Email Account,Use SSL,Utilitza SSL DocType: Workflow State,play-circle,joc de cercle apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",L'expressió "depends_on" no és vàlida -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,Nom del grup +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,Nom del grup apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Seleccioneu Format d'impressió a Edita DocType: Address,Shipping,Enviament DocType: Workflow State,circle-arrow-down,circle-arrow-down @@ -2695,23 +2757,23 @@ DocType: SMS Settings,SMS Settings,Ajustaments de SMS DocType: Company History,Highlight,Destacat DocType: OAuth Provider Settings,Force,força DocType: DocField,Fold,fold +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,Ascendent apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Format d'impressió estàndard no es pot actualitzar apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Senyoreta -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,"Si us plau, especifiqui" +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,"Si us plau, especifiqui" DocType: Communication,Bot,bot DocType: Help Article,Help Article,ajuda article DocType: Page,Page Name,Nom de pàgina apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Ajuda: Propietats del camp apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},"A més, afegiu el camp de moneda dependent {0}" apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,obrir la cremallera -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},Valor incorrecte a la fila {0}: {1} ha de ser {2} {3} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

No s'han trobat resultats per a '

-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},Document presentat no es pot convertir de nou a redactar. Fila Transició {0} +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},Valor incorrecte a la fila {0}: {1} ha de ser {2} {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},Document presentat no es pot convertir de nou a redactar. Fila Transició {0} apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,Configureu la integració del calendari de Google -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},Eliminació {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},Eliminació {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Seleccioneu un format existent per editar o iniciar un nou format. DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,Direcció d'adreça IP restringida per bypass Si habilita dos Autenticació de factor -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},Creat camp personalitzat {0} a {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},Creat camp personalitzat {0} a {1} DocType: System Settings,Time Zone,Fus horari apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Els caràcters especials no estan permesos DocType: Communication,Relinked,Relinked @@ -2727,7 +2789,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",El camp "ruta" és obligatori per a les visualitzacions web +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"Field ""route"" is mandatory for Web Views",El camp "ruta" és obligatori per a les visualitzacions web DocType: Email Account,Add Signature,Afegir signatura apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Quedi aquesta conversa ,Background Jobs,Treballs en segon pla @@ -2736,9 +2798,9 @@ DocType: DocField,No Copy,No Copy DocType: Workflow State,qrcode,qrcode DocType: Chat Token,IP Address,Adreça IP DocType: Data Import,Submit after importing,Enviar després d'importar -apps/frappe/frappe/www/login.html +32,Login with LDAP,Entrada amb LDAP +apps/frappe/frappe/www/login.html +33,Login with LDAP,Entrada amb LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,Si Propietari +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,Si Propietari DocType: Data Migration Mapping,Push,Empenta DocType: OAuth Authorization Code,Expiration time,temps de termini DocType: Web Page,Website Sidebar,Barra Lateral pàgina web @@ -2749,12 +2811,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} pe apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,Tot en majúscules és gairebé tan fàcil d'endevinar com en minúscules. DocType: Feedback Trigger,Email Fieldname,email FIELDNAME DocType: Website Settings,Top Bar Items,Elements de la barra superior -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","Correu electrònic d'identificació ha de ser únic, compte de correu electrònic ja és existir \ per {0}" 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/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Cal la clau del client +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,Cal la clau del client DocType: Calendar View,End Date Field,Camp de data de finalització DocType: Desktop Icon,Page,Pàgina apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},No s'ha pogut trobar {0} a {1} @@ -2763,21 +2823,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,Base de coneixements DocType: Workflow State,briefcase,briefcase apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},El valor no pot ser canviat per {0} DocType: Feedback Request,Is Manual,és Instruccions -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},Troba adjunt {0} #{1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},Troba adjunt {0} #{1} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Estil representa el color del botó: Èxit - Verd, Perill - vermell, Inverse - Negre, Primària - Blau Fosc, Informació - blau clar, Advertència - Orange" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Estat de fila DocType: Workflow Transition,Workflow Transition,Transició de workflow apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,Fa {0} mesos apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Creat per -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,Configuració de Dropbox +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,Configuració de Dropbox DocType: Workflow State,resize-horizontal,resize-horizontal DocType: Chat Message,Content,Contingut DocType: Data Migration Run,Push Insert,Push Insert apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,Group Node DocType: Communication,Notification,notificació DocType: DocType,Document,Document -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},La sèrie {0} ja s'utilitza a {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,Format de fitxer no admès +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},La sèrie {0} ja s'utilitza a {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,Format de fitxer no admès DocType: DocField,Code,Codi DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Tots els possibles estats de flux de treball i les funcions de flux de treball. Opcions DocStatus: 0 és "salvat", 1 es "Enviat" i 2 és "Cancel·lat"" DocType: Website Theme,Footer Text Color,Peu de pàgina de text en color @@ -2788,13 +2848,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,credencials de passarel·la de pagaments no vàlids DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Aquest és el fitxer de plantilla generat amb només les files que tenen algun error. Heu d'utilitzar aquest fitxer per a la correcció i la importació. apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Establir permisos en Tipus de documents i funcions -apps/frappe/frappe/model/meta.py +160,No Label,sense etiqueta +DocType: Data Migration Run,Remote ID,ID remot +apps/frappe/frappe/model/meta.py +205,No Label,sense etiqueta +DocType: System Settings,Use socketio to upload file,Utilitzeu socketio per carregar el fitxer apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,Indexació trencada apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,Refrescant apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,Resum apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,per modificada DocType: Address,Tripura,Tripura DocType: About Us Settings,"""Company History""","""Història de l'empresa""" +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,Aquest document s'ha modificat després d'enviar el correu electrònic. +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,Mostra l'informe DocType: Address,Tamil Nadu,tamil Nadu DocType: Email Rule,Email Rule,Regla de correu electrònic apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document","Per deixar d'enviar notificacions de errors repetitives del sistema, hem marcat el camp Desactivat al document de repetició automàtica" @@ -2808,7 +2872,7 @@ DocType: Notification,Send alert if this field's value changes,Enviar alerta si apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Seleccioneu un tipus de document per fer un nou format apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,No s'especifiquen els "destinataris" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,ara mateix -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,aplicar +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,aplicar DocType: Footer Item,Policy,política apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} Els ajustos no van trobar DocType: Module Def,Module Def,Mòdul Def @@ -2822,7 +2886,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,Per DocType: Print Settings,Allow page break inside tables,Permetre salt de pàgina dins de les taules DocType: Email Account,SMTP Server,Servidor SMTP DocType: Print Format,Print Format Help,Format d'impressió Ajuda -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,Amb Grups +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,Amb Grups DocType: DocType,Beta,beta apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,Limita les opcions d'icones per a tots els usuaris. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},restaurada {0} com {1} @@ -2831,8 +2895,9 @@ DocType: DocField,Translatable,Traduïble DocType: Event,Every Month,Cada Mes DocType: Letter Head,Letter Head in HTML,Cap Carta a HTML DocType: Web Form,Web Form,Formulari Web +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},La data {0} ha d'estar en format: {1} DocType: About Us Settings,Org History Heading,Org History Heading -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Ho sento. S'ha arribat al límit màxim d'usuaris per a la seva subscripció. Vostè pot desactivar un usuari existent o comprar un pla de subscripció superior. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Ho sento. S'ha arribat al límit màxim d'usuaris per a la seva subscripció. Vostè pot desactivar un usuari existent o comprar un pla de subscripció superior. DocType: Print Settings,Allow Print for Cancelled,Permetre impressió per Cancel·lat DocType: Communication,Integrations can use this field to set email delivery status,Integracions poden utilitzar aquest camp per a establir l'estat de lliurament de correu electrònic DocType: Web Form,Web Page Link Text,Text del link a la Pàgina Web @@ -2845,13 +2910,12 @@ DocType: GSuite Settings,Allow GSuite access,Permetre l'accés GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming DocType: Event,Every Year,Cada Any -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,Selecciona tot +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,Selecciona tot apps/frappe/frappe/config/setup.py +247,Custom Translations,Traduccions personalitzats apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,progrés apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,per rol apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,Els camps que falten -apps/frappe/frappe/email/smtp.py +188,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El compte de correu electrònic no està configurat. Creeu un compte de correu electrònic nova a Configuració> Correu electrònic> Compte de correu electrònic -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,nom de camp no vàlid '{0}' a AutoName +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,nom de camp no vàlid '{0}' a AutoName apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Cercar en un tipus de document apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,Permetre al camp ser editable fins i tot després de la presentació DocType: Custom DocPerm,Role and Level,Rols i Nivell @@ -2860,14 +2924,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Informes personalitzats DocType: Website Script,Website Script,Website Script DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,Si no utilitzeu publicar pròpia Google Apps Script aplicació web es pot utilitzar el valor predeterminat https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,Plantilles HTML personalitzades per a transaccions d'impressió. -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,orientació +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,orientació DocType: Workflow,Is Active,Està actiu -apps/frappe/frappe/desk/form/utils.py +111,No further records,No hi ha registres addicionals +apps/frappe/frappe/desk/form/utils.py +114,No further records,No hi ha registres addicionals DocType: DocField,Long Text,Text llarg DocType: Workflow State,Primary,Primari -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},"Si us plau, no canviar les files anteriors {0}" +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},"Si us plau, no canviar les files anteriors {0}" DocType: Web Form,Go to this URL after completing the form (only for Guest users),Anar a aquesta URL després de completar el formulari (només per als usuaris convidats) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Ctrl + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Més informació DocType: Data Migration Mapping,Field Maps,Mapes de camp DocType: Desktop Icon,Desktop Icon,Icona d'escriptori @@ -2888,13 +2952,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,Ajustaments de la ratlla DocType: Data Migration Mapping,Data Migration Mapping,Cartografia de la migració de dades apps/frappe/frappe/www/login.py +89,Invalid Login Token,Invalid Login Token -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,Descarta't +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,Descarta't apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,Fa 1 dia DocType: Website Settings,Home Page,Home Page DocType: Error Snapshot,Parent Error Snapshot,Snapshot Error Pares -DocType: Kanban Board,Filters,Filtres +DocType: Prepared Report,Filters,Filtres DocType: Workflow State,share-alt,share-alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},Cua ha de ser una de {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},Cua ha de ser una de {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2924,12 +2988,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,Script o consulta informes
 DocType: Workflow Document State,Workflow Document State,Flux de treball de documents Estat
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,L'arxiu és massa gran
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,Compte de correu electrònic afegeix diverses vegades
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,Compte de correu electrònic afegeix diverses vegades
 DocType: Payment Gateway,Payment Gateway,Passarel·la de Pagament
 DocType: Portal Settings,Hide Standard Menu,Amaga menú estàndard
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,Afegeix / Administrar dominis de correu electrònic.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},No es pot cancel·lar abans de presentar Veure Transició {0}
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,Format d'impressió {0} està deshabilitat
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},No es pot cancel·lar abans de presentar Veure Transició {0}
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Format d'impressió {0} està deshabilitat
 ,Address and Contacts,Direcció i contactes
 DocType: Notification,Send days before or after the reference date,Enviar dies abans o després de la data de referència
 DocType: User,Allow user to login only after this hour (0-24),Permetre l'accés a l'usuari només després d'aquesta hora (0-24)
@@ -2939,7 +3003,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,substitucions predictibles com "@" en lloc de "a" no ajuden molt.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Assignat By Em
 apps/frappe/frappe/utils/data.py +528,Zero,zero
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,No en la manera de desenvolupador! Situat en site_config.json o fer DOCTYPE 'Custom'.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,No en la manera de desenvolupador! Situat en site_config.json o fer DOCTYPE 'Custom'.
 DocType: Workflow State,globe,globus
 DocType: System Settings,dd.mm.yyyy,dd.mm.aaaa
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,Amaga el camp en el Format d'impressió estàndard
@@ -2952,19 +3016,21 @@ DocType: DocType,Allow Import (via Data Import Tool),Permetre la importació (a
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,sr
 DocType: DocField,Float,Float
 DocType: Print Settings,Page Settings,Configuració de la pàgina
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,S'està desant ...
 DocType: Auto Repeat,Submit on creation,Presentar a la creació
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,contrasenya invàlida
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,contrasenya invàlida
 DocType: Contact,Purchase Master Manager,Administraodr principal de compres
 DocType: Module Def,Module Name,Nom del mòdul
 DocType: DocType,DocType is a Table / Form in the application.,Doctype és una taula / formulari en l'aplicació.
 DocType: Social Login Key,Authorize URL,Autoritza l'URL
 DocType: Email Account,GMail,GMail
 DocType: Address,Party GSTIN,partit GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} Informe
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Informe
 DocType: SMS Settings,Use POST,Utilitzeu POST
 DocType: Communication,SMS,SMS
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,Obteniu imatges
 DocType: DocType,Web View,vista web
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,Advertència: Aquest format d'impressió és d'estil antic i no es pot generar a través de l'API.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,Advertència: Aquest format d'impressió és d'estil antic i no es pot generar a través de l'API.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,Totals
 DocType: DocField,Print Width,Ample d'impressió
 ,Setup Wizard,Assistent de configuració
@@ -2973,6 +3039,7 @@ DocType: Chat Message,Visitor,Visitant
 DocType: User,Allow user to login only before this hour (0-24),Permetre a l'usuari per iniciar sessió només abans d'aquesta hora (0-24)
 DocType: Social Login Key,Access Token URL,Accés a la URL de token
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,Folder és obligatori
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} assignat a {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,Nou missatge de Lloc web Pàgina
 DocType: Notification,Reference Date,Data de Referència
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,Entra números de mòbil vàlids
@@ -2999,21 +3066,22 @@ DocType: DocField,Small Text,Text petit
 DocType: Workflow,Allow approval for creator of the document,Permet l'aprovació del creador del document
 DocType: Webhook,on_cancel,on_cancelar
 DocType: Social Login Key,API Endpoint Args,API Endpoint Args
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,Administrador accedeix {0} el {1} a través de l'adreça IP {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,Administrador accedeix {0} el {1} a través de l'adreça IP {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,Equival
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'
 DocType: About Us Settings,Team Members Heading,Team Members Heading
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,Format CSV no vàlid
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Establir el nombre de còpies de seguretat
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,Correu la correcció
 DocType: DocField,Do not allow user to change after set the first time,No permetre que l'usuari pugui canviar després d'establir la primera vegada
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privat o públic?
-apps/frappe/frappe/utils/data.py +633,1 year ago,fa 1 any
+apps/frappe/frappe/utils/data.py +635,1 year ago,fa 1 any
 DocType: Contact,Contact,Contacte
 DocType: User,Third Party Authentication,Third Party Authentication
 DocType: Website Settings,Banner is above the Top Menu Bar.,Banner està per sobre de la barra de menú superior.
-DocType: Razorpay Settings,API Secret,API secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,Exporta informe:
+DocType: User,API Secret,API secret
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} Calendari
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,Exporta informe:
 DocType: Data Migration Run,Push Update,Push Update
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,en el document de repetició automàtica
 DocType: Email Account,Port,Port
@@ -3024,7 +3092,7 @@ DocType: Website Slideshow,Slideshow like display for the website,Presentació c
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,Configurar notificacions basades en diversos criteris.
 DocType: Communication,Updated,Actualitzat
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,seleccioneu mòdul
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,Cerqueu o Creeu un xat nou
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,Cerqueu o Creeu un xat nou
 apps/frappe/frappe/sessions.py +29,Cache Cleared,Cache Cleared
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,Nou Correu
@@ -3040,7 +3108,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
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Estableix com a predeterminat
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,FieldType {0} de {1} no poden ser indexats
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,FieldType {0} de {1} no poden ser indexats
 DocType: Communication,Email Account,Compte de correu electrònic
 DocType: Workflow State,Download,Descarregar
 DocType: Blog Post,Blog Intro,Bloc Intro
@@ -3054,7 +3122,7 @@ DocType: Web Page,Insert Code,Insereix Codi
 DocType: Data Migration Run,Current Mapping Type,Tipus d'assignació actual
 DocType: ToDo,Low,Sota
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Pot afegir propietats dinàmiques del document mitjançant l'ús de plantilles Jinja.
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},límit no vàlid {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},límit no vàlid {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Llista un tipus de document
 DocType: Event,Ref Type,Tipus Ref
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si has de carregar nous registres, deixa en blanc la columna ""name"" (ID)"
@@ -3076,21 +3144,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N
 DocType: Print Settings,Send Print as PDF,Envia la impressió com a PDF
 DocType: Web Form,Amount,Quantitat
 DocType: Workflow Transition,Allowed,Mascotes
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,Només hi pot haver un plec en el formulari
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,Només hi pot haver un plec en el formulari
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},No es pot escriure el format d'arxiu per a {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Restaurar a la configuració per defecte?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Home Page no vàlida
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,Accés incorrecte. Intenteu-ho de nou.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},Opcions necessàries per Link o camp de tipus de taula {0} a la fila {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},Opcions necessàries per Link o camp de tipus de taula {0} a la fila {1}
 DocType: Auto Email Report,Send only if there is any data,Enviar només si hi ha qualsevol dada
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,Reiniciar els filtres
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0}: El permís al nivell 0 s'ha d'establir abans de fixar nivells més alts
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,Reiniciar els filtres
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0}: El permís al nivell 0 s'ha d'establir abans de fixar nivells més alts
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Assignació tancat per {0}
 DocType: Integration Request,Remote,remot
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcular
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Seleccioneu doctype primer
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,Confirma teu email
-apps/frappe/frappe/www/login.html +40,Or login with,O ingressar amb
+apps/frappe/frappe/www/login.html +41,Or login with,O ingressar amb
 DocType: Error Snapshot,Locals,Els locals
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicada a través d'{0} el {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} t'ha mencionat en un comentari en {1}
@@ -3100,23 +3168,24 @@ DocType: Integration Request,Integration Type,Tipus d'Integració
 DocType: Newsletter,Send Attachements,Enviar Attachements
 DocType: Transaction Log,Transaction Log,Registre de transaccions
 DocType: Contact Us Settings,City,Ciutat
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,Ctrl + Intro per enviar
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,Ctrl + Intro per enviar
 DocType: DocField,Perm Level,Perm Level
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,Visualitza el document
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Esdeveniments A l'Agenda d'avui
 DocType: Web Page,Web Page,Pàgina Web
 DocType: Workflow Document State,Next Action Email Template,Plantilla de correu electrònic d'acció següent
 DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},'A la recerca global' no permès per al tipus {0} a la fila {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},'A la recerca global' no permès per al tipus {0} a la fila {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,veure Llista
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},La data ha de tenir el format: {0}
 DocType: Workflow,Don't Override Status,No correcció d'estat
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Si us plau, donar una qualificació."
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Comentaris Sol·licitud
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,El terme de cerca
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,La Primera Usuari:
 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/setup.py +112,Export Data,Exportar dades
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,Seleccionar columnes
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,Seleccionar columnes
 DocType: Translation,Source Text,font del text
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,Paràmetres que falten per a l'inici de sessió
 DocType: Workflow State,folder-open,-Carpeta oberta
@@ -3129,7 +3198,7 @@ DocType: Property Setter,Set Value,Valor seleccionat
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Hide field in form
 DocType: Webhook,Webhook Data,Dades de Webhook
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},S'està creant {0}
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,Il · legal testimoni d'accés. Siusplau torna-ho a provar
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,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 +92,"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/core/doctype/communication/communication.js +35,Resend,Reenviar
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Opcional: L'alerta s'enviat si aquesta expressió és veritable
@@ -3143,8 +3212,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,Nivell
 DocType: Custom DocPerm,Report,Informe
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,La quantitat ha de ser més gran que 0.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} es guarda
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,L'usuari {0} no es pot canviar
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} es guarda
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,L'usuari {0} no es pot canviar
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),Nom de camp està limitat a 64 caràcters ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,Llista de grups de correu electrònic
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Un arxiu d'icona amb ico extensió. En cas de ser de 16 x 16 píxels. Generat usant un generador de favicon. [favicon-generator.org]
@@ -3157,22 +3226,22 @@ DocType: Website Theme,Background,Fons
 DocType: Report,Ref DocType,Ref DocType
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,Introduïu l'identificador de client abans que l'inici de sessió social estigui habilitat
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Si us plau, afegir una qualificació"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0}: No es pot establir a Corregir sense Cancel·lar abans
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{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 +25,Full Page,Pàgina plena
 DocType: DocType,Is Child Table,És Taula fill
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} ha de ser una de {1}
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} ha de ser una de {1}
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} està veient en aquest document ara mateix
 apps/frappe/frappe/config/core.py +52,Background Email Queue,Antecedents Correu cua
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,Restablir contrasenya
 DocType: Communication,Opened,Inaugurat
 DocType: Workflow State,chevron-left,chevron-left
 DocType: Communication,Sending,Enviament
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,No es permet des d'aquesta adreça IP
+apps/frappe/frappe/auth.py +272,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)
 apps/frappe/frappe/config/setup.py +277,Install Applications.,Instal·lació d'aplicacions.
 DocType: Contact,Last Name,Cognoms
 DocType: Event,Private,Privat
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,No hi ha alertes per avui
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,No hi ha alertes per avui
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Enviar els arxius adjunts deels correus electrònics com a PDF (Recomanat)
 DocType: Web Page,Left,Esquerra
 DocType: Event,All Day,Tot el dia
@@ -3183,10 +3252,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",Camp d'imatge
 apps/frappe/frappe/utils/bot.py +43,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/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No s'ha trobat cap plantilla d'adreça predeterminada. Creeu-ne un de nou des de Configuració> Impressió i marca> Plantilla d'adreces.
 DocType: Contact,Gender,Gènere
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Informació obligatòria que falta:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,El camp '{0}' no es pot establir com a únic ja que té valors no únics
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,Informació obligatòria que falta:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,El camp '{0}' no es pot establir com a únic ja que té valors no únics
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Sol·licitar URL de sol·licitud
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,Només 200 insercions permesos en una petició
 DocType: Footer Item,URL,URL
@@ -3202,12 +3270,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,arbre
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,No està autoritzat a imprimir aquest informe
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Permisos d'usuari
 DocType: Workflow State,warning-sign,warning-sign
+DocType: Prepared Report,Prepared Report,Informe preparat
 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
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,text en el tipus de document
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,executar proves
-apps/frappe/frappe/handler.py +94,Logged Out,tancat la sessió
+apps/frappe/frappe/handler.py +95,Logged Out,tancat la sessió
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Més ...
 DocType: System Settings,User can login using Email id or Mobile number,L'usuari pot iniciar la sessió utilitzant correu electrònic d'identificació o número de mòbil
 DocType: Bulk Update,Update Value,Actualització Valor
@@ -3215,12 +3284,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},M
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,"Si us plau, seleccioni un nou nom per canviar el nom"
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,Columna no vàlida
 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/request.js +167,Something went wrong,Alguna cosa ha anat malament
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,Només {0} entrades mostren. Si us plau filtrar per obtenir resultats més específics.
 DocType: System Settings,Number Format,Format de nombre
 DocType: Auto Repeat,Frequency,Freqüència
 DocType: Custom Field,Insert After,Inserir després
-DocType: Report,Report Name,Nom de l'informe
+DocType: Prepared Report,Report Name,Nom de l'informe
 DocType: Desktop Icon,Reverse Icon Color,Revertir Icona Color
 DocType: Notification,Save,Guardar
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,Pròxima data programada
@@ -3233,13 +3303,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,Defecte
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} afegits
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cerca '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,"Si us plau, guardi l'informe primer"
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Si us plau, guardi l'informe primer"
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonats afegir
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,No En
 DocType: Workflow State,star,estrella
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,Cub
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,valors separats per comes
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,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/public/js/frappe/ui/filters/filter.js +281,values separated by commas,valors separats per comes
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,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/www/feedback.html +68,Please share your feedback for {0},"Si us plau, comparteixi els seus comentaris per {0}"
 apps/frappe/frappe/config/website.py +13,Content web page.,Contingut de la pàgina web.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Afegeix un nou paper
@@ -3252,15 +3322,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,Es registraran registres per a les següents doctype
 DocType: Blog Settings,Blog Introduction,Introducció del blog
 DocType: Address,Office,Oficina
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,Aquesta Junta Kanban serà privada
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,Aquesta Junta Kanban serà privada
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Informes estàndard
 DocType: User,Email Settings,Configuració del correu electrònic
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,Introduïu la contrasenya per continuar
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,Introduïu la contrasenya per continuar
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,No és un usuari vàlid LDAP
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} no és un Estat vàlida
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} no és un Estat vàlida
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,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ó
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,camp de cerca {0} no és vàlid
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,camp de cerca {0} no és vàlid
 DocType: Workflow State,ok-circle,ok-circle
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Es poden trobar coses preguntant "trobar taronja en els clients '
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,Ho sento! L'usuari ha de tenir accés complet al seu propi rècord.
@@ -3276,21 +3346,21 @@ DocType: DocField,Unique,Únic
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Èxit parcial
 DocType: Email Account,Service,Servei
 DocType: File,File Name,Nom De l'Arxiu
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),No s'ha trobat {0} per {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),No s'ha trobat {0} per {0} ({1})
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Vaja, no se li permet saber que"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Següent
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,Ha tancat la sessió amb èxit
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,Ha tancat la sessió amb èxit
 DocType: Calendar View,Calendar View,Vista del calendari
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Edita format
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,Completar el registre
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,Completar el registre
 DocType: GCalendar Settings,Enable,Permetre
-DocType: Google Maps,Home Address,Adreça de casa
+DocType: Google Maps Settings,Home Address,Adreça de casa
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),Nou {0} (Ctrl + B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar en color i text en color són els mateixos. Han tenen bon contrast per poder llegir.
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Només es pot carregar fins a 5.000 registres d'una sola vegada. (Pot ser inferior en alguns casos)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},De permís suficient per a {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),L'Informe no s'ha guardat (hi ha errors)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,No es pot canviar el contingut de la capçalera
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),L'Informe no s'ha guardat (hi ha errors)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,No es pot canviar el contingut de la capçalera
 DocType: Print Settings,Print Style,Estil d'impressió
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,No vinculats a cap registre
 DocType: Custom DocPerm,Import,Importació
@@ -3320,9 +3390,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,"Si us plau, actualitza per obtenir l'últim document."
 DocType: User,Security Settings,Configuració de seguretat
 DocType: Website Settings,Operators,Operadors
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,Afegir columna
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,Afegir columna
 ,Desktop,Escriptori
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},Informe d'exportació: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},Informe d'exportació: {0}
 DocType: Auto Email Report,Filter Meta,filtre Meta
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,El text que es mostra per enllaçar a la pàgina web si aquest formulari disposa d'una pàgina web. Ruta Enllaç automàticament es genera sobre la base de `page_name` i ` parent_website_route`
 DocType: Feedback Request,Feedback Trigger,retroalimentació del disparador
@@ -3349,6 +3419,6 @@ DocType: Bulk Update,Max 500 records at a time,Màxim 500 registres alhora
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Si les dades estan en format HTML, si us plau copiar i enganxar el codi HTML exacta amb les etiquetes."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,No es pot obrir l'arxiu adjunt. Ha exportat com CSV?
 DocType: DocField,Ignore User Permissions,Ignora els permisos d'usuari
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,"Si us plau, consulti al seu administrador per verificar la seva inscripció"
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,"Si us plau, consulti al seu administrador per verificar la seva inscripció"
 DocType: Domain Settings,Active Domains,Els dominis actius
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,Mostra registre
diff --git a/frappe/translations/cs.csv b/frappe/translations/cs.csv
index c8f993d1d4..de35b5d223 100644
--- a/frappe/translations/cs.csv
+++ b/frappe/translations/cs.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,Vyberte pole Hodnota.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Pro zavření zmáčkněte Esc
-apps/frappe/frappe/desk/form/assign_to.py +158,"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/desk/form/assign_to.py +161,"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}"
 DocType: Email Queue,Email Queue records.,Email fronty záznamů.
 DocType: Address,Punjab,Paňdžáb
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,Přejmenovat více položek nahráním souboru typu *.csv
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,Stránky
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Musíte být přihlášen k přístupu na tuto stránku
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Poznámka: Více relací budou moci v případě mobilního zařízení
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},Povoleno e-mailová schránka pro uživatele {Uživatelé}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},Povoleno e-mailová schránka pro uživatele {Uživatelé}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nelze odeslat e-mail. Jste překročili odesílající limit {0} e-mailů pro tento měsíc.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,Vložit na trvalo: {0}?
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Stáhnout soubory zálohování
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} Strom
 DocType: User,User Emails,uživatel E-maily
 DocType: User,Username,Uživatelské jméno
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,Import Zip
-apps/frappe/frappe/model/base_document.py +554,Value too big,Hodnota příliš velká
+apps/frappe/frappe/model/base_document.py +563,Value too big,Hodnota příliš velká
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,Spustit test skriptu
 DocType: Data Import,Total Rows,Celkové řádky
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,Záznamy
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,Je nutné tuto akci učinit i dnes pro výše uvedené opakování
 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 +539,Rename {0},Přejmenovat {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},Přejmenovat {0}
 DocType: Workflow State,zoom-out,Zmenšit
 apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Nemůžete otevřít: {0} když je otevřena instance
-apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,Tabulka: {0} nemůže být prázdná
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,Tabulka: {0} nemůže být prázdná
 DocType: SMS Parameter,Parameter,Parametr
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,S deníky
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,Dokument byl změněn!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,S deníky
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,snímky
 DocType: Activity Log,Reference Owner,referenční Vlastník
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Je-li tato možnost povolena, může se uživatel přihlásit z libovolné IP adresy pomocí funkce Two Factor Auth, toto může být také nastaveno pro všechny uživatele v System Settings"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Nejmenší cirkulující frakce jednotka (mince). Pro například 1 cent za USD, a to by mělo být vstoupila jako 0,01"
 DocType: Social Login Key,GitHub,GitHub
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, Row {1}"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, Row {1}"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Uveďte celé jméno.
-apps/frappe/frappe/model/document.py +1057,Beginning with,počínaje
+apps/frappe/frappe/model/document.py +1058,Beginning with,počínaje
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Šablona importu dat
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Nadřazeno
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Pokud je povoleno, síla hesla bude vynucena na základě hodnoty minimálního skóre hesla. Hodnota 2 je středně silná a 4 je velmi silná."
 DocType: About Us Settings,"""Team Members"" or ""Management""","""Členové týmu"" nebo ""Vedení"""
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',Výchozí hodnota pro  'zaškrtávací' pole musí být '0' nebo '1'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',Výchozí hodnota pro  'zaškrtávací' pole musí být '0' nebo '1'
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,Včera
 DocType: Contact,Designation,Označení
 DocType: Test Runner,Test Runner,Testovací Runner
@@ -66,10 +65,11 @@ 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 +47,Danger,Nebezpečí
-apps/frappe/frappe/www/login.html +20,Email Address,E-mailová adresa
+apps/frappe/frappe/www/login.html +21,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/misc/tools.js +10,Export not allowed. You need {0} role to export.,Export není povolen. Potřebujete roli {0} pro exportování.
+DocType: System Settings,In seconds,Během několika vteřin
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,Zrušit {0} dokumenty?
 DocType: DocType,Is Published Field,Je publikován Field
 DocType: GCalendar Settings,GCalendar Settings,Nastavení GCalendar
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,Email Group
 DocType: Note,Seen By,Viděn
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,Přidat více
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,Není platný uživatelský obrázek.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavení> Uživatel
 DocType: Success Action,First Success Message,První zpráva o úspěchu
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,Ne jako
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Nastavit zobrazované označení pole
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},Nesprávná hodnota: {0} musí být {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},Nesprávná hodnota: {0} musí být {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","Změnit vlastnosti pole (skrýt, jen pro čtení, práva atd.)"
 DocType: Workflow State,lock,zámek
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Nastavení pro stránku Kontaktujte nás.
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,Přihlášen Administrátor
+apps/frappe/frappe/core/doctype/user/user.py +917,Administrator Logged In,Přihlášen Administrátor
 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 +34,Add a tag ...,Přidat značku ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},Nový {0}: # {1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},Nový {0}: # {1}
 DocType: Data Migration Run,Insert,Vložit
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vyberte {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,Zadejte základní adresu URL
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,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/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,zápisových se prosím přihlašte nebo zahájit
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,zápisových se prosím přihlašte nebo zahájit
 DocType: Blog Post,Guest,Host
 DocType: DocType,Title Field,Titulek pole
 DocType: Error Log,Error Log,Error Log
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"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."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} je povinné
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} je povinné
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","Možnosti pojmenování:
  1. pole: [fieldname] - podle pole
  2. naming_series: - podle série pojmenování (musí být přítomno pole pojmenované_series)
  3. Prompt - Prompt pro jméno uživatele
  4. [series] - Série podle předpony (oddělené tečkou); například PRE. #####
  5. zřetězeno: [fieldname1], [fieldname2], ... [fieldnameX] - podle zřetězení pole (můžete zřetězit tolik polí, kolik chcete.
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,Majitel DocType: Communication,Visit,Návštěva DocType: LDAP Settings,LDAP Search String,Hledání LDAP String DocType: Translation,Translation,Překlad -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Nastavení> Upravit formulář apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Pan DocType: Custom Script,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,Vyberte sloupec @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,Záznam importu apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Vloží promítání obrázků do www stránky. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,Odeslat DocType: Workflow Action Master,Workflow Action Name,Název akce toku (workflow) -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,DocType nemůže být sloučen +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,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 +270,Not a zip file,Nejedná se o soubor zip DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,Doc událost apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,Vy DocType: Braintree Settings,Braintree Settings,Nastavení Braintree DocType: Website Theme,lowercase,malá písmena -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,Vyberte sloupce založené na apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,Uložit filtr DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},Nelze odstranit {0} +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,Ne předchůdci z DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,Newsletter již byla odeslána apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","Přihlašovací relace vypršela, obnovte stránku a zkuste to znovu" @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,Email Odhlásit DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Zvolte obrázek s šířkou okolo 150px a s transparentním pozadím pro nejlepší výsledek. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Aplikace třetích stran apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,První uživatel bude System Manager (lze později změnit). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí šablona adresy. Vytvořte prosím nový z nabídky Nastavení> Tisk a branding> Šablona adresy. apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,DocType musí být Submittable pro vybranou událost Doc ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,circle-arrow-up DocType: Email Domain,Email Domain,Email Domain DocType: Workflow State,italic,italic -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0}: Nelze nastavit Import bez Vytvoření +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0}: Nelze nastavit Import bez Vytvoření DocType: SMS Settings,Enter url parameter for message,Zadejte url parametr zprávy apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,Zobrazit přehled ve vašem prohlížeči apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event a jiné kalendáře. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Všechna pole jsou nezbytná pro odeslání komentáře. +DocType: Print Settings,Printer Name,Název tiskárny +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,Přetáhnutím třídit sloupce apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Šířky lze nastavit v px nebo %. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,Start DocType: Contact,First Name,Křestní jméno @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,soubory apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Práva se aplikují na uživatele na základě přiřazené role. apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,Nemáte povoleno odesílat emaily související s tímto dokumentem -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,Prosím zvolte aspoň 1 sloupec z {0} třídit / skupina +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,Prosím zvolte aspoň 1 sloupec z {0} třídit / skupina DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Zaškrtněte, pokud se testuje platby pomocí API Sandbox" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Nejste oprávněn odstranit standardní motiv webové stránky. DocType: Data Import,Log Details,Podrobnosti o protokolu DocType: Feedback Trigger,Example,Příklad DocType: Webhook Header,Webhook Header,Záhlaví Webhook +DocType: Print Settings,Print Server,Tiskový server DocType: Workflow State,gift,dárek DocType: Workflow Action,Completed By,Dokončeno apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Vyžadováno @@ -223,12 +227,13 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS 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/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,Dokumentace +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,Dokumentace DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,Smazat {0} položky natrvalo? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,Není povoleno DocType: DocShare,Internal record of document shares,Interní záznam akcií dokumentů DocType: Workflow State,Comment,Komentář +DocType: Data Migration Plan,Postprocess Method,Metoda postprocesu apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,Vyfotit apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.",Můžete upravit Odeslané dokumenty jejich zrušením a následovnou změnou. DocType: Data Import,Update records,Aktualizovat záznamy @@ -236,20 +241,20 @@ 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/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,Uložit jako +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,Uložit jako DocType: Communication,Seen,Seen apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,Zobrazit více podrobností DocType: System Settings,Run scheduled jobs only if checked,Spouštět plánované operace pouze když je zaškrtnuto apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Se zobrazí pouze tehdy, pokud jsou povoleny sekce nadpisy" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archiv -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,Nahrání souboru +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,Nahrání souboru DocType: Activity Log,Message,Zpráva DocType: Communication,Rating,Rating DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Tisková šířka pole, pokud je pole sloupcem v tabulce" DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,Chybné jméno pole {0} v add_fetch konfiguraci vlastního skriptu +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,Chybné jméno pole {0} v add_fetch konfiguraci vlastního skriptu DocType: Workflow State,headphones,sluchátka -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,Je vyžadováno heslo nebo vybrat Čeká heslo +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,Je vyžadováno heslo nebo vybrat Čeká heslo DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,např. replies@yourcomany.com. Všechny odpovědi přijdou do této schránky. DocType: Slack Webhook URL,Slack Webhook URL,Smažte webovou adresu URL DocType: Data Migration Run,Current Mapping,Aktuální mapování @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Skupiny DocTypes apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Integrace Map Google DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,Obnovit heslo +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,Zobrazit víkendy DocType: Workflow State,remove-circle,remove-circle DocType: Help Article,Beginner,Začátečník DocType: Contact,Is Primary Contact,Je primárně Kontakt apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,Javascript pro přidání do hlavičky stránky. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,Není dovoleno tisknout návrhy dokumentů +apps/frappe/frappe/www/printview.py +80,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 +12,Reset to defaults,Obnovit výchozí DocType: Workflow,Transition Rules,Pravidla transakce apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Příklad: -DocType: Google Maps,Google Maps,Google mapy DocType: Workflow,Defines workflow states and rules for a document.,Vymezuje jednotlivé stavy toků. DocType: Workflow State,Filter,Filtr apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},FieldName {0} nemůže mít speciální znaky jako {1} @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,Aktualiz apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,"Chyba: Dokument byl upraven poté, co jste ho otevřeli" apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} odhlášen: {1} DocType: Address,West Bengal,Západní Bengálsko -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0}: Nelze nastavit Odeslat když není Odeslatelné +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0}: Nelze nastavit Odeslat když není Odeslatelné DocType: Transaction Log,Row Index,Řádkový index DocType: Social Login Key,Facebook,Facebook -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""","Filtrováno dle ""{0}""" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""","Filtrováno dle ""{0}""" DocType: Salutation,Administrator,Správce DocType: Activity Log,Closed,Zavřeno DocType: Blog Settings,Blog Title,Titulek blogu apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,Standardní role nemůže být zakázán -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,Typ chatu +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,Typ chatu DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,Nelze použít sub-query v pořadí +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,Nelze použít sub-query v pořadí DocType: Web Form,Button Help,tlačítko Nápověda DocType: Kanban Board Column,purple,nachový DocType: About Us Settings,Team Members,Členové týmu @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",SQL podmínky. P DocType: User,Get your globally recognized avatar from Gravatar.com,Pořiďte si celosvětově uznávané avatar z Gravatar.com apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","Vaše předplatné vypršelo na {0}. Chcete-li obnovit, {1}." DocType: Workflow State,plus-sign,plus-sign -apps/frappe/frappe/__init__.py +918,App {0} is not installed,App {0} není nainstalován +apps/frappe/frappe/__init__.py +994,App {0} is not installed,App {0} není nainstalován DocType: Data Migration Plan,Mappings,Mapování DocType: Notification Recipient,Notification Recipient,Příjemce oznámení DocType: Workflow State,Refresh,Obnovit DocType: Event,Public,Veřejné -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,Není co zobrazit +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,Není co zobrazit DocType: System Settings,Enable Two Factor Auth,Povolit povolení dvou faktorů -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[Urgentní] Chyba při vytváření opakujících se %s pro %s +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[Urgentní] Chyba při vytváření opakujících se %s pro %s apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Oblíbená DocType: DocField,Print Hide If No Value,Tisk Hide-li Ne Hodnota DocType: Kanban Board Column,yellow,žlutý -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,Je publikován pole musí být platná fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,Je publikován pole musí být platná fieldname apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Nahrát přílohu DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,Nová hodnota +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,Bez oprávnění k úpravě apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Přidat sloupec apps/frappe/frappe/www/contact.html +34,Your email address,Vaše e-mailová adresa DocType: Desktop Icon,Module,Modul 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/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,"Ujistěte se, že dokumenty Referenční komunikace nejsou kruhově propojeny." +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,"Ujistěte se, že dokumenty Referenční komunikace nejsou kruhově propojeny." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Vytvořit nový formát apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,Nelze vytvořit vědro: {0}. Změňte jej na jedinečný název. DocType: Webhook,Request URL,Požadavek URL @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,je Tabulka apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,Použijte oprávnění uživatele pro následující typy DocTypes DocType: Email Account,Total number of emails to sync in initial sync process ,Celkový počet e-mailů pro synchronizaci v počátečním synchronizačního procesu DocType: Website Settings,Set Banner from Image,Nastavit banner z obrázku -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Globální vyhledávání +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,Globální vyhledávání DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},Byl pro vás vytvořen nový účet v {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,Pokyny zasláno e-mailem @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag fronty apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,Styly pro tiskové formáty apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Nelze určit otevřené {0}. Zkuste něco jiného. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,Vaše informace byly předloženy -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,Uživatel: {0} nemůže být vymazán +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,Vaše informace byly předloženy +apps/frappe/frappe/core/doctype/user/user.py +305,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 +143,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. DocType: DocType,App,Aplikace @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Zobrazit DocType: Workflow State,Print,Tisk DocType: User,Restrict IP,Omezit IP apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,Přehled -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,Nelze odeslat emaily v tomto Čase -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,Vyhledávání nebo zadejte příkaz +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,Nelze odeslat emaily v tomto Čase +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,Vyhledávání nebo zadejte příkaz DocType: Activity Log,Timeline Name,Časová osa Name DocType: Email Account,e.g. smtp.gmail.com,např. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,Přidat nové pravidlo @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,N DocType: Top Bar Item,Parent Label,nadřazený popisek apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Váš dotaz byl přijat. Odpovíme Vám brzy zpět. Máte-li jakékoliv další informace, prosím, odpovězte na tento mail." DocType: GCalendar Account,Allow GCalendar Access,Povolit přístup ke službě GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} je povinné pole +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} je povinné pole apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,Požadovaný token pro přihlášení DocType: Event,Repeat Till,Opakovat dokud apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,Nový apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Nastavte adresu URL skriptu v nastavení Gsuite +DocType: Google Maps Settings,Google Maps Settings,Nastavení Map Google apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Nahrávám... DocType: DocField,Password,Heslo apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,Váš systém je aktualizován. Prosím aktualizujte znovu po několika okamžicích @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,Bez odpovídajících záznamů. Hledat něco nového DocType: Chat Profile,Away,Pryč DocType: Currency,Fraction Units,Zlomkové jednotky -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} z {1} až {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} z {1} až {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Označit jako hotové DocType: Chat Message,Type,Typ DocType: Activity Log,Subject,Předmět @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,Částka z terénního apps/frappe/frappe/core/doctype/docshare/docshare.py +34,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 -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0}: musí být nastaveno první +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,Generování PDF se nezdařilo +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0}: musí být nastaveno první apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","Použijte pár slov, vyhnout obvyklým fráze." DocType: Workflow State,plane,letadlo apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Pokud nahráváte nové záznamy, ""číselníky"" se stanou povinnými, pakliže jsou zvoleny." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,Získejte upozornění pro dnešní den -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DOCTYPE lze přejmenovat pouze uživatel Administrator +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,Získejte upozornění pro dnešní den +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DOCTYPE lze přejmenovat pouze uživatel Administrator DocType: Chat Message,Chat Message,Chatová zpráva apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},E-mail nebyl ověřen pomocí {0} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},Změněná hodnota {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},Změněná hodnota {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Pokud má uživatel nějakou roli, uživatel se stává "systémovým uživatelem". "Uživatel systému" má přístup k pracovní ploše" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,Zkontrolujte svůj e-mail pro ověření -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,Fold nemůže být na konci formuláře +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,Zkontrolujte svůj e-mail pro ověření +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,Fold nemůže být na konci formuláře DocType: Communication,Bounced,Odražené DocType: Deleted Document,Deleted Name,vypouští Name apps/frappe/frappe/config/setup.py +14,System and Website Users,Systémový a veřejní uživatelé @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,Doc Status DocType: Data Migration Run,Pull Update,Pull Update DocType: Auto Email Report,No of Rows (Max 500),Ne řádků (max 500) DocType: Language,Language Code,Kód jazyka +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Poznámka: Ve výchozím nastavení jsou odesílány e-maily pro neúspěšné zálohy. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","Vaše záloha se připravuje pro stažení, tato operace může chvíli trvat v závislosti na objemu dat, trpělivost prosím …" apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,Přidat filtr apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS poslal do následujících čísel: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,Vaše hodnocení: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} a {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,Spusťte konverzaci. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,Vaše hodnocení: +apps/frappe/frappe/email/smtp.py +191,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í> Email> E-mailový účet +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} a {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,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ů DocType: Data Migration Run,Current Mapping Start,Aktuální spuštění mapování apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,E-mail byl označen jako spam DocType: About Us Settings,Website Manager,Správce webu -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,Odesílání souboru bylo odpojeno. Prosím zkuste to znovu. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,Neplatné pole hledání +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,Odesílání souboru bylo odpojeno. Prosím zkuste to znovu. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,Překlady apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,Vyberete si návrhy nebo zrušené dokumenty -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},Dokument {0} byl nastaven na stav {1} do {2} -apps/frappe/frappe/model/document.py +1211,Document Queued,dokument ve frontě +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},Dokument {0} byl nastaven na stav {1} do {2} +apps/frappe/frappe/model/document.py +1212,Document Queued,dokument ve frontě DocType: GSuite Templates,Destination ID,ID místa určení DocType: Desktop Icon,List,Seznam DocType: Activity Log,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,Neplatné heslo: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,Neplatné heslo: DocType: Print Settings,Send document web view link in email,Odeslat dokument odkaz web zobrazit v e-mailu apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Vaše připomínky ke dokumentu {0} úspěšně uložen apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Předchozí -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,Re: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} řádky pro {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,Re: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} řádky pro {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-měna. Pro např ""Cent """ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,Název připojení -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Vyberte uploadovaný soubor +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Vyberte uploadovaný soubor DocType: Letter Head,Check this to make this the default letter head in all prints,Toto zaškrtněte pro vytvoření výchozího záhlaví pro veškerý tisk DocType: Print Format,Server,Server -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,New Kanban Board +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,New Kanban Board DocType: Desktop Icon,Link,Odkaz apps/frappe/frappe/utils/file_manager.py +122,No file attached,Žádný soubor nepřiložen DocType: Version,Version,Verze +DocType: S3 Backup Settings,Endpoint URL,URL koncového bodu apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,Grafy DocType: User,Fill Screen,Vyplnit obrazovku apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,Profil chatu pro uživatele {user} existuje. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,Oprávnění jsou automaticky aplikována na standardní přehledy a vyhledávání. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,Nahrávání selhalo -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,Upravit pomocí Vkládání +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,Upravit pomocí Vkládání apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","typ dokumentu ..., např zákazník" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Stavem '{0}' je neplatná DocType: Workflow State,barcode,Barcode @@ -486,22 +496,24 @@ DocType: Country,Country Name,Stát Název 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 +5,"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 -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,Pole Obrázek musí být platný fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,Pole Obrázek musí být platný fieldname DocType: Chat Token,Token,Žeton DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (název) entity jejíž vlastnost bude nastavena apps/frappe/frappe/limits.py +84,"To renew, {0}.","Chcete-li obnovit, {0}." DocType: Website Settings,Website Theme Image Link,Internetové stránky Téma Image Link 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 +129,App {0} already installed,Aplikace {0} již byla nainstalována -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Žádný náhled +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,Žádný náhled DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Ukázat Oprávnění -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,Časová osa pole musí být Link nebo Dynamic Link +DocType: Data Import,New data will be inserted.,Budou vložena nová data. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,Časová osa pole musí být Link nebo Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Časové období apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Strana {0} z {1} DocType: About Us Settings,Introduce your company to the website visitor.,Představte svoji organizaci návštěvníků internetových stránek. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json",Šifrovací klíč je neplatný. Zkontrolujte prosím site_config.json +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json",Šifrovací klíč je neplatný. Zkontrolujte prosím site_config.json DocType: SMS Settings,Receiver Parameter,Přijímač parametrů DocType: Data Migration Mapping Detail,Remote Fieldname,Vzdálené jméno pole DocType: Communication,To,na @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,Velikost písma DocType: System Settings,Disable Standard Email Footer,Zakázat standardní poštovní zápatí DocType: Workflow State,facetime-video,facetime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 komentář -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,viděno +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,viděno DocType: Notification,Days Before,Dny před DocType: Workflow State,volume-down,volume-down -apps/frappe/frappe/desk/reportview.py +268,No Tags,žádné tagy +apps/frappe/frappe/desk/reportview.py +270,No Tags,žádné tagy DocType: DocType,List View Settings,Seznam Nastavení zobrazení DocType: Email Account,Send Notification to,Odeslat oznámení na DocType: DocField,Collapsible,Skládací apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Uloženo -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,S čím potřebuješ pomoci? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,S čím potřebuješ pomoci? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Volby pro vybrané. Každá volba na nový řádek. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,Zrušit na trvalo: {0}? DocType: Workflow State,music,Hudba +DocType: Website Theme,Text Styles,Textové styly apps/frappe/frappe/www/qrcode.html +3,QR Code,QR kód -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,Datum poslední změny +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,Datum poslední změny DocType: Chat Profile,Settings,Nastavení DocType: Print Format,Style Settings,Nastavení stylu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Polích osy Y -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,Uspořádat pole {0} musí být platné fieldname -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,Více +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,Uspořádat pole {0} musí být platné fieldname +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Více DocType: Contact,Sales Manager,Manažer prodeje -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,Přejmenovat +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,Přejmenovat DocType: Print Format,Format Data,Formát dat DocType: List Filter,Filter Name,Název filtru apps/frappe/frappe/utils/bot.py +91,Like,Jako @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,Jméno místnosti chatu DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,"Podívejte se, které dokumenty jsou čitelné uživatelem" DocType: Deleted Document,Hub Sync ID,ID synchronizace Hubu -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,použijete % jako zástupný znak +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,použijete % jako zástupný znak DocType: Auto Repeat,Quarterly,Čtvrtletně apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail domény není nakonfigurován pro tento účet, vytvořit jeden?" DocType: User,Reset Password Key,Obnovit heslo klíče @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Minimální skóre hesla DocType: DocType,Fields,Pole DocType: System Settings,Your organization name and address for the email footer.,Vaše jméno a adresa organizace pro e-mailové zápatí. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,nadřazená tabulka +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,nadřazená tabulka apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,Zálohování S3 dokončeno! apps/frappe/frappe/config/desktop.py +60,Developer,Vývojář -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,Vytvořeno +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,Vytvořeno apps/frappe/frappe/client.py +101,No permission for {doctype},Žádné oprávnění pro {doctype} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{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/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,Předkové z apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Kořen (nejvyšší úroveň): {0} nelze smazat apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,Zatím žádné komentáře apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings",Prosím nastavte SMS před nastavením metody autentizace pomocí Nastavení SMS @@ -576,6 +590,7 @@ DocType: Contact,Open,Otevřít DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Definuje akce na stavech a další krok a povolené role. DocType: Data Migration Mapping,Remote Objectname,Vzdálené jméno objektu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.",Nejlepší praxí je NEpřiřazovat stejnou sadu oprávnění různým rolím. Namísto toho nastavte více rolí stejnému uživateli. +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,Potvrďte svou akci do {0} tohoto dokumentu. DocType: Success Action,Next Actions HTML,Další akce HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,Pouze {0} e-mailem zprávy jsou povoleny pro jednotlivé uživatele DocType: Address,Address Title,Označení adresy @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,Výchozí hodnota DocType: Auto Repeat,Daily,Denně apps/frappe/frappe/config/setup.py +19,User Roles,Uživatelské role DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Konfigurátor vlastností přepisuje standardní DocType nebo vlastnosti pole -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,Nelze obnovit: Neplatný / expirovaný odkaz. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,Nelze obnovit: Neplatný / expirovaný odkaz. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,Lepší přidat několik dalších písmen nebo jiné slovo apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},Registrační kód jednorázového hesla (OTP) od {} DocType: DocField,Set Only Once,Nastavit pouze jednou DocType: Email Queue Recipient,Email Queue Recipient,Email Fronta Příjemce DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,Webhook URL -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,Uživatelské jméno {0} již existuje -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,"{0}: Nelze nastavit import, protože {1} není importovatelné" +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Uživatelské jméno {0} již existuje +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,"{0}: Nelze nastavit import, protože {1} není importovatelné" apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},Tam je chyba v adrese šabloně {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} je neplatná e-mailová adresa v adresáři "Příjemci" DocType: User,Allow Desktop Icon,Povolit ikonu plochy DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Hostitel -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Sloupec {0} již existují. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,Sloupec {0} již existují. DocType: ToDo,High,Vysoké DocType: S3 Backup Settings,Secret Access Key,Tajný přístupový klíč apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Muž -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,Služba OTP Secret byla resetována. Při příštím přihlášení bude vyžadována opětovná registrace. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,Služba OTP Secret byla resetována. Při příštím přihlášení bude vyžadována opětovná registrace. DocType: Communication,From Full Name,Od Celé jméno -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Nemáte přístup k Reportu: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},Nemáte přístup k Reportu: {0} DocType: User,Send Welcome Email,Odeslat uvítací e-mail -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,Odebrat filtr +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,Odebrat filtr +DocType: Web Form Field,Show in filter,Zobrazit ve filtru DocType: Address,Daman and Diu,Daman a Diu -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,Zakázka +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,Zakázka DocType: Address,Personal,Osobní apps/frappe/frappe/config/setup.py +125,Bulk Rename,Hromadné přejmenování DocType: Email Queue,Show as cc,Zobrazit jako cc @@ -625,12 +641,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,Ne v režimu pro vývojáře apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,Zálohování souborů je připraveno 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 apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,"Je to riskantní smazat tento soubor: {0}. Prosím, obraťte se na správce systému." DocType: Currency,Currency Name,Jméno měny apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,žádné e-maily -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,Link vypršel -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,Vyberte formát souboru +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} rok (y) +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,Link vypršel +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,Vyberte formát souboru DocType: Report,Javascript,Javascript DocType: File,Content Hash,Otisk obsahu (hash) DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Uchovává JSON posledních známých verzí různých instalovaných aplikací. To se používá k zobrazení poznámky k vydání. @@ -642,16 +660,15 @@ DocType: Auto Repeat,Stopped,Zastaveno apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,Nebylo odebráno apps/frappe/frappe/desk/like.py +89,Liked,Líbil apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Odeslat nyní -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","Standardní typ DocType nemůže mít výchozí formát tisku, použijte možnost Přizpůsobit formulář" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","Standardní typ DocType nemůže mít výchozí formát tisku, použijte možnost Přizpůsobit formulář" DocType: Report,Query,Dotaz DocType: DocType,Sort Order,Pořadí řazení -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},'V seznamu' není povoleno pro typ {0} na řádku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},'V seznamu' není povoleno pro typ {0} na řádku {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Zvolte popisek, za kterým chcete vložit nové pole." ,Document Share Report,Dokument Share Report DocType: Social Login Key,Base URL,Základní URL DocType: User,Last Login,Poslední přihlášení apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},Pro políčko {0} nelze nastavit hodnotu 'Translatable' -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},Název pole je vyžadován v řádku: {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Sloupec DocType: Chat Profile,Chat Profile,Profil rozhovoru DocType: Custom Field,Adds a custom field to a DocType,Přidá přizpůsobené pole do DocType @@ -660,6 +677,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,Zvolte aspoň 1 záznamů pro tisk apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,Nejprve nastavte název a uložte záznam. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Sdíleno s {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,Odhlásit odběr DocType: View log,Reference Name,Název reference @@ -681,17 +699,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Mož apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} až {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Přihlásit se chyby během požadavků. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} byl úspěšně přidán do e-mailové skupiny. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,"Neupravujte záhlaví, které jsou v šabloně přednastaveny" +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,"Neupravujte záhlaví, které jsou v šabloně přednastaveny" apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},Přihlašovací ověřovací kód od {} DocType: Address,Uttar Pradesh,Uttar Pradesh +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,Poznámka: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,Stav importu -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,Udělat soubor (y) soukromý nebo veřejný? +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,Udělat soubor (y) soukromý nebo veřejný? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Plánované poslat na {0} DocType: Kanban Board Column,Indicator,Indikátor DocType: DocShare,Everyone,Všichni DocType: Workflow State,backward,pozpátku -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: jedno pravidlo pouze dovoleno se stejnou roli, Level a {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: jedno pravidlo pouze dovoleno se stejnou roli, Level a {1}" DocType: Email Queue,Add Unsubscribe Link,Přidat odkaz pro odhlášení apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Zatím žádné komentáře. Začít novou diskuzi. DocType: Workflow State,share,Podíl @@ -703,6 +722,7 @@ DocType: User,Last IP,Poslední IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Obnovit / upgrade apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,Nový dokument {0} je s vámi sdílen {1}. DocType: Data Migration Connector,Data Migration Connector,Konektor pro migraci dat +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í DocType: PayPal Settings,API Password,API Password apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Zadejte modul pythonu nebo vyberte typ konektoru @@ -711,6 +731,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Naposledy apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Zobrazit Odběratelé DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,"Soubor nelze odstranit, protože patří do {0} {1}, pro který nemáte oprávnění" +DocType: Website Theme,Custom JS,Vlastní JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Paní DocType: Website Theme,Background Color,Barva pozadí apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,Narazili jsme na problémy při odesílání emailu. Prosím zkuste to znovu. @@ -719,21 +740,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,Mapování DocType: Web Page,0 is highest,0 je nejvyšší apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,"Jste si jisti, že chcete znovu sestavit toto sdělení {0}?" -apps/frappe/frappe/www/login.html +86,Send Password,Poslat heslo +apps/frappe/frappe/www/login.html +87,Send Password,Poslat heslo +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Prosím nastavte výchozí emailový účet z Nastavení> Email> E-mailový účet +DocType: Print Settings,Server IP,Server IP DocType: Email Queue,Attachments,Přílohy apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Nemáte oprávnění pro přístup k této dokumentu DocType: Language,Language Name,Název jazyka DocType: Email Group Member,Email Group Member,E-mail člena skupiny +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,Váš účet byl uzamčen a bude pokračovat po {0} sekundách apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,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 +313,Duplicate name {0} {1},Duplicitní jméno {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},Duplicitní jméno {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,Opakujte DocType: Web Form Field,Web Form Field,Pole webového formuláře apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Skrýt pole v konfigurátoru výpisů apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,Máte novou zprávu od: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Upravit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,Zadejte adresu URL přesměrování -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Nastavení> Povolení uživatele apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","generovat. Pokud je opožděno, musíte ručně změnit pole "Opakovat v den měsíce"" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,Obnovit původní práva @@ -758,23 +781,25 @@ DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-mailová odpověď Nápověda apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Výpisy konfigurátoru výpisů jsou spravovány přímo konfigurátorem výpisů. Nelze provést žádnou akci. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Je třeba ověřit svou emailovou adresu -apps/frappe/frappe/model/document.py +1056,none of,žádný z +apps/frappe/frappe/model/document.py +1057,none of,žádný z apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,Odeslat si kopii DocType: Dropbox Settings,App Secret Key,App Secret Key DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Webová stránka apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Zaškrtnuté položky se zobrazí na ploše -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} nelze nastavit pro jediný typ +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} nelze nastavit pro jediný typ DocType: Data Import,Data Import,Import dat apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,Konfigurovat graf apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} právě prohlížejí tento dokument DocType: ToDo,Assigned By Full Name,Přidělené Celé jméno apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0}: aktualizováno -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené +DocType: System Settings,Allow Consecutive Login Attempts ,Povolit Pokusy o konsistentní přihlášení apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,Během platební transakce došlo k chybě. Prosím kontaktujte nás. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,{0} dny DocType: Email Account,Awaiting Password,Čeká Password DocType: Address,Address Line 1,Adresní řádek 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,Ne potomky DocType: Custom DocPerm,Role,Role apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Nastavení ... apps/frappe/frappe/utils/data.py +507,Cent,Cent @@ -794,10 +819,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,Stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Odkaz na stránku, kterou chcete otevřít. Ponechte prázdné, pokud chcete, aby to skupina rodič." DocType: DocType,Is Single,Je osamocené -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,Registrace je zakázána -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} opustil konverzaci v {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,Registrace je zakázána +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} opustil konverzaci v {1} {2} DocType: Blogger,User ID of a Blogger,ID uživatele bloggera -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,Měl by zde zbýt alespoň jeden systémový administrátor +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,Měl by zde zbýt alespoň jeden systémový administrátor DocType: GCalendar Account,Authorization Code,Autorizační kód DocType: PayPal Settings,Mention transaction completion page URL,Zmínit transakce dokončení URL stránky DocType: Help Article,Expert,Expert @@ -818,8 +843,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","Chcete-li přidat dynamický předmět, použijte Jinja tagů
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,Použít oprávnění +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},Neplatné pole hledání {0} DocType: User,Modules HTML,Moduly HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Sledujte, zda váš e-mail byl otevřen příjemcem.
Poznámka: Pokud odesíláte více příjemcům, i když 1 příjemce přečte e-mail, bude to považováno za "Otevřeno"" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,Chybějící hodnoty vyžadovány DocType: DocType,Other Settings,další nastavení DocType: Data Migration Connector,Frappe,Frapé @@ -829,15 +857,13 @@ DocType: Customize Form,Change Label (via Custom Translation),Změna Label (pře apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Žádné povolení k {0} {1} {2} DocType: Address,Permanent,Trvalý apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,Poznámka: Jiná pravidla oprávnění mohou být také aplikována -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/templates/emails/print_link.html +2,View this in your browser,Podívej se na to ve svém prohlížeči DocType: DocType,Search Fields,Vyhledávací pole DocType: System Settings,OTP Issuer Name,Jméno vydavatele OTP DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Nositel Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Vybrán žádný dokument apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,Jste připojeni k internetu. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,Jste připojeni k internetu. DocType: Social Login Key,Enable Social Login,Povolit sociální přihlášení DocType: Event,Event,Událost apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" @@ -852,7 +878,7 @@ DocType: Print Settings,In points. Default is 9.,V bodech. Výchozí je 9. DocType: OAuth Client,Redirect URIs,přesměrování URI apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},Odeslání {0} DocType: Workflow State,heart,srdce -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,Staré heslo je vyžadováno. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,Staré heslo je vyžadováno. DocType: Role,Desk Access,Bezbariérový přístup DocType: Workflow State,minus,mínus DocType: S3 Backup Settings,Bucket,Kbelík @@ -860,8 +886,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,Nelze načíst fotoaparát. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,Uvítací email odeslán apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,Pojďme připravit systém pro první použití. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,Již registrováno +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,Již registrováno DocType: System Settings,Float Precision,Počet desetinných míst +DocType: Notification,Sender Email,Email odesílatele apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Jen Administrátor může editovat apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Název souboru DocType: DocType,Editable Grid,editovatelné Grid @@ -872,17 +899,19 @@ DocType: Communication,Clicked,Clicked apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Naplánováno odesílat DocType: DocType,Track Seen,Track Viděno -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,Tuto metodu lze použít pouze k vytvoření komentář +DocType: Dropbox Settings,File Backup,Zálohování souborů +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,Tuto metodu lze použít pouze k vytvoření komentář DocType: Kanban Board Column,orange,oranžový apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,{0}: nenalezeno apps/frappe/frappe/config/setup.py +259,Add custom forms.,Přidat vlastní formuláře. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} na {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,předložen tento dokument +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,předložen tento dokument apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systém poskytuje mnoho předdefinovaných rolí. Můžete přidat vlastní nové role pro detailnější nastavení oprávnění. DocType: Communication,CC,CC DocType: Country,Geo,Geo +DocType: Data Migration Run,Trigger Name,Název spouštěče DocType: Blog Category,Blog Category,Kategorie blogu -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,Nelze namapovat jelikož následující podmínka selhala: +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,Nelze namapovat jelikož následující podmínka selhala: DocType: Role Permission for Page and Report,Roles HTML,Role HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Vyberte první image značky. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Aktivní @@ -906,16 +935,17 @@ DocType: Address,Other Territory,Další území ,Messages,Zprávy apps/frappe/frappe/config/website.py +83,Portal,Portál DocType: Email Account,Use Different Email Login ID,Použijte jiné přihlašovací ID e-mailu -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,Musíte specifikovat Dotaz pro spuštění +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,Musíte specifikovat Dotaz pro spuštění apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Zdá se, že jde o problém s konfigurací serverů braintree. Nebojte se, v případě selhání bude částka vrácena na váš účet." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,Správa aplikací třetích stran apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","Nastavení Jazyka, Data a Času" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Nastavení> Povolení uživatele DocType: User Email,User Email,Uživatel E-mail DocType: Event,Saturday,Sobota DocType: User,Represents a User in the system.,Představuje uživatele v systému DocType: Communication,Label,Popisek -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Úkol {0}, které jste přiřadili k {1}, byl uzavřen." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,Zavřete prosím toto okno +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","Úkol {0}, které jste přiřadili k {1}, byl uzavřen." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,Zavřete prosím toto okno DocType: Print Format,Print Format Type,Typ formátu tisku DocType: Newsletter,A Lead with this Email Address should exist,Měly by existovat elektrody s e-mailovou adresu apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source aplikací pro web @@ -931,8 +961,8 @@ DocType: Data Export,Excel,Vynikat apps/frappe/frappe/templates/emails/password_update.html +2,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: Feedback Trigger,Condition,Podmínka -apps/frappe/frappe/utils/data.py +619,{0} hours ago,Před {0} hodin -apps/frappe/frappe/utils/data.py +629,1 month ago,1 před měsícem +apps/frappe/frappe/utils/data.py +621,{0} hours ago,Před {0} hodin +apps/frappe/frappe/utils/data.py +631,1 month ago,1 před měsícem DocType: Contact,User ID,User ID DocType: Communication,Sent,Odesláno DocType: Address,Kerala,Kerala @@ -951,7 +981,7 @@ DocType: GSuite Templates,Related DocType,Související DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Upravit pro přidání obsahu apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,Zvolte jazyky apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,Podrobnosti o kartě -apps/frappe/frappe/__init__.py +538,No permission for {0},Nemáte oprávnění pro {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},Nemáte oprávnění pro {0} DocType: DocType,Advanced,Pokročilé apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,"Zdá se, že klíč API nebo API Secret je špatně !!!" apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Reference: {0} {1} @@ -961,13 +991,13 @@ DocType: Address,Address Type,Typ adresy apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,"Neplatný Uživatelské jméno nebo Support heslo. Prosím, opravu a zkuste to znovu." DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Vaše předplatné vyprší zítra. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,Chyba v oznámení +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,Chyba v oznámení apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,paní apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Aktualizovaný {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Hlavní DocType: DocType,User Cannot Create,Uživatel nemůže Vytvořit apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,Složka {0} neexistuje -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,Přístup Dropbox je schválen! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,Přístup Dropbox je schválen! DocType: Customize Form,Enter Form Type,Vložte typ formuláře apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Chybí parametr Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Není oštítkován žádný záznam @@ -976,14 +1006,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,Poslat heslo Aktualizovat oznámení apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Upravené formáty pro tisk, e-mail" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,Aktualizováno na novou verzi +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,Aktualizováno na novou verzi DocType: Custom Field,Depends On,Závisí na DocType: Kanban Board Column,Green,Zelená DocType: Custom DocPerm,Additional Permissions,Rozšířená oprávnění DocType: Email Account,Always use Account's Email Address as Sender,Vždy použít poštovní schránky e-mailovou adresu jako odesílatel apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Pro přidání komentáře se musíte přihlásit -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,začněte vkládat data pod tímto řádkem -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},změněné hodnoty pro {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,začněte vkládat data pod tímto řádkem +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},změněné hodnoty pro {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","ID e-mailu musí být jedinečné, e-mailový účet již existuje \ for {0}" DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Přizpůsobit ... DocType: Print Format,Align Labels to the Right,Zarovnejte štítky doprava @@ -1002,39 +1034,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,Upravu DocType: Workflow Action Master,Workflow Action Master,Akce hlavních toků DocType: Custom Field,Field Type,Typ pole apps/frappe/frappe/utils/data.py +537,only.,pouze. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,OTP tajemství může být obnoveno pouze administrátorem. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,OTP tajemství může být obnoveno pouze administrátorem. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,"Vyhnout se roky, které jsou spojeny s vámi." apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,Omezit uživatele pro konkrétní dokument DocType: GSuite Templates,GSuite Templates,Šablony GSuite +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,Sestupně apps/frappe/frappe/utils/goal.py +110,Goal,Cíl apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,"Neplatný Mail Server. Prosím, opravu a zkuste to znovu." DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","Pro odkazy, zadejte DocType jako rozsah. Pro Select, zadejte seznam možností, z nichž každý na nový řádek." DocType: Workflow State,film,film -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},Bez oprávnění číst: {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},Bez oprávnění číst: {0} apps/frappe/frappe/config/desktop.py +8,Tools,Nástroje apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,Vyhněte se v posledních letech. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,Není povoleno více kořenových uzlů (uzlů nejvyšší úrovně). DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Pokud je povoleno, budou uživatelé při každém přihlášení upozorněni. Není-li tato možnost povolena, budou uživatelé upozorněni pouze jednou." -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,Neplatná podmínka {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,Neplatná podmínka {0} DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Je-li zaškrtnuto, uživatelé nebudou vidět dialogové okno Potvrdit přístup." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID pole je vyžadováno pro úpravu hodnot použitím výpisu. Prosím zvolte ID pole použitím výběru sloupce apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Komentáře -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,Potvrdit -apps/frappe/frappe/www/login.html +58,Forgot Password?,Zapomněl jsi heslo? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,Potvrdit +apps/frappe/frappe/www/login.html +59,Forgot Password?,Zapomněl jsi heslo? DocType: System Settings,yyyy-mm-dd,rrrr-mm-dd apps/frappe/frappe/desk/report/todo/todo.py +19,ID,ID apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,Chyba serveru -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Je nutné přihlášovací ID +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Je nutné přihlášovací ID DocType: Website Slideshow,Website Slideshow,Promítání obrázků na www stránce apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,No Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Odkaz na domovskou www stránku. Standardní odkazy (index, přihlášení, produkty, blog, o nás, kontakt)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Ověřování při přijímání e-mailů z e-mailového účtu {0} se nezdařilo. Zpráva ze serveru: {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Ověřování při přijímání e-mailů z e-mailového účtu {0} se nezdařilo. Zpráva ze serveru: {1} DocType: Custom Field,Custom Field,Přizpůsobené pole -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,Prosím specifikujte které datum musí být prověřeno +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,Prosím specifikujte které datum musí být prověřeno DocType: Custom DocPerm,Set User Permissions,Nastavit práva apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},Není povoleno pro {0} = {1} DocType: Email Account,Email Account Name,Název e-mailového účtu -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,Něco se pokazilo při generování přístupového tokenu schránky. Pro podrobnější informace prosím zkontrolujte protokol chyb. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,Něco se pokazilo při generování přístupového tokenu schránky. Pro podrobnější informace prosím zkontrolujte protokol chyb. DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Zpravodaje ke kontaktům, vede." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","např ""Podpora "","" Prodej"","" Jerry Yang """ @@ -1043,19 +1077,20 @@ DocType: DocField,Description,Popis DocType: Print Settings,Repeat Header and Footer in PDF,Opakovat záhlaví a zápatí ve formátu PDF 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 +20,Column Name cannot be empty,Název sloupec nemůže být prázdný -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},Chyba při připojování k e-mailovému účtu {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,Název sloupec nemůže být prázdný +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},Chyba při připojování k e-mailovému účtu {0} DocType: Workflow State,fast-forward,fast-forward DocType: Communication,Communication,Komunikace apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Zkontrolujte, zda sloupce vybrat, přetáhnout nastavení pořadí." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,Tato akce je NEVRATNÁ a nemůže ji vrátit zpět. Pokračovat? apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,Přihlaste se a zobrazte v Prohlížeči DocType: Event,Every Day,Každý den DocType: LDAP Settings,Password for Base DN,Heslo pro základní DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Tabulka Field -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,Sloupce na bázi +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,Sloupce na bázi apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,Zadejte klíč pro povolení integrace se službou Google GSuite DocType: Workflow State,move,Stěhovat -apps/frappe/frappe/model/document.py +1254,Action Failed,akce se nezdařilo +apps/frappe/frappe/model/document.py +1255,Action Failed,akce se nezdařilo DocType: List Filter,For User,pro Uživatele DocType: View log,View log,Zobrazit protokol apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,Diagram účtů @@ -1063,11 +1098,11 @@ DocType: Address,Assam,Assam apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,V odběru máte ponechány {0} dny apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Odchozí e-mailový účet není správný DocType: Transaction Log,Chaining Hash,Řetězová hadice -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Temperorily Disabled +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Temperorily Disabled apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,Prosím nastavte e-mailovou adresu DocType: System Settings,Date and Number Format,Formát čísel a data -apps/frappe/frappe/model/document.py +1055,one of,jeden z -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,Kontrola jeden okamžik +apps/frappe/frappe/model/document.py +1056,one of,jeden z +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,Kontrola jeden okamžik apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Zobrazit štítky DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Pokud je zaškrtnuto políčko Použít oprávnění pro přísné uživatele a uživatelské oprávnění je definováno pro uživatele typu DocType, všechny dokumenty, u nichž je hodnota odkazu prázdné, se tomuto uživateli nezobrazí" DocType: Address,Billing,Fakturace @@ -1078,7 +1113,7 @@ DocType: User,Middle Name (Optional),Druhé jméno (volitelné) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,Není povoleno apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,Následující pole mají chybějící hodnoty: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,První transakce -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,Nemáte dostatečná oprávnění k dokončení akce +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,Nemáte dostatečná oprávnění k dokončení akce apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Žádné výsledky DocType: System Settings,Security,Bezpečnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Plánované poslat na {0} příjemci @@ -1099,6 +1134,7 @@ DocType: Kanban Board Column,lightblue,světle modrá apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Stejné pole je zadáno vícekrát apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasný apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Denní události by měly skončit ve stejný den. +DocType: Prepared Report,Filter Values,Hodnoty filtru DocType: Communication,User Tags,Uživatelské štítky DocType: Data Migration Run,Fail,Selhat DocType: Workflow State,download-alt,download-alt @@ -1106,13 +1142,13 @@ DocType: Data Migration Run,Pull Failed,Tažení se nezdařilo DocType: Communication,Feedback Request,Zpětná vazba Poptávka apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,Import dat z souborů CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Následující pole chybí: -apps/frappe/frappe/www/login.html +28,Sign in,Přihlásit +apps/frappe/frappe/www/login.html +29,Sign in,Přihlásit apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},Zrušení {0} DocType: Web Page,Main Section,Hlavní sekce DocType: Page,Icon,ikona -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","Tip: Do hesla vložte symboly, čísla a velká písmena" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","Tip: Do hesla vložte symboly, čísla a velká písmena" DocType: DocField,Allow in Quick Entry,Povolit v Rychlém zadání -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/rrrr apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,Test GSuite skriptu DocType: System Settings,Backups,zálohy @@ -1129,23 +1165,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,Neplatná a DocType: Footer Item,Target,Cíl DocType: System Settings,Number of Backups,Počet záloh DocType: Website Settings,Copyright,Copyright -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Jít +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,Jít DocType: OAuth Authorization Code,Invalid,Neplatný DocType: ToDo,Due Date,Datum splatnosti apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,Čtvrt dne DocType: Website Settings,Hide Footer Signup,Skrýt zápatí Registrovat -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,zrušen tento dokument +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,zrušen tento dokument apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Zapíše soubor Pythonu ve stejném adresáři kde je toto uloženo a vrátí sloupec a výsledek. +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,Přidat do tabulky DocType: DocType,Sort Field,Pole řadit dle DocType: Razorpay Settings,Razorpay Settings,Nastavení Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,Upravit filtr -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nemůže být povinné +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,Upravit filtr +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nemůže být povinné apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Přidej víc DocType: System Settings,Session Expiry Mobile,Session Zánik Mobile apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,Nesprávný uživatel nebo heslo apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,Výsledky hledání pro apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,Zadejte adresu URL přístupového tokenu -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,Zvolte pro stažení: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,Zvolte pro stažení: DocType: Notification,Slack,Uvolněte DocType: Custom DocPerm,If user is the owner,Pokud se uživatel je vlastníkem ,Activity,Činnost @@ -1154,7 +1191,7 @@ DocType: User Permission,Allow,Dovolit apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,Pojďme se zabránilo opakovanému slova a znaky DocType: Communication,Delayed,Zpožděné apps/frappe/frappe/config/setup.py +140,List of backups available for download,Seznam záloh k dispozici ke stažení -apps/frappe/frappe/www/login.html +71,Sign up,Přihlásit se +apps/frappe/frappe/www/login.html +72,Sign up,Přihlásit se apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,Řádek {0}: Povolení zakázat povinné pro standardní pole DocType: Test Runner,Output,Výstup DocType: Notification,Set Property After Alert,Nastavit vlastnost po upozornění @@ -1165,7 +1202,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,Typ souboru DocType: Workflow State,leaf,list DocType: Portal Menu Item,Portal Menu Item,Portál Položka -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,Zrušte nastavení uživatele DocType: Contact Us Settings,Email ID,Email Id DocType: Activity Log,Keep track of all update feeds,Sledujte všechny kanály s aktualizací DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Seznam zdrojů, které Klient App bude mít přístup k poté, co ho uživatel dovolí.
například projekt" @@ -1175,7 +1211,7 @@ DocType: Error Snapshot,Timestamp,Časové razítko DocType: Patch Log,Patch Log,Záznam o o záplatách (patch) DocType: Data Migration Mapping,Local Primary Key,Místní primární klíč apps/frappe/frappe/utils/bot.py +164,Hello {0},"Dobrý den, {0}" -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},Vítejte v {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},Vítejte v {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Přidat apps/frappe/frappe/www/me.html +40,Profile,Profil DocType: Communication,Sent or Received,Odesláno či přijato @@ -1199,7 +1235,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,Nastavení pro DocType: Workflow State,minus-sign,znaménko mínus apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,Nenalezeno -apps/frappe/frappe/www/printview.py +200,No {0} permission,Bez oprávnění: {0} +apps/frappe/frappe/www/printview.py +199,No {0} permission,Bez oprávnění: {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,Export vlastní oprávnění DocType: Data Export,Fields Multicheck,Pole Multilack DocType: Activity Log,Login,Přihlášení @@ -1207,7 +1243,7 @@ DocType: Web Form,Payments,Platby apps/frappe/frappe/www/qrcode.html +9,Hi {0},Ahoj {0} DocType: System Settings,Enable Scheduled Jobs,Zapnout plánované operace (cron) apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,Poznámky: -apps/frappe/frappe/www/message.html +65,Status: {0},Status: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},Status: {0} DocType: DocShare,Document Name,Název dokumentu apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Označit jako spam DocType: ToDo,Medium,Střední @@ -1225,7 +1261,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},Název {0} nem apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Od data apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Povedlo se apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},Zpětná vazba Žádost o {0} je poslán do {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,Relace vypršela +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,Relace vypršela DocType: Kanban Board Column,Kanban Board Column,Sloupec Kanban Board apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,Rovné řady kláves jsou snadno uhodnout DocType: Communication,Phone No.,Telefonní číslo @@ -1248,17 +1284,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},Ignorovat: {0} až {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,Log chyb automatických událostí (plánovač). -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),Není validní CSV soubor (hodnoty oddělené čárkami) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),Není validní CSV soubor (hodnoty oddělené čárkami) DocType: Address,Postal,Poštovní DocType: Email Account,Default Incoming,Výchozí Příchozí DocType: Workflow State,repeat,opakovat DocType: Website Settings,Banner,Banner 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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Nápověda k vyhledávání -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,"Registrovaný uživatel, ale tělesně postižené" +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,"Registrovaný uživatel, ale tělesně postižené" DocType: DocType,Hide Copy,Skrýt kopii apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,Odebrat všechny role -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} musí být jedinečný +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} musí být jedinečný apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,Řádek apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","CC, BCC & Email Template" DocType: Data Migration Mapping Detail,Local Fieldname,Místní název pole @@ -1266,7 +1302,7 @@ DocType: User Permission,Linked Doctypes,Linked Doctypes DocType: DocType,Track Changes,Sledování změn DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,Offline -DocType: Razorpay Settings,API Key,klíč API +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 +82,Edit Title,Edit Title apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,instalovat aplikace @@ -1274,6 +1310,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Dokumenty s vámi a vámi. DocType: User,Email Signature,Zápatí v emailu (podpis) DocType: Website Settings,Google Analytics ID,Google analytics ID +DocType: Web Form,"For help see Client Script API and Examples","Nápovědu naleznete v rozhraní Client Script API a příklady" DocType: Website Theme,Link to your Bootstrap theme,Odkaz na motiv Bootstrapu DocType: Custom DocPerm,Delete,Smazat apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},Nový: {0} @@ -1283,10 +1320,10 @@ DocType: Print Settings,PDF Page Size,Velikost stránky PDF DocType: Data Import,Attach file for Import,Připojte soubor pro import DocType: Communication,Recipient Unsubscribed,Příjemce Odhlášen DocType: Feedback Request,Is Sent,Je poslán -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,O aplikaci +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,O aplikaci apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.","Pro aktualizaci, můžete aktualizovat pouze vybrané sloupce." DocType: Chat Token,Country,Země -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,Adresy +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,Adresy DocType: Communication,Shared,Společná apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,Přiložit tisku dokumentu DocType: Bulk Update,Field,Pole @@ -1297,12 +1334,12 @@ DocType: Chat Message,URLs,URL adresy DocType: Data Migration Run,Total Pages,Celkové stránky DocType: DocField,Attach Image,Připojit obrázek DocType: Workflow State,list-alt,list-alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,Heslo aktualizováno +apps/frappe/frappe/www/update-password.html +79,Password Updated,Heslo aktualizováno apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,Kroky k ověření přihlašovacích údajů apps/frappe/frappe/utils/password.py +50,Password not found,Heslo nebyl nalezen DocType: Data Migration Mapping,Page Length,Délka stránky DocType: Email Queue,Expose Recipients,vystavit příjemci -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,Připojit k je povinné pro příchozí e-maily +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,Připojit k je povinné pro příchozí e-maily DocType: Contact,Salutation,Oslovení DocType: Communication,Rejected,Zamítnuto apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,Odstranit označení @@ -1313,14 +1350,14 @@ DocType: User,Set New Password,Nastavit nové heslo apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},Název pole {0} se vyskytuje vícekrát na řádcích {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} z {1} až {2} v řadě # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},Název pole {0} se vyskytuje vícekrát na řádcích {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{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 +32,Seems token you are using is invalid!,"Zdá se, že token, který používáte, je neplatný!" DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Počet sloupců pro pole v mřížce (Celkový počet sloupců v mřížce by měla být menší než 11) 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 +75,Have an account? Login,Mít účet? Přihlásit se +apps/frappe/frappe/www/login.html +76,Have an account? Login,Mít účet? Přihlásit se apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown Print Format: {0} DocType: Workflow State,arrow-down,šipka-dolů apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} @@ -1332,30 +1369,30 @@ DocType: Help Article,Likes,Záliby DocType: Website Settings,Top Bar,Horní panel DocType: GSuite Settings,Script Code,Kód skriptu apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,Vytvořit e-mail uživatele -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,Žádné povolené oprávnění +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,Žádné povolené oprávnění apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} nebyl nalezen DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,Před nahráním prosím uložení dokumentu. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,Zadejte heslo +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,Zadejte heslo DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Social Login Key,Social Login Provider,Poskytovatel sociálního přihlášení apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Přidat další komentář -apps/frappe/frappe/core/doctype/data_import/importer.py +81,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. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,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. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,editovat DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,Odhlášen z Zpravodaje -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,Složit musí přijít před konec oddílu +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,Složit musí přijít před konec oddílu apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Ve vývoji apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,Přejděte na dokument apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,Poslední změna od apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,Přizpůsobení Reset DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,Stát GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0}: Nelze nastavit Zrušit bez Odeslání +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0}: Nelze nastavit Zrušit bez Odeslání DocType: Website Theme,Theme,Téma DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Přesměrování URI Bound auth zákoníku DocType: DocType,Is Submittable,Je Odeslatelné -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,Nové zmínky +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,Nové zmínky apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Hodnota pro zaškrtávací pole může být 0 nebo 1 apps/frappe/frappe/model/document.py +733,Could not find {0},Nemohu najít: {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,Označení sloupce: @@ -1375,7 +1412,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,Skupina DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Zvolte cíl (target) = ""_blank"" pro otevření na nové stránce." apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,Velikost databáze: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,Smazat na trvalo: {0}? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,Smazat na trvalo: {0}? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,Stejný soubor již byl k záznamu přiložen apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} není platný stav pracovního postupu. Aktualizujte pracovní postup a zkuste to znovu. DocType: Workflow State,wrench,wrench @@ -1389,27 +1426,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Přidat komentář DocType: DocField,Mandatory,Povinné apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul pro export -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0}: Nejsou nastavena základní práva +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0}: Nejsou nastavena základní práva apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,Váš odběr vyprší {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},Download link pro zálohování bude zasláno na e-mailovou adresu: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Význam pojmů Vložit, Zrušit, Změnit" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Úkoly DocType: Test Runner,Module Path,Modul Cesta DocType: Social Login Key,Identity Details,Podrobnosti o identitě +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),Následně dle (volitelné) DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-report -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Zadal {0}: {1} DocType: DocField,Percent,Procento apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,Provázáno s apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,Upravit nastavení automatických zpráv o e-mailu DocType: Chat Room,Message Count,Počet zpráv DocType: Workflow State,book,kniha +DocType: Communication,Read by Recipient,Přečtěte si příjemce DocType: Website Settings,Landing Page,Landing stránka apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Chyba ve vlastní skript apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,Žádná oprávnění nastavena pro toto kritérium. DocType: Auto Email Report,Auto Email Report,Auto Email Report -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,Smazat komentář? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,Smazat komentář? DocType: Address Template,This format is used if country specific format is not found,"Tento formát se používá, když specifický formát země není nalezen" DocType: System Settings,Allow Login using Mobile Number,Povolit přihlášení pomocí mobilního čísla apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,Nemáte dostatečná oprávnění pro přístup k tomuto prostředku. Obraťte se na správce získat přístup. @@ -1426,7 +1464,7 @@ DocType: Letter Head,Printing,Tisk DocType: Workflow State,thumbs-up,thumbs-up DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Písma -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,přesnost by měla být mezi 1 a 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,přesnost by měla být mezi 1 a 6 apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,a apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},Tento přehled byl generován na {0} @@ -1438,16 +1476,16 @@ DocType: Auto Email Report,Report Filters,zpráva Filtry apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,teď DocType: Workflow State,step-backward,step-backward apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{app_title} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,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/integrations/doctype/dropbox_settings/dropbox_settings.py +248,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 +16,Delete this record to allow sending to this email address,Smazat tento záznam povolit odesílání na tuto e-mailovou adresu apps/frappe/frappe/core/doctype/data_import/exporter.py +67,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/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,Nelze aktualizovat událost -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,platba Complete +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,Nelze aktualizovat událost +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,platba Complete apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,Ověřovací kód byl odeslán na vaši registrovanou e-mailovou adresu. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,Prudký -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtr musí mít 4 hodnoty (doctype, název pole, operátor, hodnota): {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,Prudký +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtr musí mít 4 hodnoty (doctype, název pole, operátor, hodnota): {0}" apps/frappe/frappe/utils/bot.py +89,show,show -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},Neplatné jméno pole {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},Neplatné jméno pole {0} DocType: Address Template,Address Template,Šablona adresy DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapování plánu migrace dat @@ -1457,13 +1495,14 @@ DocType: Workflow State,map-marker,map-marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Vložit případ podpory DocType: Event,Repeat this Event,Opakovat tuto událost DocType: Address,Maintenance User,Údržba uživatele +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,Třídění předvolby apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,"Vyhnout se termíny a roky, které jsou spojeny s vámi." DocType: Custom DocPerm,Amend,Změnit DocType: Data Import,Generated File,Generovaný soubor DocType: Transaction Log,Previous Hash,Předchozí Hash DocType: File,Is Attachments Folder,Je Přílohy Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,Rozšířit vše -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,"Chcete-li zahájit zasílání zpráv, vyberte chat." +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,"Chcete-li zahájit zasílání zpráv, vyberte chat." apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,Nejprve vyberte Typ subjektu apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,Validní přihlašovací id je vyžadováno. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,Vyberte prosím platný CSV soubor s daty @@ -1476,26 +1515,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,Záznam neexistu apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,původní hodnota DocType: Help Category,Help Category,Kategorie nápovědy apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,Uživatel {0} je zakázána -apps/frappe/frappe/www/404.html +20,Page missing or moved,Stránka chybí nebo byla přesunuta +apps/frappe/frappe/www/404.html +21,Page missing or moved,Stránka chybí nebo byla přesunuta DocType: DocType,Route,Trasa apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay nastavení platební brána +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,Nainstalujte přiložené obrázky z dokumentu DocType: Chat Room,Name,Jméno DocType: Contact Us Settings,Skype,Skype apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,Překročili jste maximální prostor {0} pro svůj plán. {1}. DocType: Chat Profile,Notification Tones,Tóny oznámení -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Hledat v dokumentech +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,Hledat v dokumentech DocType: OAuth Authorization Code,Valid,Platný apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,Otevrít odkaz apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,Váš jazyk apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,Přidat řádek DocType: Tag Category,Doctypes,Doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,Dotaz musí být SELECT -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,"Přiložte soubor, který chcete importovat" -DocType: Auto Repeat,Completed,Dokončeno +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,Dotaz musí být SELECT +DocType: Prepared Report,Completed,Dokončeno DocType: File,Is Private,Je Private DocType: Data Export,Select DocType,Zvolte DocType apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,Soubor překročil maximální povolenou velikost v MB: {0} -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,Vytvořeno (kdy) +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,Vytvořeno (kdy) DocType: Workflow State,align-center,zarovnat-střed DocType: Feedback Request,Is Feedback request triggered manually ?,Požadavek Feedback spustit manuálně? DocType: Address,Lakshadweep Islands,Ostrovy Lakshadweep @@ -1503,7 +1542,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Některé dokumenty, například faktura, nemůže být změněna pokud je dokončena. Finální stav pro takové dokumenty se nazývá Vloženo. Můžete omezit, které role mohou vkládat." DocType: Newsletter,Test Email Address,Test E-mailová adresa DocType: ToDo,Sender,Odesilatel -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,Chyba při vyhodnocování oznámení {0}. Opravte prosím šablonu. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,Chyba při vyhodnocování oznámení {0}. Opravte prosím šablonu. DocType: GSuite Settings,Google Apps Script,Skript Google Apps apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Zanechat komentář DocType: Web Page,Description for search engine optimization.,Popis pro optimalizaci pro vyhledávače. @@ -1513,7 +1552,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,Až DocType: System Settings,Allow only one session per user,Umožňují pouze jednu relaci na jednoho uživatele apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Home / Test Folder 1 / Test Folder 3 DocType: Website Settings,<head> HTML,<head> HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,Nová událost: Zvolte nebo táhněte skrz Časová pole. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,Nová událost: Zvolte nebo táhněte skrz Časová pole. DocType: DocField,In Filter,Ve filtru apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Show v oddíle Modul @@ -1525,17 +1564,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",Zobrazit stránku na webu DocType: Note,Seen By Table,Viděný tabulce -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,Vyberte šablonu +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,Vyberte šablonu apps/frappe/frappe/www/third_party_apps.html +47,Logged in,Přihlášen apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,Nesprávné UserId nebo heslo apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,Prozkoumat apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Výchozí Odeslání a Inbox DocType: System Settings,OTP App,OTP App +DocType: Dropbox Settings,Send Email for Successful Backup,Odeslat e-mail pro úspěšné zálohování apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID dokument DocType: Print Settings,Letter,Dopis -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,Pole Obraz musí být typu Připojit obrázek +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,Pole Obraz musí být typu Připojit obrázek DocType: DocField,Columns,sloupce -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,Sdílena s uživatelem {0} s přístupem ke čtení +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,Sdílena s uživatelem {0} s přístupem ke čtení DocType: Async Task,Succeeded,Uspěl apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},Povinné pole vyžadována pro {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,Obnovit oprávnění pro: {0}? @@ -1553,14 +1593,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,zarovnat-vlevo DocType: User,Defaults,Výchozí DocType: Feedback Request,Feedback Submitted,Zpětná vazba Vložené -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,Sloučit s existujícím +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,Sloučit s existujícím DocType: User,Birth Date,Datum narození DocType: Dynamic Link,Link Title,Název odkazu DocType: Workflow State,fast-backward,fast-backward DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,Pátek -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,Úpravy v plném stránku +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,Úpravy v plném stránku DocType: Report,Add Total Row,Přidat řádek celkem apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,"Zkontrolujte prosím svou zaregistrovanou e-mailovou adresu, kde naleznete pokyny, jak postupovat. Toto okno zavřete, protože se k němu budete muset vrátit." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,"Například, pokud zrušíte a pozměnit INV004 se stane nový dokument INV004-1. To vám pomůže udržet přehled o každé změny." @@ -1582,11 +1622,10 @@ DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent","1 Měna = [?] Zlomek například pro 1 USD = 100 Cent" DocType: Data Import,Partially Successful,Částečně úspěšný -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Příliš mnoho uživatelů přihlásilo v poslední době, takže registrace je zakázána. Zkuste to prosím znovu za hodinu" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Příliš mnoho uživatelů přihlásilo v poslední době, takže registrace je zakázána. Zkuste to prosím znovu za hodinu" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,Přidat nové pravidlo oprávnění apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Můžete použít zástupný znak % DocType: Chat Message Attachment,Chat Message Attachment,Příloha k chatu -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Prosím nastavte výchozí emailový účet z Nastavení> Email> E-mailový účet apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Pouze rozšíření obrazu (GIF, JPG, JPEG, TIFF, PNG, .svg) povolena" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,Database Engine @@ -1607,7 +1646,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,Dceřiný DocType: System Settings,In Hours,V hodinách apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,šířka Letterhead -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,Neplatný odchozí Mail Server nebo Port +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,Neplatný odchozí Mail Server nebo Port DocType: Custom DocPerm,Write,Zapsat apps/frappe/frappe/core/doctype/report/report.py +37,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 +13,Updating,Aktualizace @@ -1616,28 +1655,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i 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 +13,Import Email From,Importovat e-maily z apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,Pozvat jako Uživatel -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,Je vyžadována adresa domova +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,Je vyžadována adresa domova DocType: Data Migration Run,Started,Začal +DocType: Data Migration Run,End Time,End Time apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,Vyberte přílohy apps/frappe/frappe/model/naming.py +113, for {0},pro {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,Došlo k chybám. Ohlaste to. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,Došlo k chybám. Ohlaste to. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,Nemáte povoleno tisknout tento dokument apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},Aktuálně aktualizuje {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,Prosím nastavit filtry hodnotu v Report Filtr tabulce. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,Nahrávám Report +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,Prosím nastavit filtry hodnotu v Report Filtr tabulce. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,Nahrávám Report apps/frappe/frappe/limits.py +74,Your subscription will expire today.,Vaše předplatné vyprší dnes. DocType: Page,Standard,Standard -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Přiložit Soubor +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,Přiložit Soubor +DocType: Data Migration Plan,Preprocess Method,Metoda Preprocess apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Velikost apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Úkol Dokončen DocType: Desktop Icon,Idx,idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

Nebyly nalezeny žádné výsledky pro '

DocType: Address,Madhya Pradesh,Madhya Pradesh DocType: Deleted Document,New Name,Nové jméno DocType: System Settings,Is First Startup,Je první spuštění DocType: Communication,Email Status,Email Status apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,Prosím uložte dokument před odebráním přiřazení apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,Vložit Nad -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,Komentář může upravovat pouze majitel +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,Komentář může upravovat pouze majitel DocType: Data Import,Do not send Emails,Neposílejte e-maily apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,Běžná jména a příjmení jsou snadno uhodnout. DocType: Auto Repeat,Draft,Návrh @@ -1649,14 +1691,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,Zrušit DocType: Contact,Replied,Odpovězeno DocType: Newsletter,Test,Test DocType: Custom Field,Default Value,Výchozí hodnota -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,Ověřit +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,Ověřit DocType: Workflow Document State,Update Field,Aktualizovat pole DocType: Chat Profile,Enable Chat,Povolit chat DocType: LDAP Settings,Base Distinguished Name (DN),Základna Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,Opustit tuto konverzaci -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0} DocType: Customize Form,"Must be of type ""Attach Image""",Musí být typu "Připojit Image" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,Odznačit vše +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,Odznačit vše apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},Nemůžete odstavení "pouze pro čtení" pro pole {0} DocType: Auto Email Report,Zero means send records updated at anytime,Zero znamená zasílání záznamů kdykoli aktualizované apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,Kompletní nastavení @@ -1672,7 +1714,7 @@ DocType: Social Login Key,Google,Google DocType: Email Domain,Example Email Address,Příklad E-mailová adresa apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Most Použité apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,Odhlásit z newsletteru -apps/frappe/frappe/www/login.html +83,Forgot Password,Zapomenuté heslo +apps/frappe/frappe/www/login.html +84,Forgot Password,Zapomenuté heslo DocType: Dropbox Settings,Backup Frequency,zálohování frekvence DocType: Workflow State,Inverse,Invertovat DocType: DocField,User permissions should not apply for this Link,Uživatelská oprávnění by neměla být aplikována na tento odkaz @@ -1689,6 +1731,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Seznam tém apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,úspěšně aktualizován DocType: Activity Log,Logout,Odhlásit se apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,"Oprávnění na vyšších úrovních jsou oprávnění Field úrovně. Všechna pole jsou Úroveň oprávnění nastavit proti nim a pravidla určená na to oprávnění se vztahují na pole. To je užitečné v případě, že chcete skrýt nebo ujistil pole jen pro čtení pro určité role." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Nastavení> Upravit formulář DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Zadejte statické parametry url zde (Např odesílatel = ERPNext, username = ERPNext, password. = 1234 atd.)," apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Pakliže tyto instrukce nebyly nápomocné, prosím přidejte Vaše doporučení na GitHub Issues." DocType: Workflow State,bookmark,záložka @@ -1700,12 +1743,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,"Ap apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} již existuje. Vyberte jiné jméno apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,Podmínky zpětné vazby neodpovídají DocType: S3 Backup Settings,None,Žádný -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,Časová osa pole musí být platný fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,Časová osa pole musí být platný fieldname DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,Řádek č.{0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,Řádek č.{0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,Nové heslo zasláno emailem -apps/frappe/frappe/auth.py +272,Login not allowed at this time,Přihlášení není povoleno v tuto dobu +apps/frappe/frappe/auth.py +286,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: Email Account,Email Sync Option,E-mail Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,Řádek č @@ -1721,12 +1764,12 @@ DocType: Address,Fax,Fax apps/frappe/frappe/config/setup.py +263,Custom Tags,Vlastní Tagy DocType: Communication,Submitted,Vloženo DocType: System Settings,Email Footer Address,E-mailová adresa zápatí -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,Tabulka aktualizováno +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,Tabulka aktualizováno DocType: Activity Log,Timeline DocType,Časová osa DocType DocType: DocField,Text,Text apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Výchozí Odeslání DocType: Workflow State,volume-off,volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},Líbilo se {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},Líbilo se {0} DocType: Footer Item,Footer Item,zápatí Item ,Download Backups,Ke stažení Zálohy apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Home / Test Folder 1 @@ -1734,7 +1777,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me,P DocType: DocField,Dynamic Link,Dynamický odkaz apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,To Date apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Show se nepodařilo pracovních míst -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,Podrobnosti +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,Podrobnosti DocType: Property Setter,DocType or Field,DocType nebo pole DocType: Communication,Soft-Bounced,Soft-Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Je-li tato možnost povolena, mohou se všichni uživatelé přihlásit z libovolné IP adresy pomocí nástroje Two Factor Auth. To lze nastavit pouze pro konkrétní uživatele v Uživatelské stránce" @@ -1745,7 +1788,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,E-mail byl přesunut do koše DocType: Report,Report Builder,Konfigurátor Reportu DocType: Async Task,Task Name,Jméno Task -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","Vaše relace vypršela, znovu se přihlaste a pokračujte." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","Vaše relace vypršela, znovu se přihlaste a pokračujte." DocType: Communication,Workflow,Toky (workflow) DocType: Website Settings,Welcome Message,Uvítací zpráva DocType: Webhook,Webhook Headers,Záhlaví Webhook @@ -1762,10 +1805,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,Tisk dokumentů DocType: Contact Us Settings,Forward To Email Address,Přeposlat na emailovou adresu apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Zobrazit všechny údaje -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,Titulek musí být validní název pole +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,Titulek musí být validní název pole apps/frappe/frappe/config/core.py +7,Documents,Dokumenty DocType: Social Login Key,Custom Base URL,Adresa URL vlastní databáze DocType: Email Flag Queue,Is Completed,je dokončeno +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,Získejte pole apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} se o vás zmínil v komentáři apps/frappe/frappe/www/me.html +22,Edit Profile,Editovat profil DocType: Kanban Board Column,Archived,Archivovaných @@ -1775,17 +1819,18 @@ myfield 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/form/controls/date.js +49,Today,Dnes +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,Dnes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"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: Error Log,Log of Scheduler Errors,Log chyb plánovače. DocType: User,Bio,Biografie DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Odeslání +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,"Rodič je název dokumentu, ke kterému budou data přidána." apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,Show likes DocType: DocType,UPPER CASE,VELKÁ PÍSMENA apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,Vlastní HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,Zadejte název složky -apps/frappe/frappe/auth.py +228,Unknown User,Neznámý uživatel +apps/frappe/frappe/auth.py +233,Unknown User,Neznámý uživatel apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,Vyberte roli DocType: Communication,Deleted,Vypouští se DocType: Workflow State,adjust,adjust @@ -1807,21 +1852,21 @@ DocType: Data Migration Connector,Database Name,Název databáze apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Obnovit formulář DocType: DocField,Select,Vybrat apps/frappe/frappe/utils/csvutils.py +29,File not attached,Soubor není příložen -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,Spojení ztraceno. Některé funkce nemusí fungovat. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,Spojení ztraceno. Některé funkce nemusí fungovat. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess","Opakuje typu "AAA", lze snadno uhodnout" -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,Nový rozhovor +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,Nový rozhovor DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Pokud je toto nastaveno, tato položka bude v rozevíracím seznamu (drop-down) pod zvoleným nadřazeným uzlem." DocType: Print Format,Show Section Headings,Ukázat § Nadpisy DocType: Bulk Update,Limit,Omezit -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},Žádná šablona nenalezena na cestě: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,Odhlášení ze všech relací +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,Přidejte novou sekci +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},Žádná šablona nenalezena na cestě: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,Žádné e-mailový účet DocType: Communication,Cancelled,Zrušeno DocType: Chat Room,Avatar,Avatar DocType: Blogger,Posts,Příspěvky DocType: Social Login Key,Salesforce,Salesforce DocType: DocType,Has Web View,Má zobrazování z Webu -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Název DOCTYPE by měla začínat písmenem a může sestávat pouze z písmen, číslic, mezer a podtržítek" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Název DOCTYPE by měla začínat písmenem a může sestávat pouze z písmen, číslic, mezer a podtržítek" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Žádost o integraci apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,Vážený (á) @@ -1837,16 +1882,18 @@ DocType: Communication,Assigned,přidělen DocType: Print Format,Js,Js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,Vybrat formát tisku apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,Krátké vzory klávesnice lze snadno uhodnout +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,Generovat novou zprávu DocType: Portal Settings,Portal Menu,portál Menu apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,Délka {0} by měla být mezi 1 a 1000 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Vyhledávání na cokoliv +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,Vyhledávání na cokoliv DocType: Data Migration Connector,Hostname,Jméno hostitele DocType: Data Migration Mapping,Condition Detail,Podrobnosti o stavu apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}",Pro měnu {0} by minimální částka transakce měla být {1} DocType: DocField,Print Hide,Skrýt tisk -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Zadejte hodnotu +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,Zadejte hodnotu DocType: Workflow State,tint,tint DocType: Web Page,Style,Styl +DocType: Prepared Report,Report End Time,Čas ukončení sestavy apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,například: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} komentáře apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,Aktualizovaná verze @@ -1859,10 +1906,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,Přepínání grafů DocType: Website Settings,Sub-domain provided by erpnext.com,Sub doména poskytnutá (kým) erpnext.com apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,Nastavení systému +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,Potomci z DocType: System Settings,dd-mm-yyyy,dd-mm-rrrr -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,Potřebujete práva pro přístup k tomuto Reportu. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,Potřebujete práva pro přístup k tomuto Reportu. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,Zvolte Minimální skóre hesla -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,Přidáno +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,Přidáno apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,Přihlásili jste se k jednomu bezplatnému plánu pro uživatele DocType: Auto Repeat,Half-yearly,Pololetní apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,Denní přehled událostí je zasílán pro kalendářní události kde je nastaveno připomínání. @@ -1873,7 +1921,7 @@ DocType: Workflow State,remove,Odstranit DocType: Email Domain,If non standard port (e.g. 587),Není-li na standardním portu (např.: 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,Znovu načíst apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,Přidat své vlastní kategorie Tag -apps/frappe/frappe/desk/query_report.py +227,Total,Celkem +apps/frappe/frappe/desk/query_report.py +312,Total,Celkem DocType: Event,Participants,Účastníci DocType: Integration Request,Reference DocName,Reference DocName DocType: Web Form,Success Message,Zpráva o úspěchu @@ -1887,7 +1935,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,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/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge","{0} {1} neexistuje, zvolte nový cíl pro sloučení" -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",Výsledky hledání pro „{0}“ DocType: Data Migration Connector,Python Module,Python modul DocType: GSuite Settings,Google Credentials,Pověření Google apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,QR kód pro ověření přihlášení @@ -1896,8 +1943,8 @@ DocType: Footer Item,Company,Společnost apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Přiřazeno mně apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Šablony služby GSuite na integraci s nástroji DocTypes DocType: User,Logout from all devices while changing Password,Odhlášení ze všech zařízení při změně hesla -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,Potvrďte Heslo -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Vyskytly se chyby +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,Potvrďte Heslo +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,Vyskytly se chyby apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Zavřít apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,Nelze změnit docstatus z 0 na 2 DocType: File,Attached To Field,Připojeno k poli @@ -1907,7 +1954,7 @@ DocType: Transaction Log,Transaction Hash,Transakční hash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,Uložte Newsletter před odesláním apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Nakonfigurujte účty pro kalendář v aplikaci Google -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},Možnosti musí být validní DocType pro pole{0} na řádku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},Možnosti musí být validní DocType pro pole{0} na řádku {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Upravit vlastnosti DocType: Patch Log,List of patches executed,Seznam provedených záplat apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} se již odhlásil @@ -1926,8 +1973,8 @@ DocType: Data Migration Connector,Authentication Credentials,Autentifikační po DocType: Role,Two Factor Authentication,Autentizace dvou faktorů apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,Zaplatit DocType: SMS Settings,SMS Gateway URL,SMS brána URL -apps/frappe/frappe/model/base_document.py +508,"{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/utils/data.py +638,{0} or {1},{0} nebo {1} +apps/frappe/frappe/model/base_document.py +517,"{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/utils/data.py +640,{0} or {1},{0} nebo {1} apps/frappe/frappe/core/doctype/user/user.py +250,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 @@ -1943,16 +1990,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,Relabující apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Položka nemůže být přidána jako svůj vlastní podřízený potomek DocType: System Settings,Expiry time of QR Code Image Page,Doba vypršení platnosti stránky QR Code Image -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,Zobrazit součty +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,Zobrazit součty DocType: Error Snapshot,Relapses,Relapsy DocType: Address,Preferred Shipping Address,Preferovaná dodací adresa -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,S hlavičkový +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,S hlavičkový apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} vytvořil tento {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 +38,Document is only editable by users of role,Document je upravovatelný pouze pro uživatele s rolí -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.","Úkol {0}, které jste přiřadili k {1}, bylo uzavřeno {2}." +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.","Úkol {0}, které jste přiřadili k {1}, bylo uzavřeno {2}." DocType: Print Format,Show Line Breaks after Sections,Show konce řádků po oddílech +DocType: Communication,Read by Recipient On,Přečtěte si Příjemce zapnutý DocType: Blogger,Short Name,Zkrácené jméno -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},Stránka {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},Stránka {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},Propojeno s {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1979,20 +2028,20 @@ DocType: Communication,Feedback,Zpětná vazba apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,Otevřete překlad apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,Tento e-mail je automaticky generován DocType: Workflow State,Icon will appear on the button,Ikona se zobrazí na tlačítku -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Socketio není připojen. Nelze nahrát +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Socketio není připojen. Nelze nahrát DocType: Website Settings,Website Settings,Nastavení www stránky apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,Měsíc DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Přidat Reference: {{ reference_doctype }} {{ reference_name }} poslat referenční dokument DocType: DocField,Fetch From,Načíst od apps/frappe/frappe/modules/utils.py +205,App not found,Aplikace nenalezena -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Nelze vytvořit {0} proti dětské dokumentu: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},Nelze vytvořit {0} proti dětské dokumentu: {1} DocType: Social Login Key,Social Login Key,Klíč pro sociální přihlášení DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,tužka apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat zprávy a další oznámení. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},"Vložit Poté, co nelze nastavit jako {0}" apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Podíl {0} s -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,"Nastavení e-mailový účet, zadejte své heslo pro:" +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,"Nastavení e-mailový účet, zadejte své heslo pro:" DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,Představení přispěvovatelů DocType: Address,Phone,Telefon @@ -2000,18 +2049,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,Pasivní DocType: Contact,Accounts Manager,Accounts Manager apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Platba je zrušena. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,Vyberte typ souboru +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,Vyberte typ souboru apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,Zobrazit vše DocType: Help Article,Knowledge Base Editor,Editor Znalostní Báze apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stránka nenalezena DocType: DocField,Precision,přesnost DocType: Website Slideshow,Slideshow Items,Položky promítání obrázků apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,Snažte se vyhnout opakovaným slova a znaky -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,Došlo k neúspěšným běhům se stejným plánem migrace dat DocType: Event,Groups,Skupiny DocType: Workflow Action,Workflow State,Stav toků apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,řádky přidáno -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,Úspěch! Jste dobré jít 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,Úspěch! Jste dobré jít 👍 apps/frappe/frappe/www/me.html +3,My Account,Můj Účet DocType: ToDo,Allocated To,Přidělené na apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,"Prosím klikněte na následující odkaz, pro nastavení nového hesla" @@ -2019,36 +2067,39 @@ DocType: Notification,Days After,Dní po DocType: Newsletter,Receipient,Receipient DocType: Contact Us Settings,Settings for Contact Us Page,Nastavení pro stránku Kontaktujte nás DocType: Custom Script,Script Type,Typ skriptu +DocType: Print Settings,Enable Print Server,Povolit tiskový server apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,Před {0} týdny DocType: Auto Repeat,Auto Repeat Schedule,Plán automatického opakování DocType: Email Account,Footer,Zápatí apps/frappe/frappe/config/integrations.py +48,Authentication,ověření pravosti apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,Neplatný Link +DocType: Web Form,Client Script,Klientský skript DocType: Web Page,Show Title,Show Název DocType: Chat Message,Direct,Přímo DocType: Property Setter,Property Type,Typ vlastnosti DocType: Workflow State,screenshot,snímek obrazovky apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Pouze administrátor může uložit standardní výpis. Prosím přejmenujte a uložte. DocType: System Settings,Background Workers,Pracovníci pozadí -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,"Název pole {0}, který je v konfliktu s objektem meta" +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,"Název pole {0}, který je v konfliktu s objektem meta" DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Stav dokumentu apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Provedli jste {0} z {1} DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Autorizační kód -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,Není povoleno importovat +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,Není povoleno importovat DocType: Deleted Document,Deleted DocType,vypouští DocType apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Úrovně oprávnění DocType: Workflow State,Warning,Upozornění DocType: Data Migration Run,Percent Complete,Procento dokončeno DocType: Tag Category,Tag Category,tag Kategorie -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","Položka {0} je ignorována, jelikož existuje skupina se stejným názvem!" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,Nápověda +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","Položka {0} je ignorována, jelikož existuje skupina se stejným názvem!" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,Nápověda DocType: User,Login Before,Přihlášení před DocType: Web Page,Insert Style,Vložit styl apps/frappe/frappe/config/setup.py +276,Application Installer,Instalátor aplikací -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,Nový název Zpráva +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,Nový název Zpráva +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,Skrýt víkendy DocType: Workflow State,info-sign,info-sign -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Poměr {0} nemůže být seznam +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,Poměr {0} nemůže být seznam DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jak se má zápis této měny formátovat? Pokud formátování není nastaveno, použije se výchozí systémové nastavení." apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,Odeslat {0} dokumenty? apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,"Musíte být přihlášen a mít roli systémového správce, pro přístup k zálohám." @@ -2059,6 +2110,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,Oprávnění rolí DocType: Help Article,Intermediate,přechodný apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Zrušený dokument byl obnoven jako návrh +DocType: Data Migration Run,Start Time,Start Time apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Nelze odstranit nebo zrušit, protože {0} {1} je propojen s {2} {3} {4}" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Může číst apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} Graf @@ -2069,6 +2121,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Může sdílet apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Neplatná adresa příjemce DocType: Workflow State,step-forward,step-forward +DocType: System Settings,Allow Login After Fail,Povolit přihlášení po selhání apps/frappe/frappe/limits.py +69,Your subscription has expired.,Vaše předplatné vypršelo. DocType: Role Permission for Page and Report,Set Role For,Nastavit role DocType: GCalendar Account,The name that will appear in Google Calendar,"Jméno, které se zobrazí v Kalendáři Google" @@ -2077,7 +2130,7 @@ DocType: Event,Starts on,Začíná 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 +36,Session Start Failed,Zastavení relace se nezdařilo -apps/frappe/frappe/email/queue.py +499,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/email/queue.py +511,This email was sent to {0} and copied to {1},Tento e-mail byl odeslán na adresu {0} a zkopírovat do {1} DocType: Workflow State,th,th DocType: Social Login Key,Provider Name,Jméno poskytovatele apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},Nově Vytvořit: {0} @@ -2091,35 +2144,38 @@ DocType: System Settings,Choose authentication method to be used by all users,"V apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Doctype je zapotřebí DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/setup.py +146,Deleted Documents,Odstraněné dokumenty -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,Ve formátu CSV se rozlišují velká a malá písmena +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,Ve formátu CSV se rozlišují velká a malá písmena apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,Ikona plochy už existuje apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,Duplikát DocType: Newsletter,Create and Send Newsletters,Vytvoření a odeslání Zpravodaje -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,Datum od musí být dříve než datum do +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,Datum od musí být dříve než datum do DocType: Address,Andaman and Nicobar Islands,Andamanské a Nicobarské ostrovy -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,Dokument GSuite -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,Prosím specifikujte která hodnota musí být prověřena +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,Dokument GSuite +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,Prosím specifikujte která hodnota musí být prověřena apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Nadřazená"" značí nadřazenou tabulku, do které musí být tento řádek přidán" apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Tento e-mail nelze odeslat. V tomto dni jste překročili limit pro odesílání {0} e-mailů. DocType: Website Theme,Apply Style,Aplikovat styl DocType: Feedback Request,Feedback Rating,Feedback Rating apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Sdílené s +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,Připojte soubory / adresy URL a přidejte je do tabulky. DocType: Help Category,Help Articles,Články nápovědy apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Typu: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Platba se nezdařila. DocType: Communication,Unshared,nerozdělený DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nenalezen -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} je nastaveno na stav {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} je nastaveno na stav {2} DocType: User,Location,Místo ,Permitted Documents For User,Povolené dokumenty uživatele apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Musíte mít ""Sdílet"" oprávnění" DocType: Communication,Assignment Completed,přiřazení Dokončeno -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},Hromadná Upravit {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},Hromadná Upravit {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,Stáhnout zprávu apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Neaktivní DocType: About Us Settings,Settings for the About Us Page,Nastavení pro stránku O nás apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,Nastavení proměnné brány plateb DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,např pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,Generovat klíče apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Použijte pole pro filtrování záznamů DocType: DocType,View Settings,Nastavení zobrazení DocType: Email Account,Outlook.com,Outlook.com @@ -2129,12 +2185,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,Pošlete mi kopii odchozích e-mailů DocType: System Settings,Scheduler Last Event,Scheduler Poslední závod DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Přidat Google Analytics ID: např.: UA-89XXX57-1. Pro více informací prosím vyhledejte nápovědu na stránkách Google Analytics. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,Heslo nemůže být více než 100 znaků dlouhé +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,Heslo nemůže být více než 100 znaků dlouhé DocType: OAuth Client,App Client ID,ID aplikace klienta DocType: Kanban Board,Kanban Board Name,Jméno Kanban Board DocType: Notification Recipient,"Expression, Optional","Výraz, Volitelné" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Tento kód zkopírujte a vložte do příkazu Code.gs ve svém projektu na skriptu script.google.com -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},Tento e-mail byl odeslán na {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},Tento e-mail byl odeslán na {0} DocType: System Settings,Hide footer in auto email reports,Skrýt zápatí v automatických e-mailových zprávách DocType: DocField,Remember Last Selected Value,"Nezapomeňte, poslední vybraná hodnota" DocType: Email Account,Check this to pull emails from your mailbox,"Podívejte se na to, aby vytáhnout e-maily z poštovní schránky" @@ -2150,15 +2206,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",Výsledky dokumentace pro "{0}" DocType: Workflow State,envelope,obálka apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Možnost 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,Tisk selhal DocType: Feedback Trigger,Email Field,Email Field -apps/frappe/frappe/www/update-password.html +68,New Password Required.,Vyžadováno nové heslo. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,Vyžadováno nové heslo. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} sdílí tento dokument s {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,Přidejte svůj názor +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,Přidejte svůj názor DocType: Website Settings,Brand Image,Značka Obrázek DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Nastavení horního navigačního panelu, zápatí a loga." DocType: Web Form Field,Max Value,Max Hodnota -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},Pro {0} na úrovni {1} v {2} na řádku {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},Pro {0} na úrovni {1} v {2} na řádku {3} DocType: User Social Login,User Social Login,Uživatelské sociální přihlášení DocType: Contact,All,Vše DocType: Email Queue,Recipient,Příjemce @@ -2167,27 +2224,27 @@ DocType: Address,Sales User,Uživatel prodeje apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,Drag and Drop nástroj k vytvoření a přizpůsobit tiskové formáty. DocType: Address,Sikkim,Sikkim apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,Nastavit -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,Tento styl dotazu byl přerušen +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,Tento styl dotazu byl přerušen DocType: Notification,Trigger Method,Trigger Metoda -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},Operátor musí být jedním z {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},Operátor musí být jedním z {0} DocType: Dropbox Settings,Dropbox Access Token,Přístupový tok Dropbox DocType: Workflow State,align-right,zarovnat-vpravo DocType: Auto Email Report,Email To,E-mail na apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,Složka {0} není prázdná DocType: Page,Roles,Role -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Chyba: hodnota chybí pro {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,Pole {0} nemůžete zvolit. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},Chyba: hodnota chybí pro {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,Pole {0} nemůžete zvolit. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,Platnost relace DocType: Workflow State,ban-circle,ban-circle apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,Chyba chyby Webhook DocType: Email Flag Queue,Unread,Nepřečtený DocType: Auto Repeat,Desk,Stůl -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),Filtr musí být n-tice nebo seznam (v seznamu) +apps/frappe/frappe/utils/data.py +805,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 +8,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) DocType: Address,Arunachal Pradesh,Arunachal Pradesh -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,Nastavení Auto Email +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Nastavení Auto Email apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + Down DocType: Chat Profile,Message Preview,Náhled zprávy apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,Jedná se o společný heslo top-10. @@ -2210,7 +2267,7 @@ DocType: OAuth Client,Implicit,Implicitní DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Připojit jako komunikace se proti tomuto DOCTYPE (musí mít pole, ""Status"", ""Předmět"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI pro příjem autorizační kód, jakmile uživatel umožňuje přístup, stejně jako odpovědi selhání. Typicky REST koncový bod vystavena Klientem App.
např http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,Není povoleno změnit {0} po vložení +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,Není povoleno změnit {0} po vložení DocType: Data Migration Mapping,Migration ID Field,Pole ID migrace DocType: Communication,Comment Type,Typ komentáře DocType: OAuth Client,OAuth Client,OAuth Client @@ -2222,6 +2279,7 @@ DocType: DocField,Signature,Podpis apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Sdílet s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,Nahrávám apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","Vložte klíče, které umožní přihlásit se přes Facebook, Google, GitHub." +DocType: Data Import,Insert new records,Vložte nové záznamy apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},Nelze číst formát souboru pro {0} DocType: Auto Email Report,Filter Data,Filtrování dat apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Prosím nejdříve přiložte soubor. @@ -2238,7 +2296,7 @@ DocType: DocType,Title Case,Titulek případu DocType: Data Migration Run,Data Migration Run,Spuštění migrace dat DocType: Blog Post,Email Sent,Email odeslán DocType: DocField,Ignore XSS Filter,Ignorovat XSS filtr -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,odstraněno +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,odstraněno apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,Nastavení zálohování Dropbox apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,Odeslat jako email DocType: Website Theme,Link Color,Barva odkazu @@ -2254,22 +2312,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,Nastavení LDAP apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,Název subjektu apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Kterým se mění apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal nastavení platební brána -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) dostane zkrácen, protože max povolené znaky je {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) dostane zkrácen, protože max povolené znaky je {2}" DocType: OAuth Client,Response Type,Typ Response DocType: Contact Us Settings,Send enquiries to this email address,Odeslat dotazy na tuto emailovou adresu DocType: Letter Head,Letter Head Name,Název hlavičkového listu DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Počet sloupců pro pole v zobrazení seznamu nebo mřížce (celkem sloupce by měla být menší než 11) apps/frappe/frappe/config/website.py +18,User editable form on Website.,Uživatelem přizpůsobitelné formuláře na stránkách. DocType: Workflow State,file,soubor -apps/frappe/frappe/www/login.html +90,Back to Login,Zpět na přihlášení +apps/frappe/frappe/www/login.html +91,Back to Login,Zpět na přihlášení DocType: Data Migration Mapping,Local DocType,Místní DocType apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,Potřebujete oprávnění k zápisu pro přejmenování +DocType: Email Account,Use ASCII encoding for password,Použijte kódování ASCII pro heslo DocType: User,Karma,Karma DocType: DocField,Table,Tabulka DocType: File,File Size,Velikost souboru -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Musíte se přihlásit pro odeslání tohoto formuláře +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,Musíte se přihlásit pro odeslání tohoto formuláře DocType: User,Background Image,Obrázek na pozadí -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},Nelze nastavit oznámení na typ dokumentu {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},Nelze nastavit oznámení na typ dokumentu {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","Vyberte svou zemi, časové pásmo a měnu" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,Mezi @@ -2278,7 +2337,7 @@ DocType: Braintree Settings,Use Sandbox,použití Sandbox apps/frappe/frappe/utils/goal.py +101,This month,Tento měsíc apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,New Custom Print Format DocType: Custom DocPerm,Create,Vytvořit -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},Neplatný filtr: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},Neplatný filtr: {0} DocType: Email Account,no failed attempts,no neúspěšných pokusů DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,Access Key App @@ -2287,7 +2346,7 @@ 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/page/usage_info/usage_info.html +66,Backup Size:,Velikost zálohy: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},Auto opakování bylo {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},Auto opakování bylo {0} DocType: Auto Repeat,Next Schedule Date,Další rozvrh datum DocType: Workflow,Workflow Name,Jméno toku DocType: DocShare,Notify by Email,Upozornit emailem @@ -2296,10 +2355,10 @@ DocType: Web Form,Allow Edit,Povolit úpravy apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,Vložit DocType: Webhook,Doc Events,Dokumenty událostí DocType: Auto Email Report,Based on Permissions For User,o oprávnění pro User Based -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},Nelze změnit stav zrušeného dokumentu. řádek transakce: {0} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},Nelze změnit stav zrušeného dokumentu. řádek transakce: {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Pravidla pro přechod stavů, jako následný stav a která role má povoleno změnit stav atd." apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} již existuje -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},Připojit k může být jedním z {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},Připojit k může být jedním z {0} DocType: DocType,Image View,Image View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Vypadá to, že se něco během transakce špatně. Protože jsme nepotvrdily platbu Paypal bude vám automaticky tuto částku. Pokud se tak nestane, zašlete nám e-mail a uveďte ID korelace: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Do hesla vložte symboly, čísla a velká písmena" @@ -2309,7 +2368,6 @@ DocType: List Filter,List Filter,Seznam filtrů DocType: Workflow State,signal,signal apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,Má Přílohy DocType: DocType,Show Print First,Zobrazit nejdříve tisk -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavení> Uživatel apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Nově Vytvořit: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,Nový e-mailový účet apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Dokument obnoven @@ -2335,7 +2393,7 @@ DocType: Web Form,Web Form Fields,Pole webových formulářů DocType: Website Theme,Top Bar Text Color,Top Bar Barva textu DocType: Auto Repeat,Amended From,Platném znění apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},Varování: Nelze najít {0} v tabulce vztahující se k {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,Tento dokument je v současné době zařazen do fronty pro provedení. Prosím zkuste to znovu +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,Tento dokument je v současné době zařazen do fronty pro provedení. Prosím zkuste to znovu apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,Soubor '{0}' nebyl nalezen apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Odstranit oddíl DocType: User,Change Password,Změnit heslo @@ -2345,19 +2403,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,Ahoj! apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,Nastavení platební brány Braintree apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Konec události musí být po začátku události apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Toto se odhlásí {0} ze všech ostatních zařízení -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Nemáte práva přistoupit k výpisu: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},Nemáte práva přistoupit k výpisu: {0} DocType: System Settings,Apply Strict User Permissions,Použijte oprávnění pro přísná uživatele DocType: DocField,Allow Bulk Edit,Povolit hromadné úpravy DocType: Blog Post,Blog Post,Příspěvek blogu -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,Pokročilé vyhledávání +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,Pokročilé vyhledávání apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Nemáte oprávnění pro prohlížení newsletteru. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"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." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,"Formulář nelze uložit, protože probíhá import dat." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,Řadit dle DocType: Workflow,States,Stavy DocType: Notification,Attach Print,Připojit Tisk -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},Navrhovaná Uživatelské jméno: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Navrhovaná Uživatelské jméno: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,Den ,Modules,moduly apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Nastavit ikon na ploše @@ -2367,11 +2426,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,zrušena DocType: Web Page,Sidebar and Comments,Postranní panel a Komentáře apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Pokud změníte dokument po jeho zrušení a uložíte ho, dostane přiřazeno nové číslo. Toto je verze starého čísla." -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Není povoleno připojit dokument {0}, povolte Povolit tisk pro {0} v nastavení tisku" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,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 +68,Start Import,Spusťte import +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,Spusťte import DocType: Workflow State,circle-arrow-left,circle-arrow-left apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,"Redis vyrovnávací server neběží. Prosím, obraťte se na správce / technickou podporu" apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Nově Vytvořit záznam @@ -2379,7 +2438,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,V DocType: Currency,Fraction,Zlomek DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,pro automatické vytváření opakujícího se dokumentu pokračovat. -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,Vyberte ze stávajících příloh +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,Vyberte ze stávajících příloh DocType: Custom Field,Field Description,Popis pole apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,Název není nastaven pomocí prompt 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"".","Zadejte výchozí hodnotová pole (klíče) a hodnoty. Pokud do pole přidáte více hodnot, bude vybrána první hodnota. Tyto výchozí hodnoty se také používají pro nastavení oprávnění pro shodu. Chcete-li zobrazit seznam polí, přejděte na položku Přizpůsobit formulář." @@ -2399,6 +2458,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Získat položky DocType: Contact,Image,Obrázek DocType: Workflow State,remove-sign,remove-sign +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,Nepodařilo se připojit k serveru apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,Neexistují žádná data určená k exportu DocType: Domain Settings,Domains HTML,Domény HTML apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,Sem něco do vyhledávacího pole pro vyhledávání @@ -2426,33 +2486,34 @@ DocType: Address,Address Line 2,Adresní řádek 2 DocType: Address,Reference,reference apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Přiřazeno (komu) DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detail mapování migrace dat -DocType: Email Flag Queue,Action,Akce +DocType: Data Import,Action,Akce DocType: GSuite Settings,Script URL,Adresa URL skriptu -apps/frappe/frappe/www/update-password.html +119,Please enter the password,"Prosím, zadejte heslo" -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,Není dovoleno tisknout zrušené dokumenty +apps/frappe/frappe/www/update-password.html +111,Please enter the password,"Prosím, zadejte heslo" +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Není dovoleno tisknout zrušené dokumenty apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,Není vám dovoleno vytvářet sloupce DocType: Data Import,If you don't want to create any new records while updating the older records.,Pokud při aktualizaci starších záznamů nechcete vytvářet žádné nové záznamy. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Informace: DocType: Custom Field,Permission Level,úroveň oprávnění DocType: User,Send Notifications for Transactions I Follow,Posílat oznámení pro transakce sleduji -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nelze nastavit Odeslat, Zrušit, Změnit bez zapsání" -DocType: Google Maps,Client Key,Klientský klíč -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Jste si jisti, že chcete smazat přílohu?" -apps/frappe/frappe/__init__.py +1097,Thank you,Děkujeme Vám +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nelze nastavit Odeslat, Zrušit, Změnit bez zapsání" +DocType: Google Maps Settings,Client Key,Klientský klíč +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,"Jste si jisti, že chcete smazat přílohu?" +apps/frappe/frappe/__init__.py +1178,Thank you,Děkujeme Vám apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Ukládám DocType: Print Settings,Print Style Preview,Náhled stylu tisku apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,Ikony -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Nejste oprávněn aktualizovat tento webový formulář +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,Nejste oprávněn aktualizovat tento webový formulář apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,E-maily apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,"Prosím, vyberte první typ dokumentu" apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Nastavte základní adresu URL v klíči sociální přihlášení pro Frappe DocType: About Us Settings,About Us Settings,Nastavení O nás DocType: Website Settings,Website Theme,Internetové stránky Téma +DocType: User,Api Access,Api Access DocType: DocField,In List View,V seznamu DocType: Email Account,Use TLS,Použít TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neplatné heslo či uživatelské jméno -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,Stáhnout šablonu +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,Stáhnout šablonu apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,Přidat přizpůsobený javascript do formulářů. ,Role Permissions Manager,Správce rolí a oprávnění apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Jméno nového Print Format @@ -2471,7 +2532,6 @@ DocType: Website Settings,HTML Header & Robots,HTML Záhlaví a roboty DocType: User Permission,User Permission,Uživatelská oprávnění apps/frappe/frappe/config/website.py +32,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,LDAP není nainstalován -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,Ke stažení s daty DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,Sub doména apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,Nastavení pro OAuth Provider @@ -2483,6 +2543,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,E-mailové přihlašovací ID apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,platba byla zrušena ,Addresses And Contacts,Adresy a kontakty +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,Nejprve vyberte typ dokumentu. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Vymazání záznamu chyb apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,"Prosím, vyberte rating" apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,Obnovit OTP Secret @@ -2491,19 +2552,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,Před apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizujte příspěvky blogu. DocType: Workflow State,Time,Čas DocType: DocField,Attach,Přiložit -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} není platný vzor pole. To by mělo být {{název_pole}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} není platný vzor pole. To by mělo být {{název_pole}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Poslat zpětnou vazbu požadavek pouze tehdy, pokud existuje alespoň jeden komunikační je k dispozici pro dokument." DocType: Custom Role,Permission Rules,Pravidla oprávnění DocType: Braintree Settings,Public Key,Veřejný klíč DocType: GSuite Settings,GSuite Settings,Nastavení GSuite DocType: Address,Links,Odkazy apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,Zvolte Typ dokumentu. -apps/frappe/frappe/model/base_document.py +396,Value missing for,Chybí hodnota pro +apps/frappe/frappe/model/base_document.py +405,Value missing for,Chybí hodnota pro apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,Přidat dítě apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odeslaný záznam nemůže být smazán. DocType: GSuite Templates,Template Name,Název šablony apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Nový typ dokumentu -DocType: Custom DocPerm,Read,Číst +DocType: Communication,Read,Číst DocType: Address,Chhattisgarh,Chhattisgarh DocType: Role Permission for Page and Report,Role Permission for Page and Report,Oprávnění role Page a zpráva apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Srovnejte hodnotu @@ -2513,9 +2574,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,Přímý pokoj s {other} již existuje. DocType: Has Domain,Has Domain,Má doménu apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Skrýt -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,Ještě nemáte svůj účet? Přihlásit se +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,Ještě nemáte svůj účet? Přihlásit se apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,ID pole nelze odebrat -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné DocType: Address,Bihar,Bihar DocType: Activity Log,Link DocType,Link DocType apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,Dosud nemáte žádné zprávy. @@ -2530,14 +2591,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Podřízené tabulky jsou zobrazovány jako mřížka v jiných DocTypes. DocType: Chat Room User,Chat Room User,Uživatel chatu apps/frappe/frappe/model/workflow.py +38,Workflow State not set,Stav pracovního postupu není nastaven -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},Kód chyby: {0} +apps/frappe/frappe/www/404.html +23,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 +26,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ů)" DocType: Workflow,Allow Self Approval,Povolit vlastní schválení apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,John Doe DocType: DocType,Name Case,Název případu apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,Sdílené se všemi -apps/frappe/frappe/model/base_document.py +392,Data missing in table,Data chybí v tabulce +apps/frappe/frappe/model/base_document.py +401,Data missing in table,Data chybí v tabulce DocType: Web Form,Success URL,URL Povedlo se DocType: Email Account,Append To,Připojit k apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,Pevná výška @@ -2558,31 +2619,32 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,Je nám líto! Sdílení s webových stránek Uživateli je zakázáno. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,Přidat všechny role +DocType: Website Theme,Bootstrap Theme,Bootstrap Téma apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!","Prosím, zadejte i svůj e-mail a poselství, abychom \ může dostat zpět k vám. Díky!" -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,Nelze se spojit se serverem odchozí emailové pošty +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,Nelze se spojit se serverem odchozí emailové pošty apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Děkujeme Vám za Váš zájem o přihlášení do našich aktualizací DocType: Braintree Settings,Payment Gateway Name,Název platební brány -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,Custom Column +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,Custom Column DocType: Workflow State,resize-full,resize-full DocType: Workflow State,off,off apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,Znovudobytí -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Report {0} je vypnutý +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,Report {0} je vypnutý DocType: Activity Log,Core,Jádro apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Nastavit oprávnění DocType: DocField,Set non-standard precision for a Float or Currency field,Nastavit nestandardní přesnost pro desetinná čísla nebo pole měny DocType: Email Account,Ignore attachments over this size,Ignorovat příloh přes tuto velikost DocType: Address,Preferred Billing Address,Preferovaná Fakturační Adresa apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,Stav pracovního postupu {0} není povolen -apps/frappe/frappe/database.py +296,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/database.py +295,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/core/doctype/version/version_view.html +8,Values Changed,hodnoty Změnil DocType: Workflow State,arrow-up,šipka-nahoru DocType: OAuth Bearer Token,Expires In,V vyprší DocType: DocField,Allow on Submit,Povolit při Odeslání DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Typ výjimky -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,Vybrat sloupce +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Vybrat sloupce DocType: Web Page,Add code as <script>,Přidat kód jako <script> DocType: Webhook,Headers,Záhlaví apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,"Prosím, zadejte hodnoty pro App přístupový klíč a tajný klíč App" @@ -2601,6 +2663,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,Žádné aktivní relace DocType: Top Bar Item,Right,V pravo DocType: User,User Type,Typ uživatele +DocType: Prepared Report,Ref Report DocType,Ref Report DocType apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,Klikněte na tabulku pro editaci DocType: GCalendar Settings,Client ID,ID klienta DocType: Async Task,Reference Doc,Referenční Doc @@ -2619,18 +2682,18 @@ DocType: Workflow State,Edit,Upravit apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Oprávnění mohou být spravována přes Nastavení > Správce rolí a oprávnění DocType: Website Settings,Chat Operators,Operátoři chatu DocType: Contact Us Settings,Pincode,PSČ -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,"Prosím ujistěte se, zda v souboru nejsou prázdné sloupce." +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,"Prosím ujistěte se, zda v souboru nejsou prázdné sloupce." apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,"Ujistěte se, že váš profil má e-mailovou adresu" apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,"V tomto formuláři máte neuložené změny. Prosím, uložte změny než budete pokračovat." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,Výchozí pro {0} musí být možnost +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,Výchozí pro {0} musí být možnost DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie DocType: User,User Image,Obrázek uživatele (avatar) -apps/frappe/frappe/email/queue.py +338,Emails are muted,Emaily jsou potlačené (muted) +apps/frappe/frappe/email/queue.py +341,Emails are muted,Emaily jsou potlačené (muted) apps/frappe/frappe/config/integrations.py +88,Google Services,Služby Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Ctrl + Up DocType: Website Theme,Heading Style,Okruh Style -apps/frappe/frappe/utils/data.py +625,1 weeks ago,Před 1 týdny +apps/frappe/frappe/utils/data.py +627,1 weeks ago,Před 1 týdny DocType: Communication,Error,Chyba DocType: Auto Repeat,End Date,Datum ukončení DocType: Data Import,Ignore encoding errors,Ignorujte chyby kódování @@ -2638,6 +2701,7 @@ DocType: Chat Profile,Notifications,Oznámení DocType: DocField,Column Break,Zalomení sloupce DocType: Event,Thursday,Čtvrtek apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,Nemáte oprávnění k přístupu tento soubor +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,Uložit tajné rozhraní API: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},Nelze odkazovat zrušený dokument: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,"Nelze upravit standardní zprávu. Prosím, duplicitní a vytvořit novou sestavu" apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","Společnost je povinná, protože to je vaše firma adresa" @@ -2654,9 +2718,9 @@ DocType: Custom Field,Label Help,Nápověda popisek DocType: Workflow State,star-empty,star-empty apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,Termíny jsou často snadno uhodnout. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,Příští akce -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Standardní oznámení nelze upravit. Chcete-li jej upravit, deaktivujte ji a zopakujte jej" +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Standardní oznámení nelze upravit. Chcete-li jej upravit, deaktivujte ji a zopakujte jej" DocType: Workflow State,ok,ok -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,Odeslat recenzi +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,Odeslat recenzi DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Tyto hodnoty budou automaticky aktualizovány v transakcích a rovněž bude užitečné omezit oprávnění pro tohoto uživatele v transakcích obsahujících tyto hodnoty. apps/frappe/frappe/twofactor.py +312,Verfication Code,Verifikační kód apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,pro generování opakování @@ -2674,12 +2738,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,Obnovit heslo apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Prosím upgrade přidat více než {0} předplatitelů DocType: Workflow State,hand-left,hand-left DocType: Data Import,If you are updating/overwriting already created records.,Pokud aktualizujete / přepisujete již vytvořené záznamy. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} na {1} nemůže být jedinečné +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} na {1} nemůže být jedinečné apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,Je globální DocType: Email Account,Use SSL,Použít SSL DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",Neplatný výraz "depends_on" -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,Skupinové jméno +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,Skupinové jméno apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Zvolte formát tisku upravit DocType: Address,Shipping,Doprava DocType: Workflow State,circle-arrow-down,circle-arrow-down @@ -2697,23 +2761,23 @@ DocType: SMS Settings,SMS Settings,Nastavení SMS DocType: Company History,Highlight,Zvýraznit DocType: OAuth Provider Settings,Force,Platnost DocType: DocField,Fold,Fold +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,Vzestupně apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standardní formát tisku nemůže být aktualizován apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,"Slečna, minout" -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,Prosím specifikujte +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,Prosím specifikujte DocType: Communication,Bot,Bot DocType: Help Article,Help Article,Článek nápovědy DocType: Page,Page Name,Název stránky apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Nápověda: Vlastnosti pole apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},Přidáním pole závislé měny {0} apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,rozepnout zip -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},Nesprávná hodnota na řádku {0}: {1} musí být {2} {3} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nebyly nalezeny žádné výsledky pro '

-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},Vložený dokument nemůže být konvertován na stav rozpracováno. řádek transkace {0} +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},Nesprávná hodnota na řádku {0}: {1} musí být {2} {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},Vložený dokument nemůže být konvertován na stav rozpracováno. řádek transkace {0} apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,Nakonfigurujte integraci s kalendáři Google -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},Mazání {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},Mazání {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,"Vyberte existující formát, který chcete upravit, nebo začít nový formát." DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,Bypass omezena kontrola adresy IP Pokud je povoleno Authentication Two Factor -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},Vytvořit přizpůsobené pole {0} uvnitř {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},Vytvořit přizpůsobené pole {0} uvnitř {1} DocType: System Settings,Time Zone,Časové pásmo apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Speciální znaky nejsou povoleny DocType: Communication,Relinked,Relinked @@ -2729,7 +2793,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",Pole "trasa" je povinná pro zobrazení webu +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"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 +205,Insert Column Before {0},Vložit sloupec před {0} DocType: Email Account,Add Signature,Přidat podpis apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Levá tento rozhovor @@ -2739,9 +2803,9 @@ DocType: DocField,No Copy,Žádná kopie DocType: Workflow State,qrcode,qrcode DocType: Chat Token,IP Address,IP adresa DocType: Data Import,Submit after importing,Odeslat po importu -apps/frappe/frappe/www/login.html +32,Login with LDAP,Přihlášení s LDAP +apps/frappe/frappe/www/login.html +33,Login with LDAP,Přihlášení s LDAP DocType: Web Form,Breadcrumbs,Drobečková navigace (Breadcrumbs) -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,Pokud majitelem +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,Pokud majitelem DocType: Data Migration Mapping,Push,TAM DocType: OAuth Authorization Code,Expiration time,doba expirace DocType: Web Page,Website Sidebar,Webové stránky Sidebar @@ -2752,12 +2816,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} x apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,All-velká je téměř stejně snadné odhadnout jako all-malá. DocType: Feedback Trigger,Email Fieldname,Email fieldName DocType: Website Settings,Top Bar Items,Položky horního panelu -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","ID e-mailu musí být jedinečné, e-mailový účet je již existují \ u {0}" DocType: Notification,Print Settings,Nastavení tisku DocType: Page,Yes,Ano DocType: DocType,Max Attachments,Max příloh -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Klientský klíč je vyžadován +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,Klientský klíč je vyžadován DocType: Calendar View,End Date Field,Pole ukončení data DocType: Desktop Icon,Page,Stránka apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nelze najít {0} do {1} @@ -2766,21 +2828,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,Znalostní báze DocType: Workflow State,briefcase,kufřík apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},Hodnota nemůže být změněna pro {0} DocType: Feedback Request,Is Manual,je Manual -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},V příloze naleznete {0} # {1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},V příloze naleznete {0} # {1} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Styly reprezentující barvy tlačítek: Úspěch - zelená, Nebezpečí - Červená, Inverze - černá, Hlavní – tmavě modrá, Info – světle modrá, Upozornění – oranžová" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Stav řádku DocType: Workflow Transition,Workflow Transition,Přechod toku (workflow) apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,{0} měsíci apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Vytvořeno (kým) -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,Nastavení Dropbox +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,Nastavení Dropbox DocType: Workflow State,resize-horizontal,resize-horizontal DocType: Chat Message,Content,Obsah DocType: Data Migration Run,Push Insert,Stiskněte Vložit apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,Group Node DocType: Communication,Notification,Oznámení DocType: DocType,Document,Dokument -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},Série {0} jsou již použity v {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,Nepodporovaný formát souboru +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},Série {0} jsou již použity v {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,Nepodporovaný formát souboru DocType: DocField,Code,Kód DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Všechny možné Workflow států a role pracovního postupu. Možnosti Docstatus: 0 je "Saved", 1 "Vložené" a 2 "Zrušeno"" DocType: Website Theme,Footer Text Color,Barva textu v zápatí @@ -2791,13 +2853,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Neplatná pověření platební brána DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Toto je soubor šablony vygenerovaný pouze s řádky s nějakou chybou. Tento soubor byste měli použít k opravě a importu. apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Nastavit role a oprávnění na DocType -apps/frappe/frappe/model/meta.py +160,No Label,No Label +DocType: Data Migration Run,Remote ID,Vzdálené ID +apps/frappe/frappe/model/meta.py +205,No Label,No Label +DocType: System Settings,Use socketio to upload file,Použijte socketio pro nahrání souboru apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,Indexování bylo zrušeno apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,Osvěžující apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,Životopis apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,pozměněná DocType: Address,Tripura,Tripura DocType: About Us Settings,"""Company History""","""Historie organizace""" +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,Tento dokument byl upraven po odeslání e-mailu. +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,Zobrazit zprávu DocType: Address,Tamil Nadu,Tamil Nadu DocType: Email Rule,Email Rule,Email Rule apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document","Chcete-li zastavit odesílání upozornění na opakované chyby ze systému, jsme v dokumentu Auto opakování zkontrolovali pole Zakázáno" @@ -2811,7 +2877,7 @@ DocType: Notification,Send alert if this field's value changes,"Zaslat upozorně apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Vyberte DocType vytvořit nový formát apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,"Příjemci" nejsou specifikováni apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,právě teď -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Aplikovat +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,Aplikovat DocType: Footer Item,Policy,Politika apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} Nastavení nenalezen DocType: Module Def,Module Def,Vymezení modulů @@ -2825,7 +2891,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,Ký DocType: Print Settings,Allow page break inside tables,Umožnit konec stránky uvnitř tabulky DocType: Email Account,SMTP Server,SMTP server DocType: Print Format,Print Format Help,Nápověda formát tisku -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,Se skupinami +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,Se skupinami DocType: DocType,Beta,Beta apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,Omezte výběr ikon pro všechny uživatele. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},obnovena {0} jako {1} @@ -2834,8 +2900,9 @@ DocType: DocField,Translatable,Přeložitelný DocType: Event,Every Month,Měsíčně DocType: Letter Head,Letter Head in HTML,Hlavičkový list v HTML DocType: Web Form,Web Form,Webový formulář +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},Datum {0} musí být ve formátu: {1} DocType: About Us Settings,Org History Heading,Záhlaví historie organizace -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Promiňte. Dosáhli jste maximálního počtu uživatelů pro své předplatné. Můžete buď zakázat existujícího uživatele nebo koupit vyšší plán předplatného. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Promiňte. Dosáhli jste maximálního počtu uživatelů pro své předplatné. Můžete buď zakázat existujícího uživatele nebo koupit vyšší plán předplatného. DocType: Print Settings,Allow Print for Cancelled,Umožňují tisk pro Zrušeno DocType: Communication,Integrations can use this field to set email delivery status,Integrace můžete použít toto pole k nastavení stavu doručení e-mailu DocType: Web Form,Web Page Link Text,Text odkazu www stránky @@ -2848,13 +2915,12 @@ DocType: GSuite Settings,Allow GSuite access,Povolit přístup GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Pojmenování DocType: Event,Every Year,Ročně -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,Vybrat vše +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,Vybrat vše apps/frappe/frappe/config/setup.py +247,Custom Translations,Vlastní Překlady apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,Pokrok apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,podle role apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,chybějící Fields -apps/frappe/frappe/email/smtp.py +188,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í> Email> E-mailový účet -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,Neplatný fieldname '{0}' v autoname +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,Neplatný fieldname '{0}' v autoname apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Hledat v typu dokumentu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,Povolit aby pole zůstalo upravovatelné i po vložení DocType: Custom DocPerm,Role and Level,Role a úroveň @@ -2863,14 +2929,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Přizpůsobené Reporty DocType: Website Script,Website Script,Skript www stránky DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Pokud nepoužíváte webapp vlastního publikování aplikace Google Apps Script, můžete použít výchozí https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec" apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,Upravené HTML Šablony pro tisk transakcí. -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,Orientace +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,Orientace DocType: Workflow,Is Active,Je Aktivní -apps/frappe/frappe/desk/form/utils.py +111,No further records,Žádné další záznamy +apps/frappe/frappe/desk/form/utils.py +114,No further records,Žádné další záznamy DocType: DocField,Long Text,Dlouhý text DocType: Workflow State,Primary,Primární -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},Prosím neměňte řádky výše: {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},Prosím neměňte řádky výše: {0} DocType: Web Form,Go to this URL after completing the form (only for Guest users),Přejděte na tuto adresu URL po vyplnění formuláře (pouze pro hosty) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Ctrl + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Víc informací DocType: Data Migration Mapping,Field Maps,Mapové pole DocType: Desktop Icon,Desktop Icon,Ikona Desktop @@ -2891,13 +2957,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,Stripe Nastavení DocType: Data Migration Mapping,Data Migration Mapping,Mapování migrace dat apps/frappe/frappe/www/login.py +89,Invalid Login Token,Neplatný Přihlášení Token -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,Vyřadit +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,Vyřadit apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,před 1 hodinou DocType: Website Settings,Home Page,Domovská stránka DocType: Error Snapshot,Parent Error Snapshot,Parent Chyba Snapshot -DocType: Kanban Board,Filters,Filtry +DocType: Prepared Report,Filters,Filtry DocType: Workflow State,share-alt,share-alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},Fronta by měla být jedna z {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},Fronta by měla být jedna z {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2927,12 +2993,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,Script nebo Query zprávy
 DocType: Workflow Document State,Workflow Document State,Stav toku (workflow) dokumentu
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,Soubor je příliš velký
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,E-mailový účet přidán vícekrát
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,E-mailový účet přidán vícekrát
 DocType: Payment Gateway,Payment Gateway,Platební brána
 DocType: Portal Settings,Hide Standard Menu,Skrýt standardní nabídku
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,Přidat / Správa e-mailových domén.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},Nelze zrušit před vložením. Transakce {0}
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,Formát tisku: {0} je vypnutý
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},Nelze zrušit před vložením. Transakce {0}
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Formát tisku: {0} je vypnutý
 ,Address and Contacts,Adresa a kontakty
 DocType: Notification,Send days before or after the reference date,Poslat dní před nebo po referenčním datem
 DocType: User,Allow user to login only after this hour (0-24),Povolit uživateli se přihlásit pouze po této hodině (0-24)
@@ -2942,7 +3008,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,Předvídatelné substituce jako '@' místo 'a' nepomohou moc.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Přidělené Me
 apps/frappe/frappe/utils/data.py +528,Zero,Nula
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Není v režimu pro vývojáře! Nachází se v site_config.json nebo učinit 'custom' DocType.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Není v režimu pro vývojáře! Nachází se v site_config.json nebo učinit 'custom' DocType.
 DocType: Workflow State,globe,glóbus
 DocType: System Settings,dd.mm.yyyy,dd.mm.rrrr
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,Skrýt pole ve standardním formátu tisku
@@ -2955,19 +3021,21 @@ DocType: DocType,Allow Import (via Data Import Tool),Umožnit import (pomocí Im
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,starší
 DocType: DocField,Float,Desetinné číslo
 DocType: Print Settings,Page Settings,Nastavení stránky
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,Ukládání ...
 DocType: Auto Repeat,Submit on creation,Předložení návrhu na vytvoření
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,Neplatné heslo
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,Neplatné heslo
 DocType: Contact,Purchase Master Manager,Nákup Hlavní manažer
 DocType: Module Def,Module Name,Název modulu
 DocType: DocType,DocType is a Table / Form in the application.,DocType je tabulka / formulář v aplikaci
 DocType: Social Login Key,Authorize URL,Autorizujte URL
 DocType: Email Account,GMail,GMail
 DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} Zpráva
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Zpráva
 DocType: SMS Settings,Use POST,Použijte POST
 DocType: Communication,SMS,SMS
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,Získat obrázky
 DocType: DocType,Web View,Web View
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,Upozornění: tento tiskový formát je ve starém stylu a nemůže být generován skrze API.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,Upozornění: tento tiskový formát je ve starém stylu a nemůže být generován skrze API.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,Součty
 DocType: DocField,Print Width,šířka tisku
 ,Setup Wizard,Průvodce nastavením
@@ -2976,6 +3044,7 @@ DocType: Chat Message,Visitor,Návštěvník
 DocType: User,Allow user to login only before this hour (0-24),Povolit uživatelům přihlásit pouze před tuto hodinu (0-24)
 DocType: Social Login Key,Access Token URL,Adresa přístupového bodu
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,Složka je povinná
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} přiřazeno {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,Nová zpráva z webové stránky se zobrazí stránka
 DocType: Notification,Reference Date,Referenční datum
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,Zadejte platné mobilní nos
@@ -3002,21 +3071,22 @@ DocType: DocField,Small Text,Krátký text
 DocType: Workflow,Allow approval for creator of the document,Umožnit schválení tvůrci dokumentu
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,API Endpoint Args
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,Správce přístupné {0} na {1} pomocí IP adresy {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,Správce přístupné {0} na {1} pomocí IP adresy {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,Je rovno
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Možnosti pole typu 'Dynamický odkaz' musí odkazovat na jiné provázané pole s možnostmi jako 'DocType'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Možnosti pole typu 'Dynamický odkaz' musí odkazovat na jiné provázané pole s možnostmi jako 'DocType'
 DocType: About Us Settings,Team Members Heading,Záhlaví členů týmu
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,Neplatný formátu CSV
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Nastavit počet záloh
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,Opravte prosím
 DocType: DocField,Do not allow user to change after set the first time,Nepovolit uživateli změnu po prvním nastavení
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Soukromých nebo veřejných?
-apps/frappe/frappe/utils/data.py +633,1 year ago,před 1 rokem
+apps/frappe/frappe/utils/data.py +635,1 year ago,před 1 rokem
 DocType: Contact,Contact,Kontakt
 DocType: User,Third Party Authentication,Ověření třetí stranou
 DocType: Website Settings,Banner is above the Top Menu Bar.,Banner je nad horní lištou menu.
-DocType: Razorpay Settings,API Secret,API Secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,Export Report:
+DocType: User,API Secret,API Secret
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} Kalendář
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,Export Report:
 DocType: Data Migration Run,Push Update,Push Update
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,v dokumentu Auto opakování
 DocType: Email Account,Port,Port
@@ -3027,7 +3097,7 @@ DocType: Website Slideshow,Slideshow like display for the website,Promítání o
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,Nastavení oznámení podle různých kritérií.
 DocType: Communication,Updated,Aktualizováno
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,Select Module
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,Hledat nebo Vytvořit nový rozhovor
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,Hledat nebo Vytvořit nový rozhovor
 apps/frappe/frappe/sessions.py +29,Cache Cleared,Vyrovnávací paměť vyčistěna
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,nový e-mail
@@ -3043,7 +3113,7 @@ DocType: Print Settings,PDF Settings,Nastavení PDF
 DocType: Kanban Board Column,Column Name,Název sloupce
 DocType: Language,Based On,Založeno na
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Nastavit jako výchozí
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} na {1} nelze indexovat
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} na {1} nelze indexovat
 DocType: Communication,Email Account,E-mailový účet
 DocType: Workflow State,Download,Stáhnout
 DocType: Blog Post,Blog Intro,Úvod blogu
@@ -3057,7 +3127,7 @@ DocType: Web Page,Insert Code,Vložit kód
 DocType: Data Migration Run,Current Mapping Type,Aktuální typ mapování
 DocType: ToDo,Low,Nízké
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Můžete přidat dynamické vlastnosti z dokumentu pomocí Jinja šablonovacího.
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Neplatný limit {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},Neplatný limit {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Seznam typů dokumentů
 DocType: Event,Ref Type,Typ reference
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Pakliže nahráváte nové záznamy, nechte sloupec (ID) ""název/jméno"" prázdný."
@@ -3079,21 +3149,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N
 DocType: Print Settings,Send Print as PDF,Odeslat tisk jako PDF
 DocType: Web Form,Amount,Částka
 DocType: Workflow Transition,Allowed,Povoleno
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,Může být pouze jeden Fold ve formuláři
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,Může být pouze jeden Fold ve formuláři
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},Nelze zapsat formát souboru pro {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Obnovit výchozí nastavení?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Neplatná domovská stránka
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,Neplatné přihlášení. Zkus to znovu.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},Možnosti požadované pro pole Odkaz nebo Tabulka typu {0} v řádku {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},Možnosti požadované pro pole Odkaz nebo Tabulka typu {0} v řádku {1}
 DocType: Auto Email Report,Send only if there is any data,"Zaslat pouze tehdy, pokud existuje údaje"
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,Obnovit filtry
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0}: Oprávnění na úrovni 0 musí být nastaveno před nastavením vyšších úrovní
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,Obnovit filtry
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0}: Oprávnění na úrovni 0 musí být nastaveno před nastavením vyšších úrovní
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Úkol uzavřen {0}
 DocType: Integration Request,Remote,Dálkový
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Vypočítat
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Prosím, vyberte první DocType"
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,Potvrdit Váš e-mail
-apps/frappe/frappe/www/login.html +40,Or login with,Nebo se přihlašte
+apps/frappe/frappe/www/login.html +41,Or login with,Nebo se přihlašte
 DocType: Error Snapshot,Locals,Místní obyvatelé
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Předávány prostřednictvím {0} z {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} se o vás zmínil v komentáři v {1}
@@ -3103,23 +3173,24 @@ DocType: Integration Request,Integration Type,integrace Type
 DocType: Newsletter,Send Attachements,odeslat přílohy
 DocType: Transaction Log,Transaction Log,Protokol transakcí
 DocType: Contact Us Settings,City,Město
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,Ctrl + Enter pro odeslání
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,Ctrl + Enter pro odeslání
 DocType: DocField,Perm Level,úroveň oprávnění
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,Zobrazit dokument
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Dnešní události v kalendáři
 DocType: Web Page,Web Page,Www stránky
 DocType: Workflow Document State,Next Action Email Template,Další šablona e-mailů akce
 DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},'V globálním vyhledávání' není povolen typ {0} v řádku {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},'V globálním vyhledávání' není povolen typ {0} v řádku {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,Zobrazit seznam
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},Datum musí být ve formátu: {0}
 DocType: Workflow,Don't Override Status,Nepotlačí Stav
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Uveďte prosím hodnocení.
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Poptávka
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Hledaný výraz
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,První Uživatel: Vy
 DocType: Deleted Document,GCalendar Sync ID,ID synchronizace GCalendar
+DocType: Prepared Report,Report Start Time,Čas zahájení hlášení
 apps/frappe/frappe/config/setup.py +112,Export Data,Exportovat data
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,Vyberte sloupce
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,Vyberte sloupce
 DocType: Translation,Source Text,Zdroj Text
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,Chybějící parametry pro přihlášení
 DocType: Workflow State,folder-open,folder-open
@@ -3132,7 +3203,7 @@ DocType: Property Setter,Set Value,Nastavit hodnotu
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Skrýt pole ve formuláři
 DocType: Webhook,Webhook Data,Webhook Data
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},Vytváření {0}
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,Nezákonné Access Token. Prosím zkuste to znovu
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,Nezákonné Access Token. Prosím zkuste to znovu
 apps/frappe/frappe/public/js/frappe/desk.js +92,"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/core/doctype/communication/communication.js +35,Resend,Přeposlat
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Volitelné: Upozornění bude zasláno pokud je tento výraz pravdivý
@@ -3146,8 +3217,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,Úroveň
 DocType: Custom DocPerm,Report,Report
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Množství musí být větší než 0 ° C.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} uloženo
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,Uživatel: {0} nemůže být přejmenován
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} uloženo
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,Uživatel: {0} nemůže být přejmenován
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),Fieldname je omezena na 64 znaků ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,Email List Group
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Ikonu souboru s příponou ICO. Měl by být 16 x 16 px. Generován pomocí favicon generátoru. [favicon-generator.org]
@@ -3160,23 +3231,22 @@ DocType: Website Theme,Background,Pozadí
 DocType: Report,Ref DocType,Referenční DocType
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,"Předtím, než je zapnuto přihlášení k účtu, zadejte ID klienta"
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,Přidejte hodnocení
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0}: Nelze Změnit bez Zrušení
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{0}: Cannot set Amend without Cancel,{0}: Nelze Změnit bez Zrušení
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Full Page
 DocType: DocType,Is Child Table,Je podtabulka
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} rok (y)
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} musí být jedno ze {1}
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} musí být jedno ze {1}
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} si právě prohlíží tento dokument
 apps/frappe/frappe/config/core.py +52,Background Email Queue,Pozadí Email fronty
 apps/frappe/frappe/core/doctype/user/user.py +246,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 +258,Not allowed from this IP Address,Není povoleno z této IP adresy
+apps/frappe/frappe/auth.py +272,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ů.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,Instaluje aplikace
 DocType: Contact,Last Name,Příjmení
 DocType: Event,Private,Soukromé
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,Žádné upozornění na dnešek
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,Žádné upozornění na dnešek
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Zvolte tiskové přílohy emailu jako PDF (doporučeno)
 DocType: Web Page,Left,Zbývá
 DocType: Event,All Day,Celý den
@@ -3187,10 +3257,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",Image Field (nutn
 apps/frappe/frappe/utils/bot.py +43,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/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí šablona adresy. Vytvořte prosím nový z nabídky Nastavení> Tisk a branding> Šablona adresy.
 DocType: Contact,Gender,Pohlaví
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Povinné nebo chybějící údaje:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nelze nastavit jako jedinečné, jak to má non-jedinečné hodnoty"
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,Povinné nebo chybějící údaje:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nelze nastavit jako jedinečné, jak to má non-jedinečné hodnoty"
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Zkontrolujte adresu URL požadavku
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,Pouhých 200 vložky povoleno v jedné žádosti
 DocType: Footer Item,URL,URL
@@ -3206,12 +3275,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Strom
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,Nejste oprávněn tisknout tuto zprávu
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Uživatelská oprávnění
 DocType: Workflow State,warning-sign,warning-sign
+DocType: Prepared Report,Prepared Report,Připravená zpráva
 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
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,text v typu dokumentu
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Spusťte testy
-apps/frappe/frappe/handler.py +94,Logged Out,Odhlásit
+apps/frappe/frappe/handler.py +95,Logged Out,Odhlásit
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Více...
 DocType: System Settings,User can login using Email id or Mobile number,Uživatel se může přihlásit pomocí čísla e-mailu nebo mobilního čísla
 DocType: Bulk Update,Update Value,Aktualizovat hodnotu
@@ -3219,12 +3289,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},O
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,"Zvolte prosím nový název, který chcete přejmenovat"
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,Neplatný sloupec
 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/request.js +167,Something went wrong,Něco se pokazilo
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,Zobrazeny jsou pouze položky {0}. Filtrovejte prosím konkrétnější výsledky.
 DocType: System Settings,Number Format,Formát čísel
 DocType: Auto Repeat,Frequency,Frekvence
 DocType: Custom Field,Insert After,Vložit za
-DocType: Report,Report Name,Název reportu
+DocType: Prepared Report,Report Name,Název reportu
 DocType: Desktop Icon,Reverse Icon Color,Reverzní barevná ikona
 DocType: Notification,Save,Uložit
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,Další plánovaný den
@@ -3237,13 +3308,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,Výchozí
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0}: přidáno
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Hledat '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,"Prosím, uložte sestavu jako první"
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Prosím, uložte sestavu jako první"
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} odběratelé přidáni
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,Ne V
 DocType: Workflow State,star,star
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,Hub
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,hodnoty oddělené čárkami
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +281,values separated by commas,hodnoty oddělené čárkami
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Prosím, podělte se o své zpětnou vazbu pro {0}"
 apps/frappe/frappe/config/website.py +13,Content web page.,Obsah www stránky.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Přidat novou roli
@@ -3256,15 +3327,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,Záznamy pro následující doktty budou filtrovány
 DocType: Blog Settings,Blog Introduction,Představení blogu
 DocType: Address,Office,Kancelář
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,To Kanban Board budou soukromé
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,To Kanban Board budou soukromé
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standardní výpisy
 DocType: User,Email Settings,Nastavení emailu
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,"Prosím, zadejte heslo pro pokračování"
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,"Prosím, zadejte heslo pro pokračování"
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,Není platný uživatel LDAP
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} není validní stav
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} není validní stav
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,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
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,Vyhledávací pole {0} není platný
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,Vyhledávací pole {0} není platný
 DocType: Workflow State,ok-circle,ok-circle
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Můžete najít věci tím, že žádá "najít oranžovou zákazníků '"
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,Je nám líto! Uživatel by měl mít kompletní přístup k vlastnímu záznamu.
@@ -3280,21 +3351,21 @@ DocType: DocField,Unique,Jedinečný
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Částečný úspěch
 DocType: Email Account,Service,Služba
 DocType: File,File Name,Název souboru
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),Nenalezeno {0} pro {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),Nenalezeno {0} pro {0} ({1})
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Jejda, už není dovoleno vědět, že"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Další
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,Byli jste úspěšně odhlášeni
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,Byli jste úspěšně odhlášeni
 DocType: Calendar View,Calendar View,Zobrazení kalendáře
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Edit Format
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,Dokončit registraci
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,Dokončit registraci
 DocType: GCalendar Settings,Enable,Zapnout
-DocType: Google Maps,Home Address,Domácí adresa
+DocType: Google Maps Settings,Home Address,Domácí adresa
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),Nová {0} (Ctrl + B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,"Top Bar barev a Barva textu jsou stejné. Měly by být mít dobrý kontrast, aby byl čitelný."
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Můžete nahrát nejvýše 5000 záznamů najednou. (může být i méně v některých případech)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},Nedostatečné oprávnění pro {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),Výpis nebyl uložen (byly tam chyby)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,Nelze změnit obsah záhlaví
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),Výpis nebyl uložen (byly tam chyby)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,Nelze změnit obsah záhlaví
 DocType: Print Settings,Print Style,Styl tisku
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Není propojen s žádným záznamem
 DocType: Custom DocPerm,Import,Importovat
@@ -3324,9 +3395,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,Prosím klikněte na obnovit pro získání nejnovějšího dokumentu.
 DocType: User,Security Settings,Nastavení zabezpečení
 DocType: Website Settings,Operators,Operátoři
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,Přidat sloupec
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,Přidat sloupec
 ,Desktop,Pracovní plocha
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},Exportní přehled: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},Exportní přehled: {0}
 DocType: Auto Email Report,Filter Meta,Filtr Meta
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Text k zobrazení k prolinkování www stránky pokud má tento formulář www stránku. Cesta odkazu bude automaticky generována na základě `page_name` a `parent_website_route`
 DocType: Feedback Request,Feedback Trigger,Zpětná vazba Trigger
@@ -3353,6 +3424,6 @@ DocType: Bulk Update,Max 500 records at a time,Max 500 záznamů najednou
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Pokud vaše data je ve formátu HTML, zkopírujte prosím vložte přesně kód HTML s tagy."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,"Nelze otevřít přiložený soubor. Věděli jste, že export ve formátu CSV?"
 DocType: DocField,Ignore User Permissions,Ignorovat uživatelská oprávnění
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,Požádejte správce ověřit vaše znamení-up
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,Požádejte správce ověřit vaše znamení-up
 DocType: Domain Settings,Active Domains,Aktivní domény
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,Ukázat záznam
diff --git a/frappe/translations/da.csv b/frappe/translations/da.csv
index 4dff9ac954..575d749e2e 100644
--- a/frappe/translations/da.csv
+++ b/frappe/translations/da.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,Vælg beløbsfelt.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Tryk på Esc for at lukke
-apps/frappe/frappe/desk/form/assign_to.py +158,"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/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}","En ny opgave, {0}, er blevet tildelt til dig af {1}. {2}"
 DocType: Email Queue,Email Queue records.,Email Queue optegnelser.
 DocType: Address,Punjab,Punjab
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,Omdøb mange varer ved at uploade en .csv-fil.
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,Hjemmeside
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Du skal være logget ind for at få adgang til denne side
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Bemærk: Flere sessioner vil være tilladt i tilfælde af mobil enhed
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},Aktiveret email indbakke for bruger {brugere}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},Aktiveret email indbakke for bruger {brugere}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Kan ikke sende denne e-mail. Du har krydset sende grænse på {0} emails for denne måned.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,Godkend endeligt {0}?
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Download sikkerhedskopier
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} Træ
 DocType: User,User Emails,Bruger e-mails
 DocType: User,Username,Brugernavn
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,Import Zip
-apps/frappe/frappe/model/base_document.py +554,Value too big,Værdi for stor
+apps/frappe/frappe/model/base_document.py +563,Value too big,Værdi for stor
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,Kør scripttest
 DocType: Data Import,Total Rows,Samlede rækker
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,Logs
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,Det er nødvendigt at tage denne handling i dag selv for ovennævnte tilbagevendende
 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 +539,Rename {0},Omdøb {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},Omdøb {0}
 DocType: Workflow State,zoom-out,zoom-ud
 apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Kan ikke åbne {0} når dens forekomst er åben
-apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,Tabel {0} kan ikke være tomt
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,Tabel {0} kan ikke være tomt
 DocType: SMS Parameter,Parameter,Parameter
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,Med Ledgers
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,Dokumentet er blevet ændret!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,Med Ledgers
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,Billeder
 DocType: Activity Log,Reference Owner,henvisning Ejer
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Hvis den er aktiveret, kan brugeren logge ind fra en hvilken som helst IP-adresse ved hjælp af Two Factor Auth. Dette kan også indstilles for alle brugere i Systemindstillinger"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Mindste cirkulerende stambrøk (mønt). For fx 1 cent for USD, og det skal indtastes som 0,01"
 DocType: Social Login Key,GitHub,GitHub
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, række {1}"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, række {1}"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Indtast det fulde navn.
-apps/frappe/frappe/model/document.py +1057,Beginning with,Begyndende med
+apps/frappe/frappe/model/document.py +1058,Beginning with,Begyndende med
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Data Import Skabelon
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Parent
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Hvis aktiveret, vil kodeordets styrke blive håndhævet baseret på værdien Minimum Password Score. En værdi på 2 er medium stærk og 4 er meget stærk."
 DocType: About Us Settings,"""Team Members"" or ""Management""","Team medlemmer" eller "Management"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',Standard for "Kontrollér" type felt skal enten være '0' eller '1'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',Standard for "Kontrollér" type felt skal enten være '0' eller '1'
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,I går
 DocType: Contact,Designation,Betegnelse
 DocType: Test Runner,Test Runner,Test Runner
@@ -66,10 +65,11 @@ 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 +47,Danger,Fare
-apps/frappe/frappe/www/login.html +20,Email Address,E-mailadresse
+apps/frappe/frappe/www/login.html +21,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/misc/tools.js +10,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.
+DocType: System Settings,In seconds,Om sekunder
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,Annuller {0} dokumenter?
 DocType: DocType,Is Published Field,Er Udgivet Field
 DocType: GCalendar Settings,GCalendar Settings,GCalendar-indstillinger
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,E-mailgruppe
 DocType: Note,Seen By,Set af
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,Tilføj flere
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,Ikke et gyldigt brugerbillede.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Opsætning> Bruger
 DocType: Success Action,First Success Message,Første succesmeddelelse
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,Ikke lig med
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Indstil displayet etiket for feltet
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},Forkert værdi: {0} skal være {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},Forkert værdi: {0} skal være {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","Skift egenskaber for feltet (skjul, skrivebeskyttet, tilladelse osv.)"
 DocType: Workflow State,lock,lås
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,"Indstillinger for ""Kontakt os""-siden."
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,Administrator logget ind
+apps/frappe/frappe/core/doctype/user/user.py +917,Administrator Logged In,Administrator logget ind
 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 +34,Add a tag ...,Tilføj et tag ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},Ny {0}: # {1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},Ny {0}: # {1}
 DocType: Data Migration Run,Insert,Indsæt
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vælg {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,Indtast venligst basiswebadresse
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,Dokumenttyper
 DocType: Address,Jammu and Kashmir,Jammu og Kashmir
 DocType: Workflow,Workflow State Field,Workflow State Field
-apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,Log-up eller log ind for at begynde
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,Log-up eller log ind for at begynde
 DocType: Blog Post,Guest,Gæst
 DocType: DocType,Title Field,Titel Field
 DocType: Error Log,Error Log,Fejllog
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"If you think this is unauthorized, please change the Administrator password.","Hvis du synes, det er uberettiget, skal du ændre administratoradgangskoden."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} er obligatorisk
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} er obligatorisk
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","Navngivningsmuligheder:
  1. felt: [feltnavn] - Efter felt
  2. naming_series: - Ved navngivning Serie (felt kaldet naming_series skal være til stede
  3. Spørg - Hurtig bruger til et navn
  4. [serie] - Serie ved præfiks (adskilt af en prik); for eksempel PRE. #####
  5. concatenate: [fieldname1], [fieldname2], ... [fieldnameX] - Efter fieldname concatenation (du kan sammenkæde så mange felter som du vil. Serie-option fungerer også)
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,Ejer DocType: Communication,Visit,Besøg DocType: LDAP Settings,LDAP Search String,LDAP-søgning String DocType: Translation,Translation,Oversættelse -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Opsætning> Tilpas formular apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Hr. DocType: Custom Script,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,Vælg kolonne @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,Import-log apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Integrér billedeslideshows i hjemmesider. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,Send DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,DocType kan ikke flettes +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,DocType can not be merged,DocType kan ikke flettes DocType: Web Form Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py +270,Not a zip file,Ikke en zip-fil DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,Du DocType: Braintree Settings,Braintree Settings,Braintree Indstillinger DocType: Website Theme,lowercase,små bogstaver -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,Vælg kolonner baseret på apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,Gem filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},Kan ikke slette {0} +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,Ikke forældre af DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,Nyhedsbrev er allerede blevet sendt apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","Login session udløbet, opdater siden for at prøve igen" @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,Email Afmeld DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Vælg et billede med en ca. bredde på 150px med en gennemsigtig baggrund for det bedste resultat. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Tredjeparts apps apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,Den første bruger bliver System Manager (du kan ændre dette senere). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,DocType skal være Submitterable for den valgte Doc Event ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,cirkel-pil-up DocType: Email Domain,Email Domain,E-mail domæne DocType: Workflow State,italic,kursiv -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0}: Kan ikke sætte Import uden Opret +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0}: Kan ikke sætte Import uden Opret DocType: SMS Settings,Enter url parameter for message,Indtast url parameter for besked apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,Se rapport i din browser apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Arrangementet og andre kalendere. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Alle felter er nødvendige for at indsende kommentaren. +DocType: Print Settings,Printer Name,Printernavn +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,Træk for at sortere kolonner apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Bredder kan indstilles i px eller%. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,Start DocType: Contact,First Name,Fornavn @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,Filer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Tilladelser bliver anvendt på brugere baseret på, hvad Roller de er tildelt." apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,Det er ikke tilladt at sende e-mails relateret til dette dokument -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,Vælg atleast 1 kolonne fra {0} at sortere / gruppe +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,Vælg atleast 1 kolonne fra {0} at sortere / gruppe DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Markér dette hvis du tester din betaling ved hjælp af Sandbox API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Du har ikke lov til at slette en standard hjemmeside tema DocType: Data Import,Log Details,Log detaljer DocType: Feedback Trigger,Example,Eksempel DocType: Webhook Header,Webhook Header,Webhook Header +DocType: Print Settings,Print Server,Print Server DocType: Workflow State,gift,gave DocType: Workflow Action,Completed By,Færdiggjort af apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Reqd @@ -223,12 +227,13 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS 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/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,Dokumentation +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,Dokumentation DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,Slet {0} varer permanent? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,Ikke tilladt DocType: DocShare,Internal record of document shares,Intern registrering af dokumenter aktier DocType: Workflow State,Comment,Kommentar +DocType: Data Migration Plan,Postprocess Method,Efterprocesmetode apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,Tag et billede apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","Du kan ændre Indsendte dokumenter ved at annullere dem og derefter, om ændring af dem." DocType: Data Import,Update records,Opdater poster @@ -236,20 +241,20 @@ 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/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,Gem som +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,Gem som DocType: Communication,Seen,Set apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,Vis flere detaljer DocType: System Settings,Run scheduled jobs only if checked,"Kør planlagte job, hvis kontrolleret" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Vil kun blive vist, hvis afsnitsoverskrifter er aktiveret" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arkiv -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,Filoverførsel +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,Filoverførsel DocType: Activity Log,Message,Besked DocType: Communication,Rating,Bedømmelse DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Print Bredde af feltet, hvis feltet er en søjle i en tabel" DocType: Dropbox Settings,Dropbox Access Key,Dropbox adgangsnøgle -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,Forkert feltnavn {0} i add_fetch konfiguration af brugerdefineret script +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,Forkert feltnavn {0} i add_fetch konfiguration af brugerdefineret script DocType: Workflow State,headphones,hovedtelefoner -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,"Adgangskode er påkrævet, eller vælg afventer adgangskode" +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,"Adgangskode er påkrævet, eller vælg afventer adgangskode" DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,f.eks replies@yourcomany.com. Alle svar vil komme til denne indbakke. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL DocType: Data Migration Run,Current Mapping,Aktuel kortlægning @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupper af doctypes apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Integration med Google Maps DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,Nulstil din adgangskode +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,Vis weekender DocType: Workflow State,remove-circle,fjern-cirkel DocType: Help Article,Beginner,Begynder DocType: Contact,Is Primary Contact,Er primær kontaktperson apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,Javascript for at tilføje til hovedet afsnit på siden. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,Ikke tilladt at udskrive kladdedokumenter +apps/frappe/frappe/www/printview.py +80,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 +12,Reset to defaults,Nulstil til standardindstillinger DocType: Workflow,Transition Rules,Overgangsregler apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Eksempel: -DocType: Google Maps,Google Maps,Google kort DocType: Workflow,Defines workflow states and rules for a document.,Definerer workflow stater og regler for et dokument. DocType: Workflow State,Filter,Filter apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},Feltnavn {0} kan ikke have specielle tegn som {1} @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,Opdateri apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,"Fejl: Dokument er blevet ændret, efter at du har åbnet det" apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} logget ud: {1} DocType: Address,West Bengal,Vestbengalen -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kan ikke indstille tildeling - Indsend, hvis det ikke kan indsendes." +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kan ikke indstille tildeling - Indsend, hvis det ikke kan indsendes." DocType: Transaction Log,Row Index,Rækkeindeks DocType: Social Login Key,Facebook,Facebook -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",Filtreret efter "{0}" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",Filtreret efter "{0}" DocType: Salutation,Administrator,Administrator DocType: Activity Log,Closed,Lukket DocType: Blog Settings,Blog Title,Blog Titel apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,Standard roller kan ikke deaktiveres -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,Chat Type +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,Chat Type DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nyhedsbrev -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,Kan ikke bruge sub-forespørgsel i rækkefølge efter +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,Kan ikke bruge sub-forespørgsel i rækkefølge efter DocType: Web Form,Button Help,Knappen Hjælp DocType: Kanban Board Column,purple,lilla DocType: About Us Settings,Team Members,Team Medlemmer @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",SQL Betingelser. DocType: User,Get your globally recognized avatar from Gravatar.com,Få din globalt anerkendt avatar fra Gravatar.com apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","Dit abonnement udløb den {0}. For at forny, {1}." DocType: Workflow State,plus-sign,plus-tegnet -apps/frappe/frappe/__init__.py +918,App {0} is not installed,App {0} er ikke installeret +apps/frappe/frappe/__init__.py +994,App {0} is not installed,App {0} er ikke installeret DocType: Data Migration Plan,Mappings,tilknytninger DocType: Notification Recipient,Notification Recipient,Meddelelsesmodtager DocType: Workflow State,Refresh,Opdater DocType: Event,Public,Offentlig -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,Intet at vise +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,Intet at vise DocType: System Settings,Enable Two Factor Auth,Aktivér to faktorauth -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[Urgent] Fejl under oprettelse af tilbagevendende% s for% s +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[Urgent] Fejl under oprettelse af tilbagevendende% s for% s apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Ønsket af DocType: DocField,Print Hide If No Value,Udskriv Skjul Hvis Nej Værdi DocType: Kanban Board Column,yellow,gul -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,Er Udgivet Field skal være en gyldig fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,Er Udgivet Field skal være en gyldig fieldname apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Upload Attachment DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,Ny værdi +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,Ingen tilladelse til at redigere apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Tilføj en kolonne apps/frappe/frappe/www/contact.html +34,Your email address,Din e-mail-adresse DocType: Desktop Icon,Module,Modul 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/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,"Sørg for, at referencekommunikationsdokumenterne ikke er cirkulært forbundet." +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,"Sørg for, at referencekommunikationsdokumenterne ikke er cirkulært forbundet." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Opret et nyt format apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,Kunne ikke oprette bucket: {0}. Skift det til et mere unikt navn. DocType: Webhook,Request URL,Anmodning URL @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,er Table apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,Anvend brugertilladelse til følgende doktypes DocType: Email Account,Total number of emails to sync in initial sync process ,"Samlet antal e-mails, der skal synkroniseres i indledende synkronisering proces" DocType: Website Settings,Set Banner from Image,Set Banner fra Billede -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Global søgning +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,Global søgning DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},En ny konto er oprettet til dig på {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,Instruktioner sendt @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag kø apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,Formatark til udskrivningsformater apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Kan ikke identificere åben {0}. Prøv noget andet. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,Dine oplysninger er blevet godkendt -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,Bruger {0} kan ikke slettes +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,Dine oplysninger er blevet godkendt +apps/frappe/frappe/core/doctype/user/user.py +305,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 +143,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. DocType: DocType,App,App @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Vis alle DocType: Workflow State,Print,Udskriv DocType: User,Restrict IP,Begræns IP apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,instrumentbræt -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,Kan ikke sende e-mails på dette tidspunkt -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,Søg eller indtast en kommando +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,Kan ikke sende e-mails på dette tidspunkt +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,Søg eller indtast en kommando DocType: Activity Log,Timeline Name,Tidslinje navn DocType: Email Account,e.g. smtp.gmail.com,fx smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,Tilføj en ny regel @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,S DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Din forespørgsel er modtaget. Vi vil svare tilbage inden længe. Hvis du har yderligere oplysninger, bedes du besvare denne mail." DocType: GCalendar Account,Allow GCalendar Access,Tillad GCalendar Access -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} er et obligatorisk felt +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} er et obligatorisk felt apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,Login token kræves DocType: Event,Repeat Till,Gentag til apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,Ny apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Indstil script-URL på Gsuite-indstillinger +DocType: Google Maps Settings,Google Maps Settings,Indstillinger for Google Maps apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Indlæser ... DocType: DocField,Password,Adgangskode apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,Dit system er ved at blive opdateret. Opdatér igen efter nogle få øjeblikke @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,Ingen tilsvarende data. Søg noget nyt DocType: Chat Profile,Away,Væk DocType: Currency,Fraction Units,Fraktion Enheder -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} fra {1} til {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} fra {1} til {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Marker som udført DocType: Chat Message,Type,Type DocType: Activity Log,Subject,Emne @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,Beløb baseret på Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Bruger er obligatorisk for Share DocType: DocField,Hidden,Skjult DocType: Web Form,Allow Incomplete Forms,Tillad Ufuldstændige formularer -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} skal indstilles først +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,PDF generation mislykkedes +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} skal indstilles først apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","Brug et par ord, undgå almindelige sætninger." DocType: Workflow State,plane,fly apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Hvis du uploader nye rekorder, "Navngivning Series" bliver obligatorisk, hvis den findes." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,Få Advarsler for dag -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DocType kan kun blive omdøbt af Administrator +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,Få Advarsler for dag +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DocType kan kun blive omdøbt af Administrator DocType: Chat Message,Chat Message,Chat besked apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},E-mail ikke verificeret med {0} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},ændrede værdi af {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},ændrede værdi af {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Hvis brugeren har nogen rolle kontrolleret, bliver brugeren en "systembruger". "Systembruger" har adgang til skrivebordet" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,Tjek din e-mail til verifikation -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,Fold kan ikke være i slutningen af formularen +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,Tjek din e-mail til verifikation +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,Fold kan ikke være i slutningen af formularen DocType: Communication,Bounced,Afviste DocType: Deleted Document,Deleted Name,slettet Navn apps/frappe/frappe/config/setup.py +14,System and Website Users,System- og hjemmesidebrugere @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,Doc status DocType: Data Migration Run,Pull Update,Træk opdatering DocType: Auto Email Report,No of Rows (Max 500),Antal rækker (Max 500) DocType: Language,Language Code,Sprogkode +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Bemærk: Som standard sendes e-mails for mislykkede sikkerhedskopier. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","Din download bliver bygget, kan det tage et øjeblik ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,Tilføj filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS sendt til følgende numre: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,Din bedømmelse: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} og {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,Start en samtale. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,Din bedømmelse: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto fra Opsætning> Email> E-mail-konto +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} og {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,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" DocType: Data Migration Run,Current Mapping Start,Nuværende Kortlægning Start apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,E-mail er blevet markeret som spam DocType: About Us Settings,Website Manager,Webmaster -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,Filoverførsel frakoblet. Prøv igen. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,Ugyldigt søgefelt +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,Filoverførsel frakoblet. Prøv igen. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,Oversættelser apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,Du har valgt Udkast eller Annullerede dokumenter -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},Dokumentet {0} er sat til at angive {1} ved {2} -apps/frappe/frappe/model/document.py +1211,Document Queued,dokument kø +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},Dokumentet {0} er sat til at angive {1} ved {2} +apps/frappe/frappe/model/document.py +1212,Document Queued,dokument kø DocType: GSuite Templates,Destination ID,Destinations-id DocType: Desktop Icon,List,Liste DocType: Activity Log,Link Name,Link Navn -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} i række {1} kan ikke skjules og obligatoriske uden standard +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} i række {1} kan ikke skjules og obligatoriske uden standard DocType: System Settings,mm/dd/yyyy,dd/mm/åååå -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,Forkert adgangskode: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,Forkert adgangskode: DocType: Print Settings,Send document web view link in email,Send dokument web view link i e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Din feedback til dokument {0} er gemt apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Forrige -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,Sv: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} rækker for {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,Sv: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} rækker for {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. For eksempel "Cent" apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,Forbindelsesnavn -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Vælg uploadet fil +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Vælg uploadet fil DocType: Letter Head,Check this to make this the default letter head in all prints,Afkryds dette for at gøre dette til den standard brev hovedet i alle udskrifter DocType: Print Format,Server,Server -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,Ny kanbantavle +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,Ny kanbantavle DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +122,No file attached,Ingen fil vedhæftet DocType: Version,Version,Version +DocType: S3 Backup Settings,Endpoint URL,Endpoint URL apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,Diagrammer DocType: User,Fill Screen,Udfyld skærm apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,Chat profil for bruger {user} eksisterer. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,Tilladelser anvendes automatisk til standardrapporter og søgninger. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,Upload mislykkedes -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,Edit via Upload +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,Edit via Upload apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokumenttype ..., fx kunde" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Tilstanden '{0}' er ugyldig DocType: Workflow State,barcode,stregkode @@ -486,22 +496,24 @@ DocType: Country,Country Name,Landenavn DocType: About Us Team Member,About Us Team Member,Om os Team medlem apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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 -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,Billede felt skal være en gyldig fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,Billede felt skal være en gyldig fieldname DocType: Chat Token,Token,Token DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (navn) på den virksomhed, hvis ejendommen skal indstilles" apps/frappe/frappe/limits.py +84,"To renew, {0}.","For at forny, {0}." 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 +129,App {0} already installed,App {0} er allerede installeret -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Ingen forhåndsvisning +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,Ingen forhåndsvisning DocType: Workflow State,exclamation-sign,udråbstegn-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Vis Tilladelser -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,Tidslinje felt skal være et link eller Dynamic Link +DocType: Data Import,New data will be inserted.,Nye data indsættes. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,Tidslinje felt skal være et link eller Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datointerval apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Side {0} af {1} DocType: About Us Settings,Introduce your company to the website visitor.,Introducere din virksomhed til hjemmesiden besøgende. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json",Krypteringsnøglen er ugyldig. Kontroller site_config.json +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json",Krypteringsnøglen er ugyldig. Kontroller site_config.json DocType: SMS Settings,Receiver Parameter,Modtager Parameter DocType: Data Migration Mapping Detail,Remote Fieldname,Fjern feltnavn DocType: Communication,To,Til @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,Skriftstørrelse DocType: System Settings,Disable Standard Email Footer,Deaktiver standard e-mail-sidefod DocType: Workflow State,facetime-video,FaceTime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 kommentar -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,har set +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,har set DocType: Notification,Days Before,Dage før DocType: Workflow State,volume-down,volumen-down -apps/frappe/frappe/desk/reportview.py +268,No Tags,Ingen tags +apps/frappe/frappe/desk/reportview.py +270,No Tags,Ingen tags DocType: DocType,List View Settings,List Vis Indstillinger DocType: Email Account,Send Notification to,Send meddelelse til DocType: DocField,Collapsible,Sammenklappelig apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Gemt -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Hvad har du brug for hjælp til? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,Hvad har du brug for hjælp til? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Muligheder for at vælge. Hver option på en ny linje. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,Permanent Annuller {0}? DocType: Workflow State,music,musik +DocType: Website Theme,Text Styles,Tekst Styles apps/frappe/frappe/www/qrcode.html +3,QR Code,QR kode -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,Senest ændret dato +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,Senest ændret dato DocType: Chat Profile,Settings,Indstillinger DocType: Print Format,Style Settings,style Indstillinger apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Y Axis Fields -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,Sorter feltet {0} skal være en gyldig fieldname -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,Mere +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,Sorter feltet {0} skal være en gyldig fieldname +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Mere DocType: Contact,Sales Manager,Salgschef -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,Omdøb +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,Omdøb DocType: Print Format,Format Data,Format af data DocType: List Filter,Filter Name,Filtreringsnavn apps/frappe/frappe/utils/bot.py +91,Like,Lignende @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,Chat room navn DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,"Kontrollere, hvilke dokumenter er læses af en bruger" DocType: Deleted Document,Hub Sync ID,Hub Sync ID -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,bruge% som wildcard +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,bruge% som wildcard DocType: Auto Repeat,Quarterly,Kvartalsvis apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail Domæne ikke konfigureret til denne konto, Opret en?" DocType: User,Reset Password Key,Nulstil adgangskode @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Mindste adgangskode score DocType: DocType,Fields,Felter DocType: System Settings,Your organization name and address for the email footer.,Dit firmas navn og adresse til e-mail-sidefoden. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Parent Table +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,Parent Table apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3 Backup komplet! apps/frappe/frappe/config/desktop.py +60,Developer,Udvikler -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,Oprettet +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,Oprettet apps/frappe/frappe/client.py +101,No permission for {doctype},Ingen tilladelse til {doctype} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{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/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,Forfædre af apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Root {0} kan ikke slettes apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,Ingen kommentarer endnu apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings","Indstil venligst SMS, før du indstiller det som en godkendelsesmetode, via SMS-indstillinger" @@ -576,6 +590,7 @@ DocType: Contact,Open,Aktiv DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Definerer handlinger på stater og det næste skridt og tilladte roller. DocType: Data Migration Mapping,Remote Objectname,Fjern objektnavn apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Som en bedste praksis, ikke tildele samme sæt tilladelse regel på forskellige roller. I stedet indstille flere roller til samme bruger." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,Bekræft venligst din handling til {0} dette dokument. DocType: Success Action,Next Actions HTML,Næste handlinger HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,Kun {0} emailet rapporter er tilladt per bruger DocType: Address,Address Title,Adresse Titel @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,Standardværdi DocType: Auto Repeat,Daily,Daglig apps/frappe/frappe/config/setup.py +19,User Roles,Brugerroller DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Ejendom Setter tilsidesætter en standard DocType eller Field ejendom -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,Kan ikke opdatere: Forkert / Udløbet Link. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,Kan ikke opdatere: Forkert / Udløbet Link. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,Bedre tilføje et par flere bogstaver eller et andet ord apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},One Time Password (OTP) registreringskode fra {} DocType: DocField,Set Only Once,Sæt kun én gang DocType: Email Queue Recipient,Email Queue Recipient,Email Kø Modtager DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,Webhook URL -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,Brugernavn {0} findes allerede -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,{0}: Kan ikke sætte import som {1} er ikke kan indporteres +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Brugernavn {0} findes allerede +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,{0}: Kan ikke sætte import som {1} er ikke kan indporteres apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},Der er en fejl i din adresseskabelon {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',{0} er en ugyldig e-mail-adresse i 'Modtagere' DocType: User,Allow Desktop Icon,Tillad desktop ikon DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Vært -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Kolonne {0} findes allerede. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,Kolonne {0} findes allerede. DocType: ToDo,High,Høj DocType: S3 Backup Settings,Secret Access Key,Secret Access Key apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Mand -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret er blevet nulstillet. Re-registrering vil blive påkrævet ved næste login. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret er blevet nulstillet. Re-registrering vil blive påkrævet ved næste login. DocType: Communication,From Full Name,Fra Navn -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Du behøver ikke have adgang til Rapporter: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},Du behøver ikke have adgang til Rapporter: {0} DocType: User,Send Welcome Email,Send velkomst-e-mail -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,Fjern Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,Fjern Filter +DocType: Web Form Field,Show in filter,Vis i filter DocType: Address,Daman and Diu,Daman og Diu -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,Sag +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,Sag DocType: Address,Personal,Personlig apps/frappe/frappe/config/setup.py +125,Bulk Rename,Bulk Omdøb DocType: Email Queue,Show as cc,Vis som cc @@ -625,12 +641,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,Ikke i Udviklings-tilstand apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,Fil backup er klar DocType: DocField,In Global Search,I Global Search +DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,led-venstre apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,Det er risikabelt at slette denne fil: {0}. Kontakt din systemadministrator. DocType: Currency,Currency Name,Valuta Navn apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,Ingen e-mails -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,Link udløbet -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,Vælg Filformat +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} år siden +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,Link udløbet +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,Vælg Filformat DocType: Report,Javascript,Javascript DocType: File,Content Hash,Indhold Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Gemmer JSON af sidste kendte versioner af forskellige installerede apps. Det bruges til at vise release notes. @@ -642,16 +660,15 @@ DocType: Auto Repeat,Stopped,Stoppet apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,Ikke fjerne apps/frappe/frappe/desk/like.py +89,Liked,Kunne lide apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Send nu -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan ikke have standard udskriftsformat, brug Tilpas formular" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan ikke have standard udskriftsformat, brug Tilpas formular" DocType: Report,Query,Forespørgsel DocType: DocType,Sort Order,Sorteringsrækkefølge -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},'I Listevisning' ikke tilladt for type {0} i række {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},'I Listevisning' ikke tilladt for type {0} i række {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Vælg den etiket, hvorefter du vil indsætte nyt felt." ,Document Share Report,Dokument Del Report DocType: Social Login Key,Base URL,Basiswebadresse DocType: User,Last Login,Sidste log ind apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},Du kan ikke angive 'Oversættelig' for felt {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},Feltnavn kræves i række {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolonne DocType: Chat Profile,Chat Profile,Chat profil DocType: Custom Field,Adds a custom field to a DocType,Tilføjer et brugerdefineret felt til et DocType @@ -660,6 +677,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,Vælg mindst en post til udskrivning apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,Indstil først navnet og gem posten. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Delt med {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,Afmeld abonnement DocType: View log,Reference Name,Henvisning Navn @@ -681,17 +699,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Muli apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} til {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Log af fejl under anmodninger. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} er blevet føjet til e-mailgruppen. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,"Rediger ikke overskrifter, der er forudindstillet i skabelonen" +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,"Rediger ikke overskrifter, der er forudindstillet i skabelonen" apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},Login Bekræftelseskode fra {} DocType: Address,Uttar Pradesh,Uttar Pradesh +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,Bemærk: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,Importstatus -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,Lav fil (er) private eller offentlige? +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,Lav fil (er) private eller offentlige? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Planlagt at sende til {0} DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Alle DocType: Workflow State,backward,bagud -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Kun én regel tilladt med samme rolle, niveau og {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Kun én regel tilladt med samme rolle, niveau og {1}" DocType: Email Queue,Add Unsubscribe Link,Tilføj Afmeld link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Ingen kommentarer endnu. Start en ny diskussion. DocType: Workflow State,share,andel @@ -703,6 +722,7 @@ DocType: User,Last IP,Sidste IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Forny / opgradering apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,Et nyt dokument {0} er blevet delt af dig {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector +DocType: Email Account,Track Email Status,Spor Email Status DocType: Note,Notify Users On Every Login,Underrette brugere om hver login DocType: PayPal Settings,API Password,API adgangskode apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Indtast python-modul eller vælg forbindelsestype @@ -711,6 +731,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Sidst opd apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Se Abonnenter DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,"Kan ikke slette filen, da den tilhører {0} {1}, som du ikke har tilladelser til" +DocType: Website Theme,Custom JS,Brugerdefineret JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Fru DocType: Website Theme,Background Color,Baggrundsfarve apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,Der var fejl under afsendelse af e-mail. Prøv venligst igen. @@ -719,21 +740,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,Kortlægning DocType: Web Page,0 is highest,0 er højest apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,Er du sikker på du vil linke denne kommunikation til {0}? -apps/frappe/frappe/www/login.html +86,Send Password,Send adgangskode +apps/frappe/frappe/www/login.html +87,Send Password,Send adgangskode +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Venligst opsæt standard e-mail-konto fra Opsætning> Email> E-mail-konto +DocType: Print Settings,Server IP,Server IP DocType: Email Queue,Attachments,Vedhæftede filer apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Du behøver ikke tilladelser til at få adgang dette dokument DocType: Language,Language Name,Sprognavn DocType: Email Group Member,Email Group Member,E-mailgruppemedlem +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,Din konto er blevet låst og vil genoptage efter {0} sekunder apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,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 +313,Duplicate name {0} {1},Duplicate navn {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},Duplicate navn {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,Prøve igen DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Skjul feltet i rapportgeneratoren apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,Du har en ny besked fra: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Rediger HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,Indtast venligst omdirigeringswebadresse -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Opsætning> Brugerrettigheder apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","at blive genereret. Hvis forsinket, skal du manuelt ændre feltet "Gentag på dag i måneden" her" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,Gendan originale tilladelser @@ -758,23 +781,25 @@ DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Svar Hjælp apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapportgeneratorens rapporter administreres direkte af rapportgeneratoren. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Bekræft din e-mail adresse -apps/frappe/frappe/model/document.py +1056,none of,ingen af +apps/frappe/frappe/model/document.py +1057,none of,ingen af apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,Send mig en kopi DocType: Dropbox Settings,App Secret Key,App Secret Key DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Internetside apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Markerede elementer vil blive vist på skrivebordet -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} kan ikke indstilles for Single typer +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} kan ikke indstilles for Single typer DocType: Data Import,Data Import,Dataimport apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,Konfigurer diagram apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} kigger i øjeblikket på dette dokument DocType: ToDo,Assigned By Full Name,Tildelt af navn apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} opdateret -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,Rapporten kan ikke indstilles for Single typer +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,Rapporten kan ikke indstilles for Single typer +DocType: System Settings,Allow Consecutive Login Attempts ,Tillad på hinanden følgende loginforsøg apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,Der opstod en fejl under betalingsprocessen. Kontakt os venligst. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,{0} dage siden DocType: Email Account,Awaiting Password,Afventer adgangskode DocType: Address,Address Line 1,Adresse +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,Ikke Efterkommere af DocType: Custom DocPerm,Role,Rolle apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Indstillinger ... apps/frappe/frappe/utils/data.py +507,Cent,Cent @@ -794,10 +819,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,Stands DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link til den side, du vil åbne. Efterlad tom, hvis du ønsker at gøre det til en gruppe forældre." DocType: DocType,Is Single,Er Single -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,Tilmeld er deaktiveret -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} har forladt samtalen i {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,Tilmeld er deaktiveret +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} har forladt samtalen i {1} {2} DocType: Blogger,User ID of a Blogger,Bruger ID på en Blogger -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,Der bør være mindst én systemadministrator tilbage +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,Der bør være mindst én systemadministrator tilbage DocType: GCalendar Account,Authorization Code,Authorization Code DocType: PayPal Settings,Mention transaction completion page URL,Nævn transaktion færdiggørelse webadresse DocType: Help Article,Expert,Ekspert @@ -818,8 +843,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","For at tilføje dynamisk emne, brug Jinja tags som
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,Tilføj brugertilladelser +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},Ugyldigt søgefelt {0} DocType: User,Modules HTML,Moduler HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Spørg om din e-mail er blevet åbnet af modtageren.
Bemærk: Hvis du sender til flere modtagere, selvom 1 modtager læser e-mailen, betragtes den som "Åbnet"" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,Manglende værdier skal angives DocType: DocType,Other Settings,Andre indstillinger DocType: Data Migration Connector,Frappe,frappe @@ -829,15 +857,13 @@ DocType: Customize Form,Change Label (via Custom Translation),Skift Label (via b apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Ingen tilladelse til {0} {1} {2} DocType: Address,Permanent,Permanent apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,Bemærk: Andre tilladelser kan også gælde -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/templates/emails/print_link.html +2,View this in your browser,Se i din browser DocType: DocType,Search Fields,Søg Felter DocType: System Settings,OTP Issuer Name,OTP Udsteder Navn DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bærer token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ingen dokument valgt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr. -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,Du er forbundet til internettet. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,Du er forbundet til internettet. DocType: Social Login Key,Enable Social Login,Aktivér social login DocType: Event,Event,Begivenhed apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:","Den {0}, {1} skrev:" @@ -852,7 +878,7 @@ DocType: Print Settings,In points. Default is 9.,I point. Standard er 9. DocType: OAuth Client,Redirect URIs,Omdiriger URI'er apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},Indsender {0} DocType: Workflow State,heart,hjerte -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,Gammelt kodeord er påkrævet. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,Gammelt kodeord er påkrævet. DocType: Role,Desk Access,Adgang til skrivebord DocType: Workflow State,minus,minus DocType: S3 Backup Settings,Bucket,Spand @@ -860,8 +886,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,Kan ikke indlæse kamera. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,Velkomst-e-mail sendt apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,Lad os forberede systemet til første brug. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,Allerede registreret +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,Allerede registreret DocType: System Settings,Float Precision,Float Precision +DocType: Notification,Sender Email,Afsender Email apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Kun Administrator kan redigere apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Filnavn DocType: DocType,Editable Grid,Redigerbar Grid @@ -872,17 +899,19 @@ DocType: Communication,Clicked,Klikkede apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planlagt til at sende DocType: DocType,Track Seen,Track Set -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,Denne fremgangsmåde kan kun bruges til at oprette en kommentar med +DocType: Dropbox Settings,File Backup,Filbackup +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,Denne fremgangsmåde kan kun bruges til at oprette en kommentar med DocType: Kanban Board Column,orange,orange apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,Ingen {0} fundet apps/frappe/frappe/config/setup.py +259,Add custom forms.,Tilføj brugerdefinerede formularer. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} i {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,godkendte dette dokument +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,godkendte dette dokument apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systemet giver mange foruddefinerede roller. Du kan tilføje nye roller at indstille finere tilladelser. DocType: Communication,CC,CC DocType: Country,Geo,Geo +DocType: Data Migration Run,Trigger Name,Udløsernavn DocType: Blog Category,Blog Category,Blog Kategori -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,"Kan ikke kort, fordi følgende betingelse mislykkes:" +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,"Kan ikke kort, fordi følgende betingelse mislykkes:" DocType: Role Permission for Page and Report,Roles HTML,Roller HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Vælg først et varemærkebillede. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Aktiv @@ -906,16 +935,17 @@ DocType: Address,Other Territory,Andet territorium ,Messages,Meddelelser apps/frappe/frappe/config/website.py +83,Portal,Portal DocType: Email Account,Use Different Email Login ID,Brug forskellige e-mail-login-id -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,Skal angive et Query til at køre +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,Skal angive et Query til at køre apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Der ser ud til at være et problem med serverens braintree-konfiguration. Du skal ikke bekymre dig, i tilfælde af fiasko vil beløbet blive refunderet til din konto." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,Administrer tredjepartsapps apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","Sprog, dato og klokkeslæt" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Opsætning> Brugerrettigheder DocType: User Email,User Email,Bruger e-mail DocType: Event,Saturday,Lørdag DocType: User,Represents a User in the system.,Repræsenterer en bruger i systemet. DocType: Communication,Label,Label -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Opgaven {0}, som du har tildelt til {1}, er blevet lukket." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,Luk dette vindue +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","Opgaven {0}, som du har tildelt til {1}, er blevet lukket." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,Luk dette vindue DocType: Print Format,Print Format Type,Print Format Type DocType: Newsletter,A Lead with this Email Address should exist,Et emne med denne e-mailadresse skal eksistere apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Open Source-løsninger til internettet @@ -931,8 +961,8 @@ DocType: Data Export,Excel,Excel apps/frappe/frappe/templates/emails/password_update.html +2,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: Feedback Trigger,Condition,Tilstand -apps/frappe/frappe/utils/data.py +619,{0} hours ago,{0} timer siden -apps/frappe/frappe/utils/data.py +629,1 month ago,1 måned siden +apps/frappe/frappe/utils/data.py +621,{0} hours ago,{0} timer siden +apps/frappe/frappe/utils/data.py +631,1 month ago,1 måned siden DocType: Contact,User ID,Bruger-id DocType: Communication,Sent,Sent DocType: Address,Kerala,Kerala @@ -951,7 +981,7 @@ DocType: GSuite Templates,Related DocType,Relateret DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Rediger for at tilføje indhold apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,Vælg sprog apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,Kortoplysninger -apps/frappe/frappe/__init__.py +538,No permission for {0},Ingen tilladelse til {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},Ingen tilladelse til {0} DocType: DocType,Advanced,Avanceret apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,Synes API Key eller API Secret er forkert !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Reference: {0} {1} @@ -961,13 +991,13 @@ DocType: Address,Address Type,Adressetype apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,"Ugyldigt brugernavn eller support adgangskode. Venligst rette, og prøv igen." DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Dit abonnement udløber i morgen. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,Fejl i meddelelse +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,Fejl i meddelelse apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Fru apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Opdateret {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Master DocType: DocType,User Cannot Create,Brugeren må ikke oprette apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,Folder {0} findes ikke -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,Dropbox adgang er godkendt! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,Dropbox adgang er godkendt! DocType: Customize Form,Enter Form Type,Indtast Form Type apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Manglende parameter Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Ingen poster markeret. @@ -976,14 +1006,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,Send meddelelse vedr. opdateret adgangskode apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","At tillade DocType, DocType. Vær forsigtig!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Tilpassede formater til udskrivning, e-mail" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,Opdateret Til Ny version +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,Opdateret Til Ny version DocType: Custom Field,Depends On,Afhænger af DocType: Kanban Board Column,Green,Grøn DocType: Custom DocPerm,Additional Permissions,Yderligere tilladelser DocType: Email Account,Always use Account's Email Address as Sender,Brug altid kontos e-mail-adresse som afsender apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Login for at kommentere -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Begynde at indtaste data under denne linje -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},ændrede værdier for {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,Begynde at indtaste data under denne linje +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},ændrede værdier for {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","E-mail-id skal være unikt, E-mail-konto eksisterer allerede \ for {0}" DocType: Workflow State,retweet,retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Tilpas ... DocType: Print Format,Align Labels to the Right,Juster etiketter til højre @@ -1002,39 +1034,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,Redige DocType: Workflow Action Master,Workflow Action Master,Workflow Action Master DocType: Custom Field,Field Type,Field Type apps/frappe/frappe/utils/data.py +537,only.,alene. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,OTP-hemmeligheden kan kun nulstilles af administratoren. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,OTP-hemmeligheden kan kun nulstilles af administratoren. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,"Undgå år, der er forbundet med dig." apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,Begræns bruger for specifikt dokument DocType: GSuite Templates,GSuite Templates,GSuite Skabeloner +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,Faldende apps/frappe/frappe/utils/goal.py +110,Goal,Goal apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,"Ugyldig Mail Server. Venligst rette, og prøv igen." DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","For links Indtast DocType interval. For Vælg, indtast liste over muligheder, hver på en ny linje." DocType: Workflow State,film,film -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},Ingen tilladelse til at læse {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},Ingen tilladelse til at læse {0} apps/frappe/frappe/config/desktop.py +8,Tools,Værktøj apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,Undgå senere år. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,Flere root noder er ikke tilladt. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Hvis aktiveret, vil brugerne blive underrettet hver gang de logger ind. Hvis ikke aktiveret, meddeles brugerne kun en gang." -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,Ugyldig {0} betingelse +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,Ugyldig {0} betingelse DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Hvis markeret, vil brugerne ikke se dialogboksen Bekræft Access." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID felt er påkrævet at redigere værdier ved hjælp af rapporten. Vælg ID-feltet ved hjælp af kolonne Picker apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Kommentarer -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,Bekræft -apps/frappe/frappe/www/login.html +58,Forgot Password?,Glemt adgangskode? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,Bekræft +apps/frappe/frappe/www/login.html +59,Forgot Password?,Glemt adgangskode? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py +19,ID,ID apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,Server Fejl -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Brugernavn skal angives +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Brugernavn skal angives DocType: Website Slideshow,Website Slideshow,Website Slideshow apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,Ingen data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link, der er hjemmesiden startside. Standard Links (indeks, login, produkter, blog, om, kontakt)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Godkendelse mislykkedes mens modtage e-mails fra e-mail-konto {0}. Meddelelse fra serveren: {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Godkendelse mislykkedes mens modtage e-mails fra e-mail-konto {0}. Meddelelse fra serveren: {1} DocType: Custom Field,Custom Field,Tilpasset Field -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,Angiv venligst hvilken dato felt skal kontrolleres +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,Angiv venligst hvilken dato felt skal kontrolleres DocType: Custom DocPerm,Set User Permissions,Redigér brugertilladelser apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},Ikke tilladt for {0} = {1} DocType: Email Account,Email Account Name,E-mailkontonavn -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,"Noget gik galt, mens du genererede dropbox access token. Kontroller fejllogg for flere detaljer." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,"Noget gik galt, mens du genererede dropbox access token. Kontroller fejllogg for flere detaljer." DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Nyhedsbreve til kontakter, emner." DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","fx "Support", "Salg", "Jerry Yang"" @@ -1043,19 +1077,20 @@ DocType: DocField,Description,Beskrivelse DocType: Print Settings,Repeat Header and Footer in PDF,Gentag sidehoved og sidefod i PDF DocType: Address Template,Is Default,Er standard DocType: Data Migration Connector,Connector Type,Tilslutningstype -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,Kolonnenavn kan ikke være tomt -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},Fejl under forbindelse til e-mail-konto {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,Kolonnenavn kan ikke være tomt +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},Fejl under forbindelse til e-mail-konto {0} DocType: Workflow State,fast-forward,hurtigt fremad DocType: Communication,Communication,Kommunikation apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Tjek kolonner for at vælge, trække for at sætte orden." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,"Dette er PERMANENT handling, og du kan ikke fortryde. Fortsæt?" apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,Login og visning i Browser DocType: Event,Every Day,Hver dag DocType: LDAP Settings,Password for Base DN,Password til Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,tabel Field -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,Kolonner baseret på +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,Kolonner baseret på apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,Indtast nøgler for at aktivere integration med Google GSuite DocType: Workflow State,move,flytte -apps/frappe/frappe/model/document.py +1254,Action Failed,Handling mislykkedes +apps/frappe/frappe/model/document.py +1255,Action Failed,Handling mislykkedes DocType: List Filter,For User,For bruger DocType: View log,View log,Se log apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,Kontoplan @@ -1063,11 +1098,11 @@ DocType: Address,Assam,Assam apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Du har {0} dage tilbage i dit abonnement apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Udgående e-mail-konto er ikke korrekt DocType: Transaction Log,Chaining Hash,Chaining Hash -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,Temperorily Disabled +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,Temperorily Disabled apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,Angiv e-mail adresse DocType: System Settings,Date and Number Format,Dato og nummerformat -apps/frappe/frappe/model/document.py +1055,one of,en af -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,Kontrol ene øjeblik +apps/frappe/frappe/model/document.py +1056,one of,en af +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,Kontrol ene øjeblik apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Vis Tags DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Hvis Anvend Strengt Bruger Tilladelse er markeret, og Bruger Tilladelse er defineret for en DocType til en Bruger, vil alle de dokumenter, hvor værdien af linket er tom, ikke blive vist til den bruger" DocType: Address,Billing,Fakturering @@ -1078,7 +1113,7 @@ DocType: User,Middle Name (Optional),Mellemnavn (valgfrit) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,Ikke Tilladt apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,Følgende felter skal udfyldes: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,Første transaktion -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,Du har ikke rettigheder til at fuldføre handlingen +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,Du har ikke rettigheder til at fuldføre handlingen apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Ingen resultater DocType: System Settings,Security,Sikkerhed apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Planlagt at sende til {0} modtagere @@ -1099,6 +1134,7 @@ DocType: Kanban Board Column,lightblue,lyseblå apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Samme felt er indtastet mere end én gang apps/frappe/frappe/templates/includes/list/filters.html +19,clear,klar apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Hverdagsbegivenheder skal starte og slutte på samme dag. +DocType: Prepared Report,Filter Values,Filtrer værdier DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,Svigte DocType: Workflow State,download-alt,Download-alt @@ -1106,13 +1142,13 @@ DocType: Data Migration Run,Pull Failed,Træk mislykkedes DocType: Communication,Feedback Request,Feedback Request apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,Importer data fra CSV / Excel-filer. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Følgende områder mangler: -apps/frappe/frappe/www/login.html +28,Sign in,Log ind +apps/frappe/frappe/www/login.html +29,Sign in,Log ind apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},Annullering {0} DocType: Web Page,Main Section,Main Section DocType: Page,Icon,Ikon -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","Tip: Medtag symboler, tal og store bogstaver i adgangskoden" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","Tip: Medtag symboler, tal og store bogstaver i adgangskoden" DocType: DocField,Allow in Quick Entry,Tillad i hurtig indtastning -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/åååå apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite script test DocType: System Settings,Backups,Sikkerhedskopier @@ -1129,23 +1165,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,Ikke en gyl DocType: Footer Item,Target,Target DocType: System Settings,Number of Backups,Antal sikkerhedskopier DocType: Website Settings,Copyright,Copyright -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Gå +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,Gå DocType: OAuth Authorization Code,Invalid,Ugyldigt DocType: ToDo,Due Date,Forfaldsdato apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,Quarter Dag DocType: Website Settings,Hide Footer Signup,Skjul Footer Tilmelding -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,annulleret dette dokument +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,annulleret dette dokument apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Skriv en Python-fil i den samme mappe, hvor det er gemt og returnere kolonnen og resultat." +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,Tilføj til tabel DocType: DocType,Sort Field,Sort Field DocType: Razorpay Settings,Razorpay Settings,Razorpay Indstillinger -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,Rediger filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,Field {0} af typen {1} kan ikke være obligatorisk +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,Rediger filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,Field {0} af typen {1} kan ikke være obligatorisk apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Tilføj mere DocType: System Settings,Session Expiry Mobile,Session Udløb Mobile apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,Forkert bruger eller adgangskode apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,Søgeresultater for apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,Indtast venligst adgangstoken-URL -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,Vælg Download: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,Vælg Download: DocType: Notification,Slack,slack DocType: Custom DocPerm,If user is the owner,Hvis bruger er ejeren ,Activity,Aktivitet @@ -1154,7 +1191,7 @@ DocType: User Permission,Allow,Give lov til apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,Undgå gentagne ord og tegn DocType: Communication,Delayed,Forsinket apps/frappe/frappe/config/setup.py +140,List of backups available for download,Liste over sikkerhedskopier til rådighed for download -apps/frappe/frappe/www/login.html +71,Sign up,Tilmeld dig +apps/frappe/frappe/www/login.html +72,Sign up,Tilmeld dig apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,Række {0}: Ikke tilladt at deaktivere Obligatorisk for standardfelter DocType: Test Runner,Output,Produktion DocType: Notification,Set Property After Alert,Indstil ejendom efter advarsel @@ -1165,7 +1202,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,Filtype DocType: Workflow State,leaf,blad DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,Ryd brugerindstillinger DocType: Contact Us Settings,Email ID,E-mail-id DocType: Activity Log,Keep track of all update feeds,Hold styr på alle opdateringsfeeds DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"En liste over ressourcer, som Client App vil have adgang til, efter at brugeren tillader det.
fx projekt" @@ -1175,7 +1211,7 @@ DocType: Error Snapshot,Timestamp,Tidsstempel DocType: Patch Log,Patch Log,Patch Log DocType: Data Migration Mapping,Local Primary Key,Lokal primærnøgle apps/frappe/frappe/utils/bot.py +164,Hello {0},Hej {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},Velkommen til {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},Velkommen til {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Tilføj apps/frappe/frappe/www/me.html +40,Profile,Profil DocType: Communication,Sent or Received,Sendt eller modtaget @@ -1199,7 +1235,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,Opsætning til DocType: Workflow State,minus-sign,minus-tegn apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,Ikke fundet -apps/frappe/frappe/www/printview.py +200,No {0} permission,Ingen {0} tilladelser +apps/frappe/frappe/www/printview.py +199,No {0} permission,Ingen {0} tilladelser apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,Udlæs brugerdefinerede tilladelser DocType: Data Export,Fields Multicheck,Felter Multicheck DocType: Activity Log,Login,Log ind @@ -1207,7 +1243,7 @@ DocType: Web Form,Payments,Betalinger apps/frappe/frappe/www/qrcode.html +9,Hi {0},Hej {0} DocType: System Settings,Enable Scheduled Jobs,Aktiver planlagte Jobs apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,Bemærkninger: -apps/frappe/frappe/www/message.html +65,Status: {0},Status: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},Status: {0} DocType: DocShare,Document Name,Dokumentnavn apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Marker som spam DocType: ToDo,Medium,Medium @@ -1225,7 +1261,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},Navn {0} kan i apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Fra dato apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Succes apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},Feedback Anmodning om {0} sendes til {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,Sessionen er udløbet +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,Sessionen er udløbet DocType: Kanban Board Column,Kanban Board Column,Kanbantavlekolonne apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,Lige rækker af taster er nemme at gætte DocType: Communication,Phone No.,Telefonnr. @@ -1248,17 +1284,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},Ignoreret: {0} til {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,Logger fejl på automatiserede begivenheder (skeduleringen). -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),Ikke en gyldig kommaseparerede værdier (CSV fil) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),Ikke en gyldig kommaseparerede værdier (CSV fil) DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Standard Indgående DocType: Workflow State,repeat,gentagelse DocType: Website Settings,Banner,Banner 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/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hjælp til søgning -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,Registrerede men deaktiveret +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,Registrerede men deaktiveret DocType: DocType,Hide Copy,Skjul Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,Ryd alle roller -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} skal være entydigt +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} skal være entydigt apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,Række apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","CC, BCC & Email Template" DocType: Data Migration Mapping Detail,Local Fieldname,Lokalt feltnavn @@ -1266,7 +1302,7 @@ DocType: User Permission,Linked Doctypes,Tilknyttede typer DocType: DocType,Track Changes,Spor ændringer DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,Offline -DocType: Razorpay Settings,API Key,API Key +DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Send afmeldelsesbesked i e-mail apps/frappe/frappe/public/js/frappe/form/toolbar.js +82,Edit Title,Rediger titel apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,Installer apps @@ -1274,6 +1310,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,"Dokumenter, der er tildelt til dig og af dig." DocType: User,Email Signature,Mailsignatur DocType: Website Settings,Google Analytics ID,Google Analytics-id +DocType: Web Form,"For help see Client Script API and Examples","For hjælp se Client Script API og eksempler" DocType: Website Theme,Link to your Bootstrap theme,Link til din Bootstrap tema DocType: Custom DocPerm,Delete,Slet apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},Ny {0} @@ -1283,10 +1320,10 @@ DocType: Print Settings,PDF Page Size,PDF-sidestørrelse DocType: Data Import,Attach file for Import,Vedhæft fil til Import DocType: Communication,Recipient Unsubscribed,Modtager afmeldt DocType: Feedback Request,Is Sent,Er sendt -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,Om +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,Om apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.","Til opdatering, kan du opdatere kun selektive kolonner." DocType: Chat Token,Country,Land -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,Adresser +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,Adresser DocType: Communication,Shared,Delt apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,Vedhæft dokument Print DocType: Bulk Update,Field,Felt @@ -1297,12 +1334,12 @@ DocType: Chat Message,URLs,URL'er DocType: Data Migration Run,Total Pages,Samlede sider DocType: DocField,Attach Image,Vedhæft billede DocType: Workflow State,list-alt,liste-alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,Adgangskode opdateret +apps/frappe/frappe/www/update-password.html +79,Password Updated,Adgangskode opdateret apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,Skridt til at bekræfte dit login apps/frappe/frappe/utils/password.py +50,Password not found,Adgangskode ikke fundet DocType: Data Migration Mapping,Page Length,Sidelængde DocType: Email Queue,Expose Recipients,Expose modtagere -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,Vedlægge er obligatorisk for indkommende mails +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,Vedlægge er obligatorisk for indkommende mails DocType: Contact,Salutation,Titel DocType: Communication,Rejected,Afvist apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,Fjern Tag @@ -1313,14 +1350,14 @@ DocType: User,Set New Password,Set ny adgangskode apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},Feltnavn {0} forekommer flere gange i rækker {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} fra {1} til {2} i rækkenr. {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},Feltnavn {0} forekommer flere gange i rækker {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{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 +32,Seems token you are using is invalid!,Synes token du bruger er ugyldig! DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Antal kolonner for et felt i en Grid (Total kolonner i et gitter skal være mindre end 11) DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Maks Attachment Size (i MB) -apps/frappe/frappe/www/login.html +75,Have an account? Login,Har du en konto? Log ind +apps/frappe/frappe/www/login.html +76,Have an account? Login,Har du en konto? Log ind apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Ukendt Print Format: {0} DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},Bruger ikke lov til at slette {0}: {1} @@ -1332,30 +1369,30 @@ DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Scriptkode apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,Opret bruger e-mail -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,Ingen tilladelser angivet +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,Ingen tilladelser angivet apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} ikke fundet DocType: Custom Role,Custom Role,Tilpasset rolle apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Forside / Test Mappe 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,Gem venligst dokumentet før du uploader. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,Indtast din adgangskode +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,Indtast din adgangskode DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Social Login Key,Social Login Provider,Social Login Provider apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Tilføj en kommentar -apps/frappe/frappe/core/doctype/data_import/importer.py +81,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. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,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. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,Edit DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,Afmeldt fra nyhedsbrev -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,Fold skal komme før en sektion Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,Fold skal komme før en sektion Break apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Under udvikling apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,Gå til dokumentet apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,Senest ændret af apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,Tilpasninger Nulstil DocType: Workflow State,hand-down,hånd-down DocType: Address,GST State,GST-stat -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0}: Kan ikke indstille Annuller uden Indsend +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0}: Kan ikke indstille Annuller uden Indsend DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Omdirigere URI Bundet Til Auth Code DocType: DocType,Is Submittable,Kan godkendes -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,Nyt omtale +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,Nyt omtale apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Værdi for en kontrol felt kan være enten 0 eller 1 apps/frappe/frappe/model/document.py +733,Could not find {0},Kunne ikke finde {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,Kolonne Etiketter: @@ -1375,7 +1412,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,Gruppe DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Vælg target = "_blank" for at åbne i en ny side. apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,Databasestørrelse: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,Permanent slette {0}? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,Permanent slette {0}? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,Samme fil er allerede knyttet til posten apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} er ikke en gyldig arbejdsgangsstatus. Opdater din Workflow og prøv igen. DocType: Workflow State,wrench,skruenøgle @@ -1389,27 +1426,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Tilføj kommentar DocType: DocField,Mandatory,Obligatorisk apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul til udlæsning -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0}: Ingen grundlæggende tilladelser sat +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0}: Ingen grundlæggende tilladelser sat apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,Dit abonnement udløber den {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},Downloadlink til din sikkerhedskopi vil blive sendt til følgende e-mail-adresse: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Betydning af Godkend, Annuller, Tilføj" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,To Do DocType: Test Runner,Module Path,Modulvej DocType: Social Login Key,Identity Details,Identitetsoplysninger +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),Derefter sortér efter (valgfrit) DocType: File,Preview HTML,Eksempel HTML DocType: Desktop Icon,query-report,query-rapport -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Tildelt til {0}: {1} DocType: DocField,Percent,Procent apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,Forbundet med apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,Rediger indstillinger for automatisk e-mail-rapport DocType: Chat Room,Message Count,Besked Count DocType: Workflow State,book,bog +DocType: Communication,Read by Recipient,Læs af modtager DocType: Website Settings,Landing Page,Startside apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Fejl i Tilpasset Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} Navn apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,Ingen Tilladelser sat for dette kriterium. DocType: Auto Email Report,Auto Email Report,Auto Email Report -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,Slet kommentar? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,Slet kommentar? DocType: Address Template,This format is used if country specific format is not found,"Dette format bruges, hvis det landespecifikke format ikke findes" DocType: System Settings,Allow Login using Mobile Number,Tillad login ved hjælp af mobilnummer apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,Du har ikke nok rettigheder til at få adgang til denne ressource. Kontakt din leder for at få adgang. @@ -1426,7 +1464,7 @@ DocType: Letter Head,Printing,Udskrivning DocType: Workflow State,thumbs-up,thumbs-up DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Skrifttyper -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,Præcision skal være mellem 1 og 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,Præcision skal være mellem 1 og 6 apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,og apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},Denne rapport blev genereret den {0} @@ -1438,16 +1476,16 @@ DocType: Auto Email Report,Report Filters,rapportfiltre apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,nu DocType: Workflow State,step-backward,trin-bagud apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{App_title} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,Venligst sæt Dropbox genvejstaster i dit site config +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,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 +16,Delete this record to allow sending to this email address,Slet denne rekord for at tillade at sende denne e-mail-adresse apps/frappe/frappe/core/doctype/data_import/exporter.py +67,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/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,Kan ikke opdatere begivenhed -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,Betaling fuldført +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,Kan ikke opdatere begivenhed +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,Betaling fuldført apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,Verifikationskoden er blevet sendt til din registrerede emailadresse. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,drosles -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtret skal have 4 værdier (doktype, feltnavn, operatør, værdi): {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,drosles +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtret skal have 4 værdier (doktype, feltnavn, operatør, værdi): {0}" apps/frappe/frappe/utils/bot.py +89,show,at vise -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},Ugyldigt feltnavn {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},Ugyldigt feltnavn {0} DocType: Address Template,Address Template,Adresseskabelon DocType: Workflow State,text-height,tekst-højde DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Data Migration Plan Mapping @@ -1457,13 +1495,14 @@ DocType: Workflow State,map-marker,map-markør apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Indberet et problem DocType: Event,Repeat this Event,Gentag denne begivenhed DocType: Address,Maintenance User,Vedligeholdelsesbruger +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,Sorteringsindstillinger apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,"Undgå datoer og år, der er forbundet med dig." DocType: Custom DocPerm,Amend,Ændre DocType: Data Import,Generated File,Genereret fil DocType: Transaction Log,Previous Hash,Forrige Hash DocType: File,Is Attachments Folder,Er Vedhæftede filer Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,Udvid alle -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,Vælg en chat for at starte meddelelsen. +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,Vælg en chat for at starte meddelelsen. apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,Vælg venligst Entity Type først apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,Gyldig login id påkrævet. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,Vælg en gyldig csv fil med data @@ -1476,26 +1515,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,Optag findes ikk apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Original Value DocType: Help Category,Help Category,Hjælp Kategori apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,Bruger {0} er deaktiveret -apps/frappe/frappe/www/404.html +20,Page missing or moved,Side mangler eller er flyttet +apps/frappe/frappe/www/404.html +21,Page missing or moved,Side mangler eller er flyttet DocType: DocType,Route,Rute apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,indstillinger Razorpay betalingsgateway +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,Hent vedhæftede billeder fra dokument DocType: Chat Room,Name,Navn DocType: Contact Us Settings,Skype,Skype apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,Du har overskredet max plads af {0} for din plan. {1}. DocType: Chat Profile,Notification Tones,Meddelelsestoner -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Søg i dokumenterne +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,Søg i dokumenterne DocType: OAuth Authorization Code,Valid,Gyldig apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,Åbn link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,Dit sprog apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,Tilføj række DocType: Tag Category,Doctypes,doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,Query skal være en SELECT -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,"Vedhæft venligst en fil, der skal importeres" -DocType: Auto Repeat,Completed,Afsluttet +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,Query skal være en SELECT +DocType: Prepared Report,Completed,Afsluttet DocType: File,Is Private,Er Private DocType: Data Export,Select DocType,Vælg DocType apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,Filstørrelse overskredet den maksimalt tilladte størrelse af {0} MB -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,Oprettet den +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,Oprettet den DocType: Workflow State,align-center,tilpasse-center DocType: Feedback Request,Is Feedback request triggered manually ?,Er Feedback anmodning udløses manuelt? DocType: Address,Lakshadweep Islands,Lakshadweep Islands @@ -1503,7 +1542,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Visse dokumenter, som en faktura, bør ikke ændres, når endelig. Den endelige tilstand for sådanne dokumenter kaldes Tilmeldt. Du kan begrænse hvilke roller kan Submit." DocType: Newsletter,Test Email Address,Test e-mailadresse DocType: ToDo,Sender,Afsender -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,Fejl under evaluering af meddelelse {0}. Ret venligst din skabelon. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,Fejl under evaluering af meddelelse {0}. Ret venligst din skabelon. DocType: GSuite Settings,Google Apps Script,Google Apps Script apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Efterlad en kommentar DocType: Web Page,Description for search engine optimization.,Beskrivelse for søgemaskine optimering. @@ -1513,7 +1552,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,Afve DocType: System Settings,Allow only one session per user,Tillad kun én session per bruger apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Forside / Test Mappe 1 / Test Mappe 3 DocType: Website Settings,<head> HTML,<head> HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,Vælg eller træk på tværs af tidsintervaller for at oprette en ny begivenhed. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,Vælg eller træk på tværs af tidsintervaller for at oprette en ny begivenhed. DocType: DocField,In Filter,I Filter apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Vis i modul sektion @@ -1525,17 +1564,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",Side at vise på hjemmesiden DocType: Note,Seen By Table,Set af tabel -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,Vælg skabelon +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,Vælg skabelon apps/frappe/frappe/www/third_party_apps.html +47,Logged in,Logget ind apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,Forkert UserId eller adgangskode apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,Udforske apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Standard Afsendelse og Indbakke DocType: System Settings,OTP App,OTP App +DocType: Dropbox Settings,Send Email for Successful Backup,Send e-mail til succesfuld backup apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokument ID DocType: Print Settings,Letter,Brev -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,Billede felt skal være af typen Vedhæft billede +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,Billede felt skal være af typen Vedhæft billede DocType: DocField,Columns,Kolonner -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,Delt med bruger {0} med læsadgang +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,Delt med bruger {0} med læsadgang DocType: Async Task,Succeeded,Lykkedes apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},"Obligatoriske felter, der kræves i {0}" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,Nulstil Tilladelser for {0}? @@ -1553,14 +1593,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,justere venstre DocType: User,Defaults,Standardværdier DocType: Feedback Request,Feedback Submitted,Tilbagemelding er sendt -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,Sammenlæg med eksisterende +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,Sammenlæg med eksisterende DocType: User,Birth Date,Fødselsdato DocType: Dynamic Link,Link Title,Link Title DocType: Workflow State,fast-backward,hurtigt tilbage DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,Fredag -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,Rediger i fuld side +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,Rediger i fuld side DocType: Report,Add Total Row,Tilføj total-række apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,"Tjek venligst din registrerede emailadresse for at få vejledning i, hvordan du fortsætter. Luk ikke dette vindue, da du bliver nødt til at vende tilbage til det." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,For eksempel hvis du annullere og ændre INV004 bliver det et nyt dokument INV004-1. Dette hjælper dig med at holde styr på hver enkelt ændring. @@ -1581,11 +1621,10 @@ apps/frappe/frappe/www/feedback.html +96,Please give a detailed feebdack.,Giv ve DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent",1 Valuta = [?] dele. Eksempelvis 1 USD = 100 Cent DocType: Data Import,Partially Successful,Delvis vellykket -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","For mange brugere tilmeldt nylig, så registreringen er deaktiveret. Prøv igen om en time" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","For mange brugere tilmeldt nylig, så registreringen er deaktiveret. Prøv igen om en time" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,Tilføj ny tilladelsesregel apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Du kan bruge jokertegn% DocType: Chat Message Attachment,Chat Message Attachment,Chatmeddelelsesvedhæftning -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Venligst opsæt standard e-mail-konto fra Opsætning> Email> E-mail-konto apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Kun billedfiler extensions (.gif, .jpg, .jpeg, .tiff, .png, SVG) tilladt" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,Database Engine @@ -1606,7 +1645,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,Datterselskab DocType: System Settings,In Hours,I Hours apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,Med brevhoved -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,Ugyldig Server til udgående post eller Port +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,Ugyldig Server til udgående post eller Port DocType: Custom DocPerm,Write,Skrive apps/frappe/frappe/core/doctype/report/report.py +37,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 +13,Updating,Opdatering @@ -1615,28 +1654,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i 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 +13,Import Email From,Importér E-mail fra apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,Inviter som Bruger -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,Hjem Adresse er påkrævet +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,Hjem Adresse er påkrævet DocType: Data Migration Run,Started,Startede +DocType: Data Migration Run,End Time,End Time apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,Vælg Vedhæftede apps/frappe/frappe/model/naming.py +113, for {0},for {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,Der var fejl. Rapportér venligst dette. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,Der var fejl. Rapportér venligst dette. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,Du har ikke tilladelse til at udskrive dette dokument apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},I øjeblikket opdaterer {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,Venligst sæt filtre værdi i Rapportfilter tabel. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,Indlæser rapport +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,Venligst sæt filtre værdi i Rapportfilter tabel. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,Indlæser rapport apps/frappe/frappe/limits.py +74,Your subscription will expire today.,Dit abonnement udløber i dag. DocType: Page,Standard,Standard -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Vedhæft fil +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,Vedhæft fil +DocType: Data Migration Plan,Preprocess Method,Forarbejdningsmetode apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Størrelse apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Opgave Complete DocType: Desktop Icon,Idx,Idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

Ingen resultater fundet for '

DocType: Address,Madhya Pradesh,Madhya Pradesh DocType: Deleted Document,New Name,Nyt navn DocType: System Settings,Is First Startup,Er første opstart DocType: Communication,Email Status,E-mail-status apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,"Gem venligst dokumentet, før du fjerner opgaven" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,Indsæt ovenfor -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,Kommentar kan kun redigeres af ejeren +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,Kommentar kan kun redigeres af ejeren DocType: Data Import,Do not send Emails,Send ikke e-mails apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,Almindelige navne og efternavne er nemme at gætte. DocType: Auto Repeat,Draft,Kladde @@ -1648,14 +1690,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,Tilbagekald DocType: Contact,Replied,Svarede DocType: Newsletter,Test,Prøve DocType: Custom Field,Default Value,Standardværdi -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,Bekræft +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,Bekræft DocType: Workflow Document State,Update Field,Opdatering Field DocType: Chat Profile,Enable Chat,Aktivér chat DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,Forlad denne samtale -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},Muligheder ikke indstillet til link felt {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},Muligheder ikke indstillet til link felt {0} DocType: Customize Form,"Must be of type ""Attach Image""",Skal være af typen "Vedhæft billede" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,Fravælg alle +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,Fravælg alle apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},Du kan ikke frakoblet "Read Only" for feltet {0} DocType: Auto Email Report,Zero means send records updated at anytime,"Nul betyder, at send records opdateres når som helst" apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,Komplet opsætning @@ -1671,7 +1713,7 @@ DocType: Social Login Key,Google,Google DocType: Email Domain,Example Email Address,Eksempel E-mail adresse apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Oftest benyttet apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,Afmeld nyhedsbrev -apps/frappe/frappe/www/login.html +83,Forgot Password,Glemt adgangskode +apps/frappe/frappe/www/login.html +84,Forgot Password,Glemt adgangskode DocType: Dropbox Settings,Backup Frequency,Hyppighed af sikkerhedskopier DocType: Workflow State,Inverse,Inverse DocType: DocField,User permissions should not apply for this Link,Brugertilladelser bør ikke gælde for dette Link @@ -1688,6 +1730,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Oversigt ov apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,Succesfuld Opdateret DocType: Activity Log,Logout,Log af apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,"Tilladelser på højere niveauer er Field Level tilladelser. Alle felter har et Tilladelsesniveau sæt mod dem, og de regler, der er defineret ved, at tilladelser anvendelse på. Dette er nyttigt, hvis du ønsker at skjule eller foretage visse felt skrivebeskyttet for bestemte roller." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Opsætning> Tilpas formular DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Indtast statiske url parametre her (F.eks. Afsender = ERPNext, brugernavn = ERPNext, password = 1234 mm)" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Hvis disse anvisninger, hvis ikke nyttigt, bedes du tilføje i dine forslag på GitHub Issues." DocType: Workflow State,bookmark,bogmærke @@ -1699,12 +1742,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,"Au apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} eksisterer allerede. Vælg et andet nummer apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,Feedbackbetingelserne stemmer ikke overens DocType: S3 Backup Settings,None,Ingen -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,Tidslinje felt skal være en gyldig fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,Tidslinje felt skal være en gyldig fieldname DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,Række # {0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,Række # {0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,Ny adgangskode sendt på e-mail -apps/frappe/frappe/auth.py +272,Login not allowed at this time,Log ind er ikke tilladt på dette tidspunkt +apps/frappe/frappe/auth.py +286,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: Email Account,Email Sync Option,E-mail-synkronisering Option apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,Række nr @@ -1720,12 +1763,12 @@ DocType: Address,Fax,Telefax apps/frappe/frappe/config/setup.py +263,Custom Tags,Brugerdefinerede Tags DocType: Communication,Submitted,Godkendt DocType: System Settings,Email Footer Address,Email Footer adresse -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,tabel opdateret +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,tabel opdateret DocType: Activity Log,Timeline DocType,Tidslinje DocType DocType: DocField,Text,Tekst apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Standard afsendelse DocType: Workflow State,volume-off,volumen-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},Vellidt af {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},Vellidt af {0} DocType: Footer Item,Footer Item,footer Item ,Download Backups,Download sikkerhedskopier apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Forside / Test Mappe 1 @@ -1733,7 +1776,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me,T DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,Til dato apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Vis mislykkedes job -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,Detaljer +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,Detaljer DocType: Property Setter,DocType or Field,DocType eller Field DocType: Communication,Soft-Bounced,Soft-Kastet DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Hvis aktiveret, kan alle brugere logge ind fra en hvilken som helst IP-adresse ved hjælp af Two Factor Auth. Dette kan også indstilles kun for bestemte brugere i bruger side" @@ -1744,7 +1787,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,E-mail er flyttet til papirkurven DocType: Report,Report Builder,Rapportgenerator DocType: Async Task,Task Name,Opgavenavn -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","Din session er udløbet, skal du logge ind igen for at fortsætte." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","Din session er udløbet, skal du logge ind igen for at fortsætte." DocType: Communication,Workflow,Workflow DocType: Website Settings,Welcome Message,Velkomstbesked DocType: Webhook,Webhook Headers,Webhook Headers @@ -1761,10 +1804,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,Udskriv dokumenter DocType: Contact Us Settings,Forward To Email Address,Frem til email-adresse apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Vis alle data -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,Titel felt skal være et gyldigt feltnavn +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,Titel felt skal være et gyldigt feltnavn apps/frappe/frappe/config/core.py +7,Documents,Dokumenter DocType: Social Login Key,Custom Base URL,Brugerdefineret basiswebadresse DocType: Email Flag Queue,Is Completed,er afsluttet +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,Få felter apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} nævnte dig i en kommentar apps/frappe/frappe/www/me.html +22,Edit Profile,Rediger profil DocType: Kanban Board Column,Archived,Arkiveret @@ -1774,17 +1818,18 @@ myfield 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/form/controls/date.js +49,Today,I dag +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,I dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"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: Error Log,Log of Scheduler Errors,Log af Scheduler Fejl DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Godkender +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,"Forældre er navnet på det dokument, som dataene vil blive tilføjet til." apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,Vis Likes DocType: DocType,UPPER CASE,STORE BOGSTAVER apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,Tilpasset HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,Indtast mappenavn -apps/frappe/frappe/auth.py +228,Unknown User,Ukendt bruger +apps/frappe/frappe/auth.py +233,Unknown User,Ukendt bruger apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,Vælg Rolle DocType: Communication,Deleted,Slettet DocType: Workflow State,adjust,justere @@ -1806,21 +1851,21 @@ DocType: Data Migration Connector,Database Name,Databasens navn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Opdater Form DocType: DocField,Select,Vælg apps/frappe/frappe/utils/csvutils.py +29,File not attached,Fil ikke vedhæftet -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,Forbindelse afbrudt. Nogle funktioner fungerer muligvis ikke. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,Forbindelse afbrudt. Nogle funktioner fungerer muligvis ikke. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess","Gentagelser som ""aaa"" er nemme at gætte" -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,Ny chat +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,Ny chat DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Hvis du angiver dette, vil denne Vare kommer i en drop-down under den valgte forælder." DocType: Print Format,Show Section Headings,Vis Afsnit Overskrifter DocType: Bulk Update,Limit,Begrænse -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},Ingen skabelon fundet på stien: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,Logout fra alle sessioner +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,Tilføj en ny sektion +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},Ingen skabelon fundet på stien: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,Ingen e-mail-konto DocType: Communication,Cancelled,Annulleret DocType: Chat Room,Avatar,Avatar DocType: Blogger,Posts,Indlæg DocType: Social Login Key,Salesforce,Salgsstyrke DocType: DocType,Has Web View,Har webvisning -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType navn skal starte med et bogstav, og det kan kun bestå af bogstaver, tal, mellemrum og understregninger" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType navn skal starte med et bogstav, og det kan kun bestå af bogstaver, tal, mellemrum og understregninger" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Integration Request apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,Kære @@ -1836,16 +1881,18 @@ DocType: Communication,Assigned,tildelt DocType: Print Format,Js,js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,Vælg Udskriv Format apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,Korte tastatur mønstre er nemme at gætte +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,Generer ny rapport DocType: Portal Settings,Portal Menu,Portal Menu apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,Længden af {0} skal være mellem 1 og 1000 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Søg efter noget +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,Søg efter noget DocType: Data Migration Connector,Hostname,Værtsnavn DocType: Data Migration Mapping,Condition Detail,Tilstand detaljer apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}",For valuta {0} skal det mindste transaktionsbeløb være {1} DocType: DocField,Print Hide,Print Skjul -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Indtast værdi +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,Indtast værdi DocType: Workflow State,tint,toning DocType: Web Page,Style,Stil +DocType: Prepared Report,Report End Time,Rapport Slut Tid apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,fx: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} kommentarer apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,Version opdateret @@ -1858,10 +1905,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,Skift diagrammer DocType: Website Settings,Sub-domain provided by erpnext.com,"Sub-domæne, som erpnext.com" apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,Opsætning af dit system +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,Efterkommere af DocType: System Settings,dd-mm-yyyy,dd-mm-åååå -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,Skal have rapport adgang til denne rapport. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,Skal have rapport adgang til denne rapport. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,Vælg venligst mindst adgangskode score -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,Tilføjet +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,Tilføjet apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,Du har abonneret på en gratis brugerplan DocType: Auto Repeat,Half-yearly,Halvårlig apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,Daglige begivenheder sendes til kalenderen hvor påmindelser er aktiveret. @@ -1872,7 +1920,7 @@ DocType: Workflow State,remove,fjern DocType: Email Domain,If non standard port (e.g. 587),Hvis ikke-standard port (f.eks. 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,Genindlæs apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,Tilføj dine egne Tag Kategorier -apps/frappe/frappe/desk/query_report.py +227,Total,Total +apps/frappe/frappe/desk/query_report.py +312,Total,Total DocType: Event,Participants,Deltagere DocType: Integration Request,Reference DocName,Henvisning DocName DocType: Web Form,Success Message,Succes Message @@ -1886,7 +1934,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,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/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge",{0} {1} eksisterer ikke. Vælg et nyt mål for sammenlægningen -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",Søgeresultater for "{0}" DocType: Data Migration Connector,Python Module,Python modul DocType: GSuite Settings,Google Credentials,Google-legitimationsoplysninger apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,QR kode til login verifikation @@ -1895,8 +1942,8 @@ DocType: Footer Item,Company,Firma apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Tildelt mig apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Google GSuite Skabeloner til integration med DocTypes DocType: User,Logout from all devices while changing Password,"Logout fra alle enheder, mens du ændrer adgangskode" -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,Bekræft adgangskode -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Der var fejl +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,Bekræft adgangskode +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,Der var fejl apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Luk apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,Kan ikke ændre docstatus fra 0 til 2 DocType: File,Attached To Field,Vedhæftet til felt @@ -1906,7 +1953,7 @@ DocType: Transaction Log,Transaction Hash,Transaktionshash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,Gem nyhedsbrevet før afsendelse apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Konfigurer konti for google kalender -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},Muligheder skal være en gyldig DocType for feltet {0} i række {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},Muligheder skal være en gyldig DocType for feltet {0} i række {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Rediger egenskaber DocType: Patch Log,List of patches executed,Liste over patches henrettet apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} allerede afmeldt @@ -1925,8 +1972,8 @@ DocType: Data Migration Connector,Authentication Credentials,Autentificeringsopl DocType: Role,Two Factor Authentication,Two Factor Authentication apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,Betale DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL -apps/frappe/frappe/model/base_document.py +508,"{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/utils/data.py +638,{0} or {1},{0} eller {1} +apps/frappe/frappe/model/base_document.py +517,"{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/utils/data.py +640,{0} or {1},{0} eller {1} apps/frappe/frappe/core/doctype/user/user.py +250,Password Update,Opdatering af adgangskode DocType: Workflow State,trash,affald DocType: System Settings,Older backups will be automatically deleted,Ældre sikkerhedskopier slettes automatisk @@ -1942,16 +1989,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,Recidiverende apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Punkt kan ikke føjes til sine egne efterkommere DocType: System Settings,Expiry time of QR Code Image Page,Udløbstidspunkt for QR Code Image Page -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,Vis totaler +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,Vis totaler DocType: Error Snapshot,Relapses,Tilbagefald DocType: Address,Preferred Shipping Address,Foretruken leveringsadresse -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,Med brevhoved +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,Med brevhoved apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} oprettede denne {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 +38,Document is only editable by users of role,Dokument er kun redigeres af brugere af rolle -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.","Opgaven {0}, som du har tildelt {1}, er blevet lukket af {2}." +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.","Opgaven {0}, som du har tildelt {1}, er blevet lukket af {2}." DocType: Print Format,Show Line Breaks after Sections,Vis Linje Breaks efter Sektioner +DocType: Communication,Read by Recipient On,Læs af modtager på DocType: Blogger,Short Name,Kort navn -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},Side {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},Side {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},Forbundet med {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1978,20 +2027,20 @@ DocType: Communication,Feedback,Feedback apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,Åben oversættelse apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,Denne email er autogenereret DocType: Workflow State,Icon will appear on the button,Ikon vises på knappen -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Socketio er ikke tilsluttet. Kan ikke uploade +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Socketio er ikke tilsluttet. Kan ikke uploade DocType: Website Settings,Website Settings,Opsætning af hjemmeside apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,Måned DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Tilføj Reference: {{ reference_doctype }} {{ reference_name }} at sende dokumenthenvisning DocType: DocField,Fetch From,Hent fra apps/frappe/frappe/modules/utils.py +205,App not found,App ikke fundet -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Kan ikke oprette en {0} mod et barn dokument: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},Kan ikke oprette en {0} mod et barn dokument: {1} DocType: Social Login Key,Social Login Key,Socialt login nøgle DocType: Portal Settings,Custom Sidebar Menu,Tilpasset Sidebar Menu DocType: Workflow State,pencil,blyant apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat beskeder og andre meddelelser. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},Indsæt Efter kan ikke indstilles som {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Del {0} med -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,For opsætning af e-mailkonti skal du indtaste din adgangskode: +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,For opsætning af e-mailkonti skal du indtaste din adgangskode: DocType: Workflow State,hand-up,hånd-up DocType: Blog Settings,Writers Introduction,Writers Introduktion DocType: Address,Phone,Telefonnr. @@ -1999,18 +2048,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,Inaktiv DocType: Contact,Accounts Manager,Regnskabschef apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Din betaling er annulleret. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,Vælg filtype +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,Vælg filtype apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,Se alt DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Siden blev ikke fundet DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,Dias Varer apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,Prøv at undgå gentagne ord og tegn -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,Der er mislykkedes kørsler med den samme dataoverførselsplan DocType: Event,Groups,Grupper DocType: Workflow Action,Workflow State,Workflow stat apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,rækker Tilføjet -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,Succes! Du er god at gå 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,Succes! Du er god at gå 👍 apps/frappe/frappe/www/me.html +3,My Account,Min konto DocType: ToDo,Allocated To,Afsat til apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,Klik på følgende link for at indstille din nye adgangskode @@ -2018,36 +2066,39 @@ DocType: Notification,Days After,Dage efter DocType: Newsletter,Receipient,Modtager DocType: Contact Us Settings,Settings for Contact Us Page,"Indstillinger for ""Kontakt os""-siden" DocType: Custom Script,Script Type,Script Type +DocType: Print Settings,Enable Print Server,Aktivér printserver apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,{0} uger siden DocType: Auto Repeat,Auto Repeat Schedule,Automatisk gentagelsesplan DocType: Email Account,Footer,Sidefod apps/frappe/frappe/config/integrations.py +48,Authentication,Godkendelse apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,Ugyldigt Link +DocType: Web Form,Client Script,Client Script DocType: Web Page,Show Title,Vis Titel DocType: Chat Message,Direct,Direkte DocType: Property Setter,Property Type,Ejendom Type DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Kun Administratoren kan gemme en standard rapport. Omdøb venligst og gem. DocType: System Settings,Background Workers,Baggrund Arbejdere -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,Feltnavn {0} står i konflikt med metaobjekt +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,Feltnavn {0} står i konflikt med metaobjekt DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokument status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Du har foretaget {0} af {1} DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Authorization Code -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,Ikke tilladt at importere +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,Ikke tilladt at importere DocType: Deleted Document,Deleted DocType,slettet DocType apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Tilladelsesniveauer DocType: Workflow State,Warning,Advarsel DocType: Data Migration Run,Percent Complete,Procent fuldført DocType: Tag Category,Tag Category,tag Kategori -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","Ignorerer Item {0}, fordi en gruppe eksisterer med samme navn!" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,Hjælp +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","Ignorerer Item {0}, fordi en gruppe eksisterer med samme navn!" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,Hjælp DocType: User,Login Before,Log ind før DocType: Web Page,Insert Style,Indsæt Style apps/frappe/frappe/config/setup.py +276,Application Installer,Application Installer -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,Ny rapport navn +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,Ny rapport navn +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,Skjul weekender DocType: Workflow State,info-sign,info-skilt -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Værdi for {0} kan ikke være en liste +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,Værdi for {0} kan ikke være en liste DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvordan skal denne valuta formateres? Hvis ikke angivet, vil bruge systemets standardindstillinger" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,Indsend {0} dokumenter? apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,Du skal være logget ind og have Systemadministratorrollen for at kunne få adgang til sikkerhedskopier. @@ -2058,6 +2109,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,Rolle Tilladelser DocType: Help Article,Intermediate,mellemniveau apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Annulleret dokument genoprettet som Udkast +DocType: Data Migration Run,Start Time,Start Time apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Kan ikke slette eller annullere fordi {0} {1} er forbundet med {2} {3} {4} apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Kan Læs apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} diagram @@ -2068,6 +2120,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Kan Del apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Ugyldig modtageradresse DocType: Workflow State,step-forward,trin-frem +DocType: System Settings,Allow Login After Fail,Tillad login efter fejl apps/frappe/frappe/limits.py +69,Your subscription has expired.,Dit abonnement er udløbet. DocType: Role Permission for Page and Report,Set Role For,Set Rolle For DocType: GCalendar Account,The name that will appear in Google Calendar,Navnet der vises i Google Kalender @@ -2076,7 +2129,7 @@ DocType: Event,Starts on,Starter på DocType: System Settings,System Settings,Systemindstillinger DocType: GCalendar Settings,Google API Credentials,Google API-referencer apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,Session Start mislykkedes -apps/frappe/frappe/email/queue.py +499,This email was sent to {0} and copied to {1},Denne e-mail blev sendt til {0} og kopieres til {1} +apps/frappe/frappe/email/queue.py +511,This email was sent to {0} and copied to {1},Denne e-mail blev sendt til {0} og kopieres til {1} DocType: Workflow State,th,th DocType: Social Login Key,Provider Name,Navn på udbyder apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},Opret ny(t) {0} @@ -2090,35 +2143,38 @@ DocType: System Settings,Choose authentication method to be used by all users,"V apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Doktype kræves DocType: Workflow State,ok-sign,ok-tegn apps/frappe/frappe/config/setup.py +146,Deleted Documents,Slette dokumenter -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,CSV-formatet er store bogstaver +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,CSV-formatet er store bogstaver apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,Desktop-ikonet eksisterer allerede apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,Duplikér DocType: Newsletter,Create and Send Newsletters,Opret og send nyhedsbreve -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,Fra dato skal være før til dato +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,Fra dato skal være før til dato DocType: Address,Andaman and Nicobar Islands,Andaman og Nicobar Islands -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,GSuite Dokument -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,Angiv venligst hvilken værdi felt skal kontrolleres +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,GSuite Dokument +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,Angiv venligst hvilken værdi felt skal kontrolleres apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added",'Forælder' betegner den overordnede tabel hvor denne række skal tilføjes apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Kan ikke sende denne email. Du har krydset sendegrænsen for {0} e-mails for denne dag. DocType: Website Theme,Apply Style,Anvend Style DocType: Feedback Request,Feedback Rating,Feedback Rating apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Delt med +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,Vedhæft filer / urls og tilføj i tabel. DocType: Help Category,Help Articles,Hjælp artikler apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Type: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Din betaling er mislykket. DocType: Communication,Unshared,udelt DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul ikke fundet -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} er angivet til tilstand {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} er angivet til tilstand {2} DocType: User,Location,Lokation ,Permitted Documents For User,Tilladte dokumenter for bruger apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission",Du skal have "Del" tilladelsen DocType: Communication,Assignment Completed,Overdragelse Afsluttet -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},Bulk Edit {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},Bulk Edit {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,Download rapport apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Ikke aktiv DocType: About Us Settings,Settings for the About Us Page,Indstillinger for Om os Page apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,Stripe betalings gateway indstillinger DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,fx pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,Generer nøgler apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Brug feltet til at filtrere poster DocType: DocType,View Settings,Se Indstillinger DocType: Email Account,Outlook.com,Outlook.com @@ -2128,12 +2184,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,Send mig en kopi af udgående e-mails DocType: System Settings,Scheduler Last Event,Scheduler Sidste begivenhed DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Tilføj Google Analytics ID: f.eks. UA-89XXX57-1. Du søge hjælp på Google Analytics for at få flere oplysninger. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,Adgangskode kan ikke være mere end 100 tegn +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,Adgangskode kan ikke være mere end 100 tegn DocType: OAuth Client,App Client ID,App klient-id DocType: Kanban Board,Kanban Board Name,Kanbantavlenavn DocType: Notification Recipient,"Expression, Optional","Udtryk, Valgfri" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopier og indsæt denne kode i og tøm Code.gs i dit projekt på script.google.com -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},Denne e-mail blev sendt til {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},Denne e-mail blev sendt til {0} DocType: System Settings,Hide footer in auto email reports,Skjul footer i auto email rapporter DocType: DocField,Remember Last Selected Value,Husk Sidste valgte værdi DocType: Email Account,Check this to pull emails from your mailbox,Markér dette for at trække e-mails fra din postkasse @@ -2149,15 +2205,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",Dokumentationsresultater for "{0}" DocType: Workflow State,envelope,kuvert apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Mulighed 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,Udskrivning mislykkedes DocType: Feedback Trigger,Email Field,E-mail felt -apps/frappe/frappe/www/update-password.html +68,New Password Required.,Ny adgangskode er påkrævet. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,Ny adgangskode er påkrævet. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} delte dette dokument med {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,Tilføj din anmeldelse +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,Tilføj din anmeldelse DocType: Website Settings,Brand Image,Varemærkelogo DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Opsætning af øverste navigationslinje, sidefod og logo." DocType: Web Form Field,Max Value,Maksimal værdi -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},For {0} på niveau {1} i {2} i række {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},For {0} på niveau {1} i {2} i række {3} DocType: User Social Login,User Social Login,Bruger Social Login DocType: Contact,All,Alle DocType: Email Queue,Recipient,Modtager @@ -2166,27 +2223,27 @@ DocType: Address,Sales User,Salgsbruger apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,Træk og slip værktøj til at opbygge og tilpasse Print formater. DocType: Address,Sikkim,Sikkim apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,Sæt -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,Denne forespørgselsstil ophører +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,Denne forespørgselsstil ophører DocType: Notification,Trigger Method,Trigger Method -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},Operatøren skal være en af {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},Operatøren skal være en af {0} DocType: Dropbox Settings,Dropbox Access Token,Dropbox Access Token DocType: Workflow State,align-right,justere højre DocType: Auto Email Report,Email To,E-mail Til apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,Folder {0} er ikke tom DocType: Page,Roles,Roller -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Fejl: Værdi mangler for {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,Field {0} kan ikke vælges. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},Fejl: Værdi mangler for {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,Field {0} kan ikke vælges. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,Session Udløb DocType: Workflow State,ban-circle,ban-cirkel apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,Slack Webshook Fejl DocType: Email Flag Queue,Unread,Ulæst DocType: Auto Repeat,Desk,Skrivebord -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),Filter skal være en tuple eller liste (i en liste) +apps/frappe/frappe/utils/data.py +805,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 +8,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),Attachment Grænse (MB) DocType: Address,Arunachal Pradesh,Arunachal Pradesh -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,Opsætning Auto Email +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Opsætning Auto Email apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + Down DocType: Chat Profile,Message Preview,Forhåndsvisning af besked apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,Dette er en top-10 fælles adgangskode. @@ -2209,7 +2266,7 @@ DocType: OAuth Client,Implicit,Implicit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Føj som kommunikation mod denne DocType (skal have felter, "Status", "Emne")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI'er for at modtage autorisationskode når brugeren giver adgang, samt svigt svar. Typisk en REST endpoint udsat af Kunden App.
fx http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,Ikke tilladt at ændre {0} efter indsendelse +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,Ikke tilladt at ændre {0} efter indsendelse DocType: Data Migration Mapping,Migration ID Field,Migrations-id-felt DocType: Communication,Comment Type,Kommentar Type DocType: OAuth Client,OAuth Client,OAuth Client @@ -2221,6 +2278,7 @@ DocType: DocField,Signature,Underskrift apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Del med apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,Indlæser apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","Indtast tasterne for at aktivere login via Facebook, Google, GitHub." +DocType: Data Import,Insert new records,Indsæt nye poster apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},Kan ikke læse filformat for {0} DocType: Auto Email Report,Filter Data,Filtreringsdata apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Vedhæft en fil først. @@ -2237,7 +2295,7 @@ DocType: DocType,Title Case,Titel Case DocType: Data Migration Run,Data Migration Run,Data Migration Kør DocType: Blog Post,Email Sent,E-mail sendt DocType: DocField,Ignore XSS Filter,Ignorer XSS-filter -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,fjernet +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,fjernet apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,Indstillinger Dropbox-sikkerhedskopi apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,Send som e-mail DocType: Website Theme,Link Color,Link Color @@ -2253,22 +2311,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,LDAP-indstillinger apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,Entity Name apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Ændring apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal betaling gateway indstillinger -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vil få afkortet, da max tilladte tegn er {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vil få afkortet, da max tilladte tegn er {2}" DocType: OAuth Client,Response Type,reaktion Type DocType: Contact Us Settings,Send enquiries to this email address,Send forespørgsler til denne e-mailadresse DocType: Letter Head,Letter Head Name,Brevhovednavn DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Antal kolonner for et felt i en liste Vis eller en Grid (Total Kolonner skal være mindre end 11) apps/frappe/frappe/config/website.py +18,User editable form on Website.,Bruger redigerbare form på hjemmesiden. DocType: Workflow State,file,fil -apps/frappe/frappe/www/login.html +90,Back to Login,Tilbage til log ind +apps/frappe/frappe/www/login.html +91,Back to Login,Tilbage til log ind DocType: Data Migration Mapping,Local DocType,Lokal DocType apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,Du har brug for at skrive tilladelse til at omdøbe +DocType: Email Account,Use ASCII encoding for password,Brug ASCII-kodning til adgangskode DocType: User,Karma,Karma DocType: DocField,Table,Tabel DocType: File,File Size,Filstørrelse -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Du skal logge ind for at indsende denne formular +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,Du skal logge ind for at indsende denne formular DocType: User,Background Image,Baggrundsbillede -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},Kan ikke indstille Notification on Document Type {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},Kan ikke indstille Notification on Document Type {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","Vælg dit land, tidszone og valuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,Mellem @@ -2277,7 +2336,7 @@ DocType: Braintree Settings,Use Sandbox,Brug Sandbox apps/frappe/frappe/utils/goal.py +101,This month,Denne måned apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,Nyt brugerdefineret Print Format DocType: Custom DocPerm,Create,Opret -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},Ugyldig Filter: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},Ugyldig Filter: {0} DocType: Email Account,no failed attempts,ingen mislykkede forsøg DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key @@ -2286,7 +2345,7 @@ 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/page/usage_info/usage_info.html +66,Backup Size:,Backup størrelse: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},Automatisk gentagelse har været {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},Automatisk gentagelse har været {0} 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 @@ -2295,10 +2354,10 @@ DocType: Web Form,Allow Edit,Tillad Edit apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,Sæt ind DocType: Webhook,Doc Events,Doc Events DocType: Auto Email Report,Based on Permissions For User,Baseret på tilladelser til Bruger -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},Kan ikke ændre tilstand af Annulleret dokument. Overgang rækken {0} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},Kan ikke ændre tilstand af Annulleret dokument. Overgang rækken {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Regler for, hvordan stater er overgange, ligesom næste tilstand, og hvilken rolle har lov til at ændre tilstand etc." apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} findes allerede -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},Vedlægge kan være en af {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},Vedlægge kan være en af {0} DocType: DocType,Image View,Billede View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Ligner noget gik galt under transaktionen. Da vi ikke har bekræftet betalingen, vil Paypal automatisk refundere dig beløbet. Hvis den ikke gør det, så send os en e-mail og nævne Correlation ID: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Inkluder symboler, tal og store bogstaver i adgangskoden" @@ -2308,7 +2367,6 @@ DocType: List Filter,List Filter,List Filter DocType: Workflow State,signal,signal apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,Har vedhæftede filer DocType: DocType,Show Print First,Vis Print First -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Opsætning> Bruger apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Opret ny(t) {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,Ny e-mail-konto apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Dokument gendannet @@ -2334,7 +2392,7 @@ DocType: Web Form,Web Form Fields,Felter Web Form DocType: Website Theme,Top Bar Text Color,Top Bar Tekstfarve DocType: Auto Repeat,Amended From,Ændret Fra apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},Advarsel: Kan ikke finde {0} i enhver tabel relateret til {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,Dette dokument er i øjeblikket i kø til udførelse. Prøv igen +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,Dette dokument er i øjeblikket i kø til udførelse. Prøv igen apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,Fil '{0}' blev ikke fundet apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Fjern Sektion DocType: User,Change Password,Skift adgangskode @@ -2344,19 +2402,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,Hej! apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,Braintree betalings gateway indstillinger apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Begivenhed ende skal være efter start apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Dette logger ud {0} fra alle andre enheder -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Du har ikke tilladelse til at få en rapport om: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},Du har ikke tilladelse til at få en rapport om: {0} DocType: System Settings,Apply Strict User Permissions,Anvend strenge brugerrettigheder DocType: DocField,Allow Bulk Edit,Tillad Bulk Edit DocType: Blog Post,Blog Post,Blog-indlæg -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,Avanceret søgning +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,Avanceret søgning apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Du har ikke lov til at se nyhedsbrevet. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,Vejledning til nulstilling af din adgangskode er sendt til din e-mail +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,Vejledning til nulstilling af din adgangskode er sendt til din e-mail apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"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." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,"Kan ikke gemme formularen, da dataimporten pågår." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,Sorter efter DocType: Workflow,States,Anvendes ikke DocType: Notification,Attach Print,Vedhæft Print -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},Foreslået Brugernavn: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Foreslået Brugernavn: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,Dag ,Modules,Moduler apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Angiv ikoner til skrivebordet @@ -2366,11 +2425,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,Tilbagekaldt DocType: Web Page,Sidebar and Comments,Sidebar og Kommentarer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Når du Ændres et dokument, efter Annuller og gemme det, vil det få et nyt nummer, der er en version af det gamle nummer." -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Ikke tilladt at vedhæfte {0} dokument, skal du aktivere Tillad udskrivning til {0} i Udskriftsindstillinger" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,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 +68,Start Import,Start import +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,Start import DocType: Workflow State,circle-arrow-left,cirkel-pil-venstre apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,Redis cache serveren ikke kører. Kontakt venligst Administrator / Tech support apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Opret ny post @@ -2378,7 +2437,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,S DocType: Currency,Fraction,Fraktion DocType: LDAP Settings,LDAP First Name Field,LDAP Fornavn Field apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,til automatisk oprettelse af det tilbagevendende dokument for at fortsætte. -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,Vælg fra eksisterende vedhæftede filer +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,Vælg fra eksisterende vedhæftede filer DocType: Custom Field,Field Description,Felt Beskrivelse apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,Navn ikke indtastet i prompt 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"".","Indtast standardværdier (taster) og værdier. Hvis du tilføjer flere værdier for et felt, bliver den første valgt. Disse standardindstillinger bruges også til at indstille "match" tilladelsesregler. For at se listen over felter, gå til "Tilpas formular"." @@ -2398,6 +2457,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Hent varer DocType: Contact,Image,Billede DocType: Workflow State,remove-sign,fjern-sign +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,Det lykkedes ikke at oprette forbindelse til serveren apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,"Der er ingen data, der skal eksporteres" DocType: Domain Settings,Domains HTML,Domæner HTML apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,Skriv noget i søgefeltet for at søge @@ -2425,33 +2485,34 @@ DocType: Address,Address Line 2,Adresse 2 DocType: Address,Reference,Henvisning apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Tildelt til DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detail -DocType: Email Flag Queue,Action,Handling +DocType: Data Import,Action,Handling DocType: GSuite Settings,Script URL,Script URL -apps/frappe/frappe/www/update-password.html +119,Please enter the password,Indtast venligst adgangskoden -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,Ikke tilladt at udskrive annullerede dokumenter +apps/frappe/frappe/www/update-password.html +111,Please enter the password,Indtast venligst adgangskoden +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Ikke tilladt at udskrive annullerede dokumenter apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,Du har ikke lov til at oprette kolonner DocType: Data Import,If you don't want to create any new records while updating the older records.,"Hvis du ikke vil oprette nye poster, mens du opdaterer de ældre poster." apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Info: DocType: Custom Field,Permission Level,Tilladelsesniveau DocType: User,Send Notifications for Transactions I Follow,Send meddelelser til transaktioner jeg følger -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sætte Indsend, Annuller, uden skriv" -DocType: Google Maps,Client Key,Client Key -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Er du sikker på, at du vil slette den vedhæftede fil?" -apps/frappe/frappe/__init__.py +1097,Thank you,Tak +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sætte Indsend, Annuller, uden skriv" +DocType: Google Maps Settings,Client Key,Client Key +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,"Er du sikker på, at du vil slette den vedhæftede fil?" +apps/frappe/frappe/__init__.py +1178,Thank you,Tak apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Gemmer DocType: Print Settings,Print Style Preview,Print Style Eksempel apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,Ikoner -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Du har ikke tilladelse til at opdatere dette Webform-dokument +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,Du har ikke tilladelse til at opdatere dette Webform-dokument apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,E-mails apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Vælg Document Type først apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Angiv basiswebadresse i Social Login-nøgle til Frappe DocType: About Us Settings,About Us Settings,Om os Indstillinger DocType: Website Settings,Website Theme,Website Tema +DocType: User,Api Access,Api Access DocType: DocField,In List View,I Listevisning DocType: Email Account,Use TLS,Brug TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ugyldigt brugernavn eller adgangskode -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,Hent skabelon +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,Hent skabelon apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,Tilføj brugerdefinerede javascript til formularer. ,Role Permissions Manager,Rolleadministrator apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Navnet på det nye udskrivningsformat @@ -2470,7 +2531,6 @@ DocType: Website Settings,HTML Header & Robots,HTML Header & robotter DocType: User Permission,User Permission,Brugertilladelse apps/frappe/frappe/config/website.py +32,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,LDAP ikke installeret -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,Hent med data DocType: Workflow State,hand-right,hånd-ret DocType: Website Settings,Subdomain,Subdomæne apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,Indstillinger for OAuth Provider @@ -2482,6 +2542,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,Email Login ID apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,Betaling annulleret ,Addresses And Contacts,Adresser og kontakter +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,Vælg venligst dokumenttype først. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Klare fejllogs apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Vælg bedømmelse apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,Nulstil OTP Secret @@ -2490,19 +2551,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,2 dage apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorisér blogindlæg. DocType: Workflow State,Time,Tid DocType: DocField,Attach,Vedhæft -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ikke et gyldigt feltnavn mønster. Det bør være {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ikke et gyldigt feltnavn mønster. Det bør være {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Send feedback Anmodning, hvis der er mindst én kommunikation er tilgængelig for dokumentet." DocType: Custom Role,Permission Rules,Tilladelsesregler DocType: Braintree Settings,Public Key,Offentlig nøgle DocType: GSuite Settings,GSuite Settings,GSuite Indstillinger DocType: Address,Links,Links apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,Vælg dokumenttype. -apps/frappe/frappe/model/base_document.py +396,Value missing for,Værdi mangler for +apps/frappe/frappe/model/base_document.py +405,Value missing for,Værdi mangler for apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,Tilføj ny apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Den godkendte post kan ikke slettes. DocType: GSuite Templates,Template Name,Skabelonnavn apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ny dokumenttype -DocType: Custom DocPerm,Read,Læs +DocType: Communication,Read,Læs DocType: Address,Chhattisgarh,Chhattisgarh DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rolle Tilladelse til side og rapport apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Juster Value @@ -2512,9 +2573,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,Direkte rum med {other} eksisterer allerede. DocType: Has Domain,Has Domain,Har Domæne apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Skjule -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,Har du ikke en konto? Tilmeld dig her +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,Har du ikke en konto? Tilmeld dig her apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,Kan ikke fjerne ID-feltet -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kan ikke indstille tildeling - Ændre, hvis det ikke kan indsendes." +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kan ikke indstille tildeling - Ændre, hvis det ikke kan indsendes." DocType: Address,Bihar,Bihar DocType: Activity Log,Link DocType,Link DocType apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,Du har endnu ingen beskeder. @@ -2529,14 +2590,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Child Tabeller er vist som en Grid i andre doctypes. DocType: Chat Room User,Chat Room User,Chat Room User apps/frappe/frappe/model/workflow.py +38,Workflow State not set,Workflow State ikke angivet -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},Fejlkode: {0} +apps/frappe/frappe/www/404.html +23,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 +26,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)" DocType: Workflow,Allow Self Approval,Tillad selv godkendelse apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,John Doe DocType: DocType,Name Case,Navngiv Case apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,Delt med alle -apps/frappe/frappe/model/base_document.py +392,Data missing in table,Data mangler i tabel +apps/frappe/frappe/model/base_document.py +401,Data missing in table,Data mangler i tabel DocType: Web Form,Success URL,Succes URL DocType: Email Account,Append To,Føj til apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,Fast højde @@ -2557,30 +2618,31 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,Robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,Undskyld! Deling med Website Bruger er forbudt. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,Tilføj alle roller +DocType: Website Theme,Bootstrap Theme,Bootstrap Theme apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!",Indtast venligst både din email og din meddelelse - så kommer vi tilbage til dig. Tak! -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,Kunne ikke forbinde til udgående e-mail-server +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,Kunne ikke forbinde til udgående e-mail-server apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Tak for din interesse i at abonnere på vores opdateringer DocType: Braintree Settings,Payment Gateway Name,Betalings gateway navn -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,Tilpasset kolonne +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,Tilpasset kolonne DocType: Workflow State,resize-full,resize-fuld DocType: Workflow State,off,af apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,generobre -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Rapport {0} er deaktiveret +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,Rapport {0} er deaktiveret DocType: Activity Log,Core,Core apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Set tilladelser DocType: DocField,Set non-standard precision for a Float or Currency field,Sæt ikke-standard præcision for en Float eller valuta felt DocType: Email Account,Ignore attachments over this size,Ignorér vedhæftede filer større end denne størrelse DocType: Address,Preferred Billing Address,Foretruken faktureringsadresse apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,Workflow State {0} er ikke tilladt -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,Alt for mange skriver i en anmodning. Send venligst mindre anmodninger +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,Alt for mange skriver i en anmodning. Send venligst mindre anmodninger apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Værdier ændret DocType: Workflow State,arrow-up,arrow-up DocType: OAuth Bearer Token,Expires In,udløber I DocType: DocField,Allow on Submit,Tillad på Godkend DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Undtagelsestype -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,Vælg kolonner +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Vælg kolonner DocType: Web Page,Add code as <script>,Føje kode som <script> DocType: Webhook,Headers,headers apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,Indtast værdier for App adgangsnøgle og App Secret Key @@ -2599,6 +2661,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,Ingen aktive sessioner DocType: Top Bar Item,Right,Højre DocType: User,User Type,Brugertype +DocType: Prepared Report,Ref Report DocType,Ref Report DocType apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,Klik tabel for at redigere DocType: GCalendar Settings,Client ID,Klient-id DocType: Async Task,Reference Doc,Henvisning Doc @@ -2617,18 +2680,18 @@ DocType: Workflow State,Edit,Redigér apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Tilladelser kan styres via Setup> Rolleadministrator DocType: Website Settings,Chat Operators,Chatoperatører DocType: Contact Us Settings,Pincode,Pinkode -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,"Sørg for, at der ikke er nogen tomme kolonner i filen." +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,"Sørg for, at der ikke er nogen tomme kolonner i filen." apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,"Sørg for, at din profil har en e-mailadresse" apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,Du har ikke-gemte ændringer i dette skærmbillede. Gem før du fortsætter. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,Standard for {0} skal være en mulighed +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,Standard for {0} skal være en mulighed DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori DocType: User,User Image,Brugerbillede -apps/frappe/frappe/email/queue.py +338,Emails are muted,E-mails er slået fra +apps/frappe/frappe/email/queue.py +341,Emails are muted,E-mails er slået fra apps/frappe/frappe/config/integrations.py +88,Google Services,Google Services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Ctrl + Up DocType: Website Theme,Heading Style,Overskrift Style -apps/frappe/frappe/utils/data.py +625,1 weeks ago,1 uge siden +apps/frappe/frappe/utils/data.py +627,1 weeks ago,1 uge siden DocType: Communication,Error,Fejl DocType: Auto Repeat,End Date,Slutdato DocType: Data Import,Ignore encoding errors,Ignorer kodningsfejl @@ -2636,6 +2699,7 @@ DocType: Chat Profile,Notifications,underretninger DocType: DocField,Column Break,Kolonne Break DocType: Event,Thursday,Torsdag apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,Du har ikke tilladelse til at få adgang til denne fil +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,Gem API Hemmelighed: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},Kan ikke linke annulleret dokument: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,Kan ikke redigere en standardrapport. Venligst duplikér og opret en ny rapport apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","Selskabet er obligatorisk, da det er din firmaadresse" @@ -2652,9 +2716,9 @@ DocType: Custom Field,Label Help,Label Hjælp DocType: Workflow State,star-empty,star-tom apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,Datoer er ofte nemme at gætte. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,Næste handlinger -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Kan ikke redigere standardmeddelelse. For at redigere, skal du deaktivere dette og duplikere det" +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Kan ikke redigere standardmeddelelse. For at redigere, skal du deaktivere dette og duplikere det" DocType: Workflow State,ok,ok -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,Indsend anmeldelse +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,Indsend anmeldelse DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Disse værdier vil automatisk blive opdateret i transaktioner, og også vil være nyttigt at begrænse tilladelser for denne bruger om transaktioner, der indeholder disse værdier." apps/frappe/frappe/twofactor.py +312,Verfication Code,Verfication Code apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,for at generere den tilbagevendende @@ -2672,12 +2736,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,Nulstil adgangsk apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Venligst Opgrader for at tilføje flere end {0} abonnenter DocType: Workflow State,hand-left,hånd-venstre DocType: Data Import,If you are updating/overwriting already created records.,Hvis du opdaterer / overskriver allerede oprettede poster. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,FieldType {0} for {1} kan ikke være unik +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,FieldType {0} for {1} kan ikke være unik apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,Er Global DocType: Email Account,Use SSL,Brug SSL DocType: Workflow State,play-circle,play-cirkel apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression",Ugyldigt "depends_on" udtryk -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,Gruppe navn +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,Gruppe navn apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Vælg Print Format til Edit DocType: Address,Shipping,Forsendelse DocType: Workflow State,circle-arrow-down,cirkel-pil-ned @@ -2695,23 +2759,23 @@ DocType: SMS Settings,SMS Settings,SMS-indstillinger DocType: Company History,Highlight,Fremhæv DocType: OAuth Provider Settings,Force,Kraft DocType: DocField,Fold,Fold +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,Stigende apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standard Print Format kan ikke opdateres apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Gå glip af -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,Angiv venligst +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,Angiv venligst DocType: Communication,Bot,Bot DocType: Help Article,Help Article,Hjælp artikel DocType: Page,Page Name,Sidenavn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Help: Field Properties apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},Tilføj også det afhængige valutafelt {0} apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,Unzip -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},Forkert værdi i række {0}: {1} skal være {2} {3} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Ingen resultater fundet for '

-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},Indsendt Dokument kan ikke konverteres tilbage til at udarbejde. Overgang rækken {0} +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},Forkert værdi i række {0}: {1} skal være {2} {3} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},Indsendt Dokument kan ikke konverteres tilbage til at udarbejde. Overgang rækken {0} apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,Konfigurer din Google Kalender-integration -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},Sletning {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},Sletning {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Vælg en eksisterende format for at redigere eller starte et nyt format. DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,Bypass begrænset IP-adresse kontrol Hvis Two Factor Auth Enabled -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},Oprettet Brugerdefineret felt {0} i {1} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},Oprettet Brugerdefineret felt {0} i {1} DocType: System Settings,Time Zone,Tidszone apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Specialtegn er ikke tilladt DocType: Communication,Relinked,Relinked @@ -2727,7 +2791,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",Felt "rute" er obligatorisk for Webvisninger +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"Field ""route"" is mandatory for Web Views",Felt "rute" er obligatorisk for Webvisninger apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +205,Insert Column Before {0},Indsæt kolonne inden {0} DocType: Email Account,Add Signature,Tilføj signatur apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Forladt denne samtale @@ -2737,9 +2801,9 @@ DocType: DocField,No Copy,Ingen kopi DocType: Workflow State,qrcode,QR-code DocType: Chat Token,IP Address,IP-adresse DocType: Data Import,Submit after importing,Indsend efter import -apps/frappe/frappe/www/login.html +32,Login with LDAP,Login med LDAP +apps/frappe/frappe/www/login.html +33,Login with LDAP,Login med LDAP DocType: Web Form,Breadcrumbs,Rasp -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,Hvis ejer +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,Hvis ejer DocType: Data Migration Mapping,Push,Skubbe DocType: OAuth Authorization Code,Expiration time,udløb tid DocType: Web Page,Website Sidebar,Website Sidebar @@ -2750,12 +2814,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} af apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,"All-store bogstaver er næsten lige så let at gætte, da alle-små bogstaver." DocType: Feedback Trigger,Email Fieldname,E-mail Feltnavn DocType: Website Settings,Top Bar Items,Top Bar Varer -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","E-mail-id skal være unikt, er e-mail-konto allerede findes \ for {0}" DocType: Notification,Print Settings,Udskriftsindstillinger DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Maks Vedhæftede -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Klientnøgle er påkrævet +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,Klientnøgle er påkrævet DocType: Calendar View,End Date Field,Slutdato Field DocType: Desktop Icon,Page,Side apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Kunne ikke finde {0} i {1} @@ -2764,21 +2826,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,Knowledge Base DocType: Workflow State,briefcase,mappe apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},Værdi kan ikke ændres for {0} DocType: Feedback Request,Is Manual,er Manual -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},Vedlagt {0} # {1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},Vedlagt {0} # {1} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style repræsenterer knap farve: Succes - Grøn, Danger - Rød, Inverse - Sort, Primary - Mørkeblå, Info - Lyseblå, Advarsel - Orange" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Row Status DocType: Workflow Transition,Workflow Transition,Workflow Transition apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,{0} måneder siden apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Oprettet af -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,Dropbox Setup +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,Dropbox Setup DocType: Workflow State,resize-horizontal,resize-horisontale DocType: Chat Message,Content,Indhold DocType: Data Migration Run,Push Insert,Skub Indsæt apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,Gruppe Node DocType: Communication,Notification,Notifikation DocType: DocType,Document,Dokument -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},Serien {0} allerede anvendes i {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,Ikke-understøttet filformat +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},Serien {0} allerede anvendes i {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,Ikke-understøttet filformat DocType: DocField,Code,Kode DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Alle mulige Workflow stater og roller arbejdsgangen. Docstatus Valg: 0 er "frelst", 1 "Indsendte" og 2 "Annulleret"" DocType: Website Theme,Footer Text Color,Footer Tekstfarve @@ -2789,13 +2851,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Ugyldige betaling gateway legitimationsoplysninger DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Dette er skabelonfilen, der genereres med kun rækkerne, der har en vis fejl. Du skal bruge denne fil til rettelse og import." apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Set Tilladelser om dokumenttyper og roller -apps/frappe/frappe/model/meta.py +160,No Label,ingen Label +DocType: Data Migration Run,Remote ID,Fjern-ID +apps/frappe/frappe/model/meta.py +205,No Label,ingen Label +DocType: System Settings,Use socketio to upload file,Brug socketio til at uploade filen apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,Indeksering brudt apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,forfriskende apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,Genoptag apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,Ændret af DocType: Address,Tripura,Tripura DocType: About Us Settings,"""Company History""",'Firmahistorie' +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,"Dette dokument er blevet ændret, efter at e-mailen blev sendt." +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,Vis rapport DocType: Address,Tamil Nadu,Tamil Nadu DocType: Email Rule,Email Rule,E-mail-regel apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document","For at stoppe med at sende gentagne fejlmeddelelser fra systemet, har vi markeret Deaktiveret felt i Auto Repeat-dokumentet" @@ -2809,7 +2875,7 @@ DocType: Notification,Send alert if this field's value changes,"Send besked, hvi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Vælg en DocType at lave et nyt format apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,'Modtagere' er ikke angivet apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,lige nu -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Ansøg +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,Ansøg DocType: Footer Item,Policy,Politik apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} Indstillinger ikke fundet DocType: Module Def,Module Def,Modul Def @@ -2823,7 +2889,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,Ved DocType: Print Settings,Allow page break inside tables,Tillad sideskift inde i tabeller DocType: Email Account,SMTP Server,SMTP-server DocType: Print Format,Print Format Help,Print Format Hjælp -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,Med grupper +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,Med grupper DocType: DocType,Beta,Beta apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,Begræns ikon valg for alle brugere. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},restaureret {0} som {1} @@ -2832,8 +2898,9 @@ DocType: DocField,Translatable,oversætbare DocType: Event,Every Month,Hver måned DocType: Letter Head,Letter Head in HTML,Brevhoved i HTML DocType: Web Form,Web Form,Web Form +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},Dato {0} skal være i format: {1} DocType: About Us Settings,Org History Heading,Org History Overskrift -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Undskyld. Du har nået det maksimale brugeren grænse for dit abonnement. Du kan enten deaktivere en eksisterende bruger eller købe en højere abonnement. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Undskyld. Du har nået det maksimale brugeren grænse for dit abonnement. Du kan enten deaktivere en eksisterende bruger eller købe en højere abonnement. DocType: Print Settings,Allow Print for Cancelled,Tillad Print til Annulleret DocType: Communication,Integrations can use this field to set email delivery status,Integrationer kan bruge dette felt til at indstille e-mail-leveringsstatus DocType: Web Form,Web Page Link Text,Hjemmeside Link-tekst @@ -2846,13 +2913,12 @@ DocType: GSuite Settings,Allow GSuite access,Tillad GSuite adgang DocType: DocType,DESC,DESC DocType: DocType,Naming,Navngivning DocType: Event,Every Year,Hvert år -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,Vælg alt +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,Vælg alt apps/frappe/frappe/config/setup.py +247,Custom Translations,Brugerdefinerede Oversættelser apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,Fremskridt apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,efter rolle apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,manglende felter -apps/frappe/frappe/email/smtp.py +188,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto fra Opsætning> Email> E-mail-konto -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,Ugyldigt feltnavn '{0}' i autoname +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,Ugyldigt feltnavn '{0}' i autoname apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Søg i en dokumenttype apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,Tillad felt forbliver redigerbare selv efter indsendelse DocType: Custom DocPerm,Role and Level,Rolle og niveau @@ -2861,14 +2927,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Tilpassede rapporter DocType: Website Script,Website Script,Website Script DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Hvis du ikke bruger eget publiceret Google Apps Script-webapp, kan du bruge standard https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec" apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,Tilpassede HTML-skabeloner til udskrivning af transaktioner. -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,Orientering +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,Orientering DocType: Workflow,Is Active,Er Aktiv -apps/frappe/frappe/desk/form/utils.py +111,No further records,Ikke flere poster +apps/frappe/frappe/desk/form/utils.py +114,No further records,Ikke flere poster DocType: DocField,Long Text,Lang tekst DocType: Workflow State,Primary,Primær -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},Du må ikke ændre rækkerne ovenfor {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},Du må ikke ændre rækkerne ovenfor {0} DocType: Web Form,Go to this URL after completing the form (only for Guest users),Gå til denne webadresse efter at have udfyldt formularen (kun for gæstebrugere) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Ctrl + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Mere information DocType: Data Migration Mapping,Field Maps,Feltkort DocType: Desktop Icon,Desktop Icon,Skrivebordsikon @@ -2889,13 +2955,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,Stripe-indstillinger DocType: Data Migration Mapping,Data Migration Mapping,Data Migration Kortlægning apps/frappe/frappe/www/login.py +89,Invalid Login Token,Ugyldig login Token -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,Kassér +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,Kassér apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,1 time siden DocType: Website Settings,Home Page,Hjemmeside DocType: Error Snapshot,Parent Error Snapshot,Parent Fejl Snapshot -DocType: Kanban Board,Filters,Filtre +DocType: Prepared Report,Filters,Filtre DocType: Workflow State,share-alt,aktie-alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},Kø skal være en af {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},Kø skal være en af {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2914,12 +2980,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,Script eller Query rapporter
 DocType: Workflow Document State,Workflow Document State,Workflow Document State
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,Filen er for stor
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,E-mailkonto tilføjet flere gange
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,E-mailkonto tilføjet flere gange
 DocType: Payment Gateway,Payment Gateway,Betaling Gateway
 DocType: Portal Settings,Hide Standard Menu,Skjul Standardmenuen
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,Tilføj / Administrer e-mail domæner.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},Kan ikke annullere inden godkendelse. Se Overgang {0}
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,Print Format {0} er deaktiveret
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},Kan ikke annullere inden godkendelse. Se Overgang {0}
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Format {0} er deaktiveret
 ,Address and Contacts,Adresse og kontaktpersoner
 DocType: Notification,Send days before or after the reference date,Send dage før eller efter skæringsdatoen
 DocType: User,Allow user to login only after this hour (0-24),Tillad brugeren at logge først efter denne time (0-24)
@@ -2929,7 +2995,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,Forudsigelige udskiftninger som '@' i stedet for 'a' ikke hjælper meget.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Tildelt af mig
 apps/frappe/frappe/utils/data.py +528,Zero,Nul
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ikke i Udviklings-tilstand! Sat i site_config.json eller lav 'Brugerdefineret' DocType.
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ikke i Udviklings-tilstand! Sat i site_config.json eller lav 'Brugerdefineret' DocType.
 DocType: Workflow State,globe,kloden
 DocType: System Settings,dd.mm.yyyy,dd.mm.åååå
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,Skjul feltet i Standard Print Format
@@ -2942,19 +3008,21 @@ DocType: DocType,Allow Import (via Data Import Tool),Tillad Import (via Dataimpo
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,Sr
 DocType: DocField,Float,Float
 DocType: Print Settings,Page Settings,Sideindstillinger
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,Gemmer ...
 DocType: Auto Repeat,Submit on creation,Godkend ved oprettelse
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,Forkert adgangskode
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,Forkert adgangskode
 DocType: Contact,Purchase Master Manager,Indkøb Master manager
 DocType: Module Def,Module Name,Modulnavn
 DocType: DocType,DocType is a Table / Form in the application.,DocType er en tabel / formular i ansøgningen.
 DocType: Social Login Key,Authorize URL,Tillad URL
 DocType: Email Account,GMail,GMail
 DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} Rapport
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Rapport
 DocType: SMS Settings,Use POST,Brug POST
 DocType: Communication,SMS,SMS
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,Hent billeder
 DocType: DocType,Web View,Web View
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,Advarsel: dette Print Format er gamle stil og kan ikke genereres via API.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,Advarsel: dette Print Format er gamle stil og kan ikke genereres via API.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,Totaler
 DocType: DocField,Print Width,Print Bredde
 ,Setup Wizard,Setup Wizard
@@ -2963,6 +3031,7 @@ DocType: Chat Message,Visitor,Besøgende
 DocType: User,Allow user to login only before this hour (0-24),Tillad brugeren at logge kun inden denne time (0-24)
 DocType: Social Login Key,Access Token URL,Adgangstoken URL
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,Folder er obligatorisk
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} tildelt {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,Ny besked fra webmaster-kontaktsiden
 DocType: Notification,Reference Date,Henvisning Dato
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,Indtast venligst gyldige mobiltelefonnumre
@@ -2989,21 +3058,22 @@ DocType: DocField,Small Text,Lille tekst
 DocType: Workflow,Allow approval for creator of the document,Tillad godkendelse til skaberen af dokumentet
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,API Endpoint Args
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,Administrator adgang {0} på {1} via IP-adresse {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,Administrator adgang {0} på {1} via IP-adresse {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,Lig
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valg 'Dynamic Link' type feltet skal pege på en anden Link Field med muligheder som 'DocType'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valg 'Dynamic Link' type feltet skal pege på en anden Link Field med muligheder som 'DocType'
 DocType: About Us Settings,Team Members Heading,Team Members Udgifts
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,Ugyldigt CSV-format
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Angiv antal sikkerhedskopier
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,Ret venligst
 DocType: DocField,Do not allow user to change after set the first time,Tillad ikke brugeren at ændre sig efter indstille den første gang
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privat eller offentlig?
-apps/frappe/frappe/utils/data.py +633,1 year ago,1 år siden
+apps/frappe/frappe/utils/data.py +635,1 year ago,1 år siden
 DocType: Contact,Contact,Kontakt
 DocType: User,Third Party Authentication,Third Party Authentication
 DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er over den øverste menubjælke.
-DocType: Razorpay Settings,API Secret,API Secret
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,Udlæs rapport:
+DocType: User,API Secret,API Secret
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} Kalender
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,Udlæs rapport:
 DocType: Data Migration Run,Push Update,Tryk opdatering
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,i automatisk gentagelsesdokumentet
 DocType: Email Account,Port,Port
@@ -3014,7 +3084,7 @@ DocType: Website Slideshow,Slideshow like display for the website,Slideshow lige
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,Opsætningsmeddelelser baseret på forskellige kriterier.
 DocType: Communication,Updated,Opdateret
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,Vælg Module
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,Søg eller Opret en ny chat
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,Søg eller Opret en ny chat
 apps/frappe/frappe/sessions.py +29,Cache Cleared,Cache Ryddet
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,Ny e-mail
@@ -3030,7 +3100,7 @@ DocType: Print Settings,PDF Settings,PDF-indstillinger
 DocType: Kanban Board Column,Column Name,Kolonnenavn
 DocType: Language,Based On,Baseret på
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Gør til standard
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,FieldType {0} for {1} kan ikke indekseres
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,FieldType {0} for {1} kan ikke indekseres
 DocType: Communication,Email Account,E-mailkonto
 DocType: Workflow State,Download,Hent
 DocType: Blog Post,Blog Intro,Blog Intro
@@ -3044,7 +3114,7 @@ DocType: Web Page,Insert Code,Indsæt kode
 DocType: Data Migration Run,Current Mapping Type,Aktuel kortlægningstype
 DocType: ToDo,Low,Lav
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Du kan tilføje dynamiske egenskaber fra dokumentet ved hjælp Jinja templating.
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Ugyldig grænse {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},Ugyldig grænse {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Liste en dokumenttype
 DocType: Event,Ref Type,Ref Type
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Hvis du uploader nye rekorder, forlader "navn" (ID) søjle tom."
@@ -3066,21 +3136,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N
 DocType: Print Settings,Send Print as PDF,Send udskrift som PDF
 DocType: Web Form,Amount,Beløb
 DocType: Workflow Transition,Allowed,Tilladt
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,Der kan kun være én Fold i en form
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,Der kan kun være én Fold i en form
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},Kan ikke skrive filformat til {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Gendan til standardindstillinger?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ugyldig Home Page
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,Ugyldigt login. Prøv igen.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},Valgmuligheder der kræves for Link eller Tabel type felt {0} i række {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},Valgmuligheder der kræves for Link eller Tabel type felt {0} i række {1}
 DocType: Auto Email Report,Send only if there is any data,Send kun hvis der er nogen data
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,Nulstil filtre
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Tilladelse på niveau 0 skal indstilles, før der indstilles højere niveauer"
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,Nulstil filtre
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Tilladelse på niveau 0 skal indstilles, før der indstilles højere niveauer"
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Opgave lukket af {0}
 DocType: Integration Request,Remote,Fjern
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Beregn
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Vælg venligst DocType først
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,Bekræft din e-mail
-apps/frappe/frappe/www/login.html +40,Or login with,Eller login med
+apps/frappe/frappe/www/login.html +41,Or login with,Eller login med
 DocType: Error Snapshot,Locals,Lokale
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommunikeres via {0} på {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} omtalte dig i en kommentar i {1}
@@ -3090,23 +3160,24 @@ DocType: Integration Request,Integration Type,Integration Type
 DocType: Newsletter,Send Attachements,Send vedhæftede filer
 DocType: Transaction Log,Transaction Log,Transaktionslog
 DocType: Contact Us Settings,City,By
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,Ctrl + Enter for at indsende
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,Ctrl + Enter for at indsende
 DocType: DocField,Perm Level,Perm Level
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,Se dokument
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Begivenheder ifølge dagens kalender
 DocType: Web Page,Web Page,Hjemmeside
 DocType: Workflow Document State,Next Action Email Template,Næste handling e-mail skabelon
 DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},'I Global søgning' er ikke tilladt for type {0} i række {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},'I Global søgning' er ikke tilladt for type {0} i række {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,Se liste
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},Dato skal være i format: {0}
 DocType: Workflow,Don't Override Status,Må ikke Tilsidesæt status
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Giv en rating.
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback anmodning
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Søgeord
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,Den første bruger: dig selv
 DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
+DocType: Prepared Report,Report Start Time,Rapport Starttid
 apps/frappe/frappe/config/setup.py +112,Export Data,Eksporter data
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,Vælg kolonner
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,Vælg kolonner
 DocType: Translation,Source Text,Kilde Tekst
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,Manglende parametre for login
 DocType: Workflow State,folder-open,mappe-open
@@ -3119,7 +3190,7 @@ DocType: Property Setter,Set Value,Set Value
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Skjul felt i formular
 DocType: Webhook,Webhook Data,Webhook Data
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},Oprettelse af {0}
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,Ulovlig adgangs-token. Prøv igen
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,Ulovlig adgangs-token. Prøv igen
 apps/frappe/frappe/public/js/frappe/desk.js +92,"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/core/doctype/communication/communication.js +35,Resend,Send igen
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,"Valgfrit: Alarmen vil blive sendt, hvis dette udtryk er sand"
@@ -3133,8 +3204,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,Niveau
 DocType: Custom DocPerm,Report,Rapport
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Beløb skal være større end 0.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} er gemt
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,Bruger {0} kan ikke omdøbes
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} er gemt
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,Bruger {0} kan ikke omdøbes
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),Feltnavn er begrænset til 64 tegn ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,E-mailgruppeliste
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Et ikon fil med Ico forlængelse. Skal være 16 x 16 px. Fremkommet ved en favicon generator. [favicon-generator.org]
@@ -3147,23 +3218,22 @@ DocType: Website Theme,Background,Baggrund
 DocType: Report,Ref DocType,Ref DocType
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,"Indtast venligst Client ID, før social login er aktiveret"
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,Tilføj venligst en bedømmelse
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,{0}: Kan ikke indstille ændre uden annuller
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{0}: Cannot set Amend without Cancel,{0}: Kan ikke indstille ændre uden annuller
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +25,Full Page,Fuld side
 DocType: DocType,Is Child Table,Er Child Table
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} år siden
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} skal være en af {1}
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} skal være en af {1}
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} læser i øjeblikket dette dokument
 apps/frappe/frappe/config/core.py +52,Background Email Queue,E-mailkø i baggrunden
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,Nulstil adgangskode
 DocType: Communication,Opened,Åbnet
 DocType: Workflow State,chevron-left,chevron-venstre
 DocType: Communication,Sending,Sender
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,Ikke tilladt fra denne IP-adresse
+apps/frappe/frappe/auth.py +272,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.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,Installer applikationer.
 DocType: Contact,Last Name,Efternavn
 DocType: Event,Private,Privat
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,Ingen advarsler for dag
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,Ingen advarsler for dag
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Send e-mail med udskriften vedhæftet som PDF (anbefales)
 DocType: Web Page,Left,Venstre
 DocType: Event,All Day,Hele dagen
@@ -3174,10 +3244,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",Billede Field (Sk
 apps/frappe/frappe/utils/bot.py +43,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/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning> Udskrivning og branding> Adresseskabelon.
 DocType: Contact,Gender,Køn
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,mangler Obligatorisk information:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,"Field '{0}' kan ikke indstilles som enestående, da det har ikke-entydige værdier"
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,mangler Obligatorisk information:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,"Field '{0}' kan ikke indstilles som enestående, da det har ikke-entydige værdier"
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Tjek forespørgselswebadresse
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,Kun 200 indsatse tilladt i én anmodning
 DocType: Footer Item,URL,URL
@@ -3193,12 +3262,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Træ
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,Du har ikke tilladelse til at udskrive denne rapport
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Brugertilladelser
 DocType: Workflow State,warning-sign,advarsel-skilt
+DocType: Prepared Report,Prepared Report,Udarbejdet rapport
 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
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,tekst i dokumenttype
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Kør test
-apps/frappe/frappe/handler.py +94,Logged Out,Logget ud
+apps/frappe/frappe/handler.py +95,Logged Out,Logget ud
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Mere...
 DocType: System Settings,User can login using Email id or Mobile number,Bruger kan logge ind med e-mail-id eller mobilnummer
 DocType: Bulk Update,Update Value,Opdatering Value
@@ -3206,12 +3276,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},M
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,Vælg et nyt navn for at omdøbe
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,Ugyldig kolonne
 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/request.js +167,Something went wrong,Noget gik galt
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,Kun {0} indtastninger vist. Venligst filtrer for mere specifikke resultater.
 DocType: System Settings,Number Format,Nummerformat
 DocType: Auto Repeat,Frequency,Frekvens
 DocType: Custom Field,Insert After,Indsæt Efter
-DocType: Report,Report Name,Rapport Navn
+DocType: Prepared Report,Report Name,Rapport Navn
 DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Color
 DocType: Notification,Save,Gem
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,Næste Planlagt Dato
@@ -3224,13 +3295,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,Standard
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} tilføjet
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Søg efter '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,Venligst gemme rapporten først
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Venligst gemme rapporten først
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonnenter tilføjet
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,Ikke I
 DocType: Workflow State,star,stjerne
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,Hub
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,værdier adskilt af kommaer
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,Max width for type Currency is 100px in row {0},Max bredde for type Valuta er 100px i række {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +281,values separated by commas,værdier adskilt af kommaer
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Max width for type Currency is 100px in row {0},Max bredde for type Valuta er 100px i række {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Venligst dele din feedback til {0}
 apps/frappe/frappe/config/website.py +13,Content web page.,Hjemmeside-indhold.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Tilføj en ny rolle
@@ -3243,15 +3314,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,Records for følgende doktypes vil blive filtreret
 DocType: Blog Settings,Blog Introduction,Blog Introduktion
 DocType: Address,Office,Kontor
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,Denne kanbantavle vil være privat
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,Denne kanbantavle vil være privat
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standard rapporter
 DocType: User,Email Settings,E-mail-indstillinger
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,Indtast venligst din adgangskode for at fortsætte
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,Indtast venligst din adgangskode for at fortsætte
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,Ikke et gyldigt LDAP bruger
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} ikke en gyldig stat
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} ikke en gyldig stat
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,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
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,Søgefelt {0} er ikke gyldig
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,Søgefelt {0} er ikke gyldig
 DocType: Workflow State,ok-circle,ok-cirkel
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Du kan finde ting ved at spørge "finde orange i kundernes
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,Undskyld! Bruger skal have fuld adgang til deres egen rekord.
@@ -3267,21 +3338,21 @@ DocType: DocField,Unique,Unik
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Delvis succes
 DocType: Email Account,Service,Service
 DocType: File,File Name,Filnavn
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),Fandt du ikke {0} for {0} ({1})
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),Fandt du ikke {0} for {0} ({1})
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Ups, er det ikke tilladt at vide, at"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Næste
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,Du er blevet logget ud
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,Du er blevet logget ud
 DocType: Calendar View,Calendar View,Kalendervisning
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Rediger Format
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,Komplet Registrering
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,Komplet Registrering
 DocType: GCalendar Settings,Enable,Aktiver
-DocType: Google Maps,Home Address,Hjemmeadresse
+DocType: Google Maps Settings,Home Address,Hjemmeadresse
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),Ny {0} (Ctrl + B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,"Top Bar Farve og tekstfarve er de samme. De bør have god kontrast, der skal læses."
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Du kan kun uploade op til 5000 poster på én gang. (Kan være mindre i nogle tilfælde)
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},Utilstrækkelig tilladelse til {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),Rapporten blev ikke gemt (der var fejl)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,Kan ikke ændre header indhold
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),Rapporten blev ikke gemt (der var fejl)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,Kan ikke ændre header indhold
 DocType: Print Settings,Print Style,Print Style
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Ikke knyttet til nogen post
 DocType: Custom DocPerm,Import,Import
@@ -3310,9 +3381,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,Venligst Opdater for at få den nyeste dokument.
 DocType: User,Security Settings,Sikkerhedsindstillinger
 DocType: Website Settings,Operators,Operatører
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,Tilføj kolonne
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,Tilføj kolonne
 ,Desktop,Skrivebord
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},Eksportrapport: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},Eksportrapport: {0}
 DocType: Auto Email Report,Filter Meta,Filter Meta
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst, der skal vises for Link til webside, hvis denne form har en webside. Link rute automatisk genereret baseret på `page_name` og` parent_website_route`"
 DocType: Feedback Request,Feedback Trigger,Feedback Trigger
@@ -3339,6 +3410,6 @@ DocType: Bulk Update,Max 500 records at a time,Max 500 poster ad gangen
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Hvis dine data er i HTML, skal du kopiere og indsætte den nøjagtige HTML-kode med tags."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,Kan ikke åbne den vedhæftede fil. Udlæste du den som en CSV-fil?
 DocType: DocField,Ignore User Permissions,Ignorér brugertilladelser
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,Spørg din administrator for at bekræfte din tilmelding
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,Spørg din administrator for at bekræfte din tilmelding
 DocType: Domain Settings,Active Domains,Aktive domæner
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,Vis Log
diff --git a/frappe/translations/de.csv b/frappe/translations/de.csv
index 1d7fc4b211..29a8c127ba 100644
--- a/frappe/translations/de.csv
+++ b/frappe/translations/de.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,Bitte wählen Sie ein Feld Betrag.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Zum Schließen Esc drücken
-apps/frappe/frappe/desk/form/assign_to.py +158,"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/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}",Eine neue Aufgabe {0} wurde Ihnen von {1} zugewiesen. {2}
 DocType: Email Queue,Email Queue records.,E-Mail-Queue Aufzeichnungen.
 DocType: Address,Punjab,Punjab
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,Viele Elemente auf einmal umbenennen durch Hochladen einer .CSV-Datei
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,Webseite
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Sie müssen angemeldet sein um auf diese Seite zuzugreifen
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Hinweis: Mehrere Sitzungen wird im Falle einer mobilen Gerät erlaubt sein
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},Aktiviert E-Mail-Posteingang für Benutzer {users}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},Aktiviert E-Mail-Posteingang für Benutzer {users}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Diese E-Mail kann nicht versendet werden. Sie haben das Sendelimit von {0} E-Mails für diesen Monat überschritten.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,{0} endgültig übertragen?
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Dateien herunterladen
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} Baumstruk
 DocType: User,User Emails,Benutzer E-Mails
 DocType: User,Username,Benutzername
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,Zip importieren
-apps/frappe/frappe/model/base_document.py +554,Value too big,Wert zu groß
+apps/frappe/frappe/model/base_document.py +563,Value too big,Wert zu groß
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,Skript-Test ausführen
 DocType: Data Import,Total Rows,Gesamte Zeilen
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,Logs
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,"Es ist notwendig, diese Handlung heute selbst für die oben erwähnten wiederkehrenden zu nehmen"
 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 +539,Rename {0},{0} umbenennen
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},{0} umbenennen
 DocType: Workflow State,zoom-out,verkleinern
 apps/frappe/frappe/public/js/legacy/form.js +66,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 +1083,Table {0} cannot be empty,Tabelle {0} darf nicht leer sein
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,Tabelle {0} darf nicht leer sein
 DocType: SMS Parameter,Parameter,Parameter
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,Mit Buchungskonto
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,Dokument wurde geändert!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,Mit Buchungskonto
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,Bilder
 DocType: Activity Log,Reference Owner,Referenz Besitzer
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Wenn diese Option aktiviert ist, kann sich der Benutzer von jeder IP-Adresse aus mit der Zwei-Faktor-Authentifizierung anmelden. Dies kann auch für alle Benutzer in den Systemeinstellungen festgelegt werden"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Kleinste zirkulierenden Brucheinheit (Münze). Für zB 1 Cent für USD und es sollte als 0,01 eingegeben werden"
 DocType: Social Login Key,GitHub,GitHub
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, Zeile {1}"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, Zeile {1}"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Bitte geben Sie eine Fullname.
-apps/frappe/frappe/model/document.py +1057,Beginning with,Beginnend mit
+apps/frappe/frappe/model/document.py +1058,Beginning with,Beginnend mit
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Vorlage für Datenimport
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Übergeordnetes Element
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Wenn aktiviert, wird die Passwortstärke auf der Grundlage des Minimum Password Score Wertes erzwungen. Ein Wert von 2 ist mittelstark und 4 sehr stark."
 DocType: About Us Settings,"""Team Members"" or ""Management""",„Teammitglieder“ oder „Management“
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',Standard für 'Prüfen'-Feldtyp muss entweder '0' oder '1' sein
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',Standard für 'Prüfen'-Feldtyp muss entweder '0' oder '1' sein
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,Gestern
 DocType: Contact,Designation,Bezeichnung
 DocType: Test Runner,Test Runner,Tester
@@ -66,10 +65,11 @@ 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 +47,Danger,Gefahr
-apps/frappe/frappe/www/login.html +20,Email Address,E-Mail-Addresse
+apps/frappe/frappe/www/login.html +21,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/misc/tools.js +10,Export not allowed. You need {0} role to export.,Export nicht erlaubt. Rolle {0} wird gebraucht zum exportieren.
+DocType: System Settings,In seconds,In Sekunden
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,Abbrechen von {0} Dokumenten?
 DocType: DocType,Is Published Field,Ist Veröffentlicht Feld
 DocType: GCalendar Settings,GCalendar Settings,GCalender Einstellungen
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,E-Mail-Gruppe
 DocType: Note,Seen By,gesehen durch
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,Mehrere hinzufügen
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,Kein gültiges Benutzerbild.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Benutzer
 DocType: Success Action,First Success Message,Erste Erfolgsmeldung
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,Nicht wie
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Angezeigten Karteikartenreiter für ein Feld einstellen
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},Falscher Wert: {0} muss {1} {2} sein
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},Falscher Wert: {0} muss {1} {2} sein
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","Feldeigenschaften ändern (verstecken, nur-lesen, Berechtigung etc.)"
 DocType: Workflow State,lock,sperren
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Einstellungen Kontakt
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,Administrator hat sich angemeldet
+apps/frappe/frappe/core/doctype/user/user.py +917,Administrator Logged In,Administrator hat sich angemeldet
 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 +34,Add a tag ...,Füge einen Tag hinzu ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},Neu {0}: #{1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},Neu {0}: #{1}
 DocType: Data Migration Run,Insert,Einfügen
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},{0} auswählen
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,Bitte geben Sie die Basis-URL ein
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,Dokumententypen
 DocType: Address,Jammu and Kashmir,Jammu und Kaschmir
 DocType: Workflow,Workflow State Field,Workflow-Zustandsfeld
-apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,Bitte legen Sie ein Konto an oder melden Sie sich an um zu beginnen
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,Bitte legen Sie ein Konto an oder melden Sie sich an um zu beginnen
 DocType: Blog Post,Guest,Gast
 DocType: DocType,Title Field,Bezeichnungs-Feld
 DocType: Error Log,Error Log,Fehlerprotokoll
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"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."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} ist zwingend erforderlich
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} ist zwingend erforderlich
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","Namensoptionen:
  1. Feld: [Feldname] - Nach Feld
  2. naming_series: - Nach der Namensreihe (das Feld naming_series muss vorhanden sein)
  3. Eingabeaufforderung - Benutzer nach einem Namen fragen
  4. [Serie] - Reihe nach Präfix (getrennt durch einen Punkt); zum Beispiel PRE. #####
  5. Verketten: [Feldname1], [Feldname2], ... [FeldnameX] - Nach Feldname Verkettung (Sie können so viele Felder verketten, wie Sie möchten. Series-Option funktioniert auch)
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,Besitzer DocType: Communication,Visit,Besuch DocType: LDAP Settings,LDAP Search String,LDAP Suchstring DocType: Translation,Translation,Übersetzung -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Setup> Formular anpassen apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Hr. DocType: Custom Script,Client,Kunde apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,Wählen Sie Spalte @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,Importprotokoll apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Diashows in Webseiten einbetten apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,Absenden DocType: Workflow Action Master,Workflow Action Name,Workflow-Aktionsname -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,DocType kann nicht zusammengeführt werden +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,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 +270,Not a zip file,Nicht eine Zip-Datei DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -167,10 +167,10 @@ DocType: Webhook,Doc Event,Doc-Ereignis apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,Benutzer DocType: Braintree Settings,Braintree Settings,Braintree Einstellungen DocType: Website Theme,lowercase,Kleinbuchstaben -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,Bitte wählen Sie Spalten basierend auf apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,Filter speichern DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},Kann {0} nicht löschen +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,Keine Vorfahren von DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,Newsletter wurde bereits gesendet apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","Anmeldesitzung abgelaufen, Seite aktualisieren, um es erneut zu versuchen" @@ -180,16 +180,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,E-Mail abbestellen DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Für beste Ergebnisse bitte ein Bild mit ca. 150 Pixeln Breite und transparentem Hintergrund auswählen. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Drittanbieter-Apps apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,Der erste Benutzer wird zum System-Manager (kann später noch geändert werden). +apps/frappe/frappe/contacts/doctype/address/address.py +194,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standard-Adressvorlage gefunden. Bitte erstellen Sie unter Setup> Drucken und Branding> Adressvorlage eine neue Vorlage. apps/frappe/frappe/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,DocType muss für das ausgewählte Doc-Ereignis übermittelt werden ,App Installer,App-Installer DocType: Workflow State,circle-arrow-up,Kreis-Pfeil-nach-oben DocType: Email Domain,Email Domain,E-Mail-Domain DocType: Workflow State,italic,kursiv -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,"{0}: Kann nicht auf ""Import"" eingestellt werden ohne ""Erstellen""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,"{0}: Kann nicht auf ""Import"" eingestellt werden ohne ""Erstellen""" DocType: SMS Settings,Enter url parameter for message,URL-Parameter für Nachricht eingeben apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,Bericht in Ihrem Browser anzeigen apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Veranstaltungs- und andere Kalender apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,"Alle Felder müssen ausgefüllt werden, um den Kommentar abzugeben." +DocType: Print Settings,Printer Name,Druckername +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,Spalten durch Ziehen sortieren apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Breite kann in Pixel oder % eingestellt werden. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,Start DocType: Contact,First Name,Vorname @@ -199,12 +202,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,Dateien apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Berechtigungen werden so auf Benutzer angewandt, wie sie den Rollen zugeordnet sind." apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,"Sie sind nicht berechtigt E-Mails, die sich auf dieses Dokument beziehen, zu versenden" -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Aktivieren Sie diese Option, wenn Sie testen Ihre Zahlung der Sandbox-API" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,"Sie sind nicht berechtigt, eine Standard-Webseiten-Vorlage zu löschen" DocType: Data Import,Log Details,Protokolldetails DocType: Feedback Trigger,Example,Beispiel DocType: Webhook Header,Webhook Header,Webhook Header +DocType: Print Settings,Print Server,Druck Server DocType: Workflow State,gift,Geschenk DocType: Workflow Action,Completed By,Vervollständigt von apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Benötigt @@ -224,12 +228,13 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS 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/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,Dokumentation +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,Dokumentation DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,{0} Elemente dauerhaft löschen? apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,Nicht Erlaubt DocType: DocShare,Internal record of document shares,Interne Aufzeichnung von freigegebenen Dokumenten DocType: Workflow State,Comment,Kommentar +DocType: Data Migration Plan,Postprocess Method,Methode des Folgeprozess apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,Foto machen apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","Sie können bereits übertragene Unterlagen verändern, indem Sie diese stornieren und dann abändern." DocType: Data Import,Update records,Datensätze aktualisieren @@ -237,20 +242,20 @@ 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/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,Speichern als +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,Speichern als DocType: Communication,Seen,Gesehen apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,Weiteres DocType: System Settings,Run scheduled jobs only if checked,"Geplante Aufträge nur ausführen, wenn aktiviert" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Wird nur dann angezeigt wenn Überschriften aktiviert sind apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,archivieren -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,Datei-Upload +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,Datei-Upload DocType: Activity Log,Message,Mitteilung DocType: Communication,Rating,Wertung DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Druckbreite des Feldes, wenn das Feld eine Spalte aus einer Tabelle ist" DocType: Dropbox Settings,Dropbox Access Key,Dropbox-Zugangsschlüssel -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,Falscher Feldname {0} in der add_fetch-Konfiguration des benutzerdefinierten Skripts +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,Falscher Feldname {0} in der add_fetch-Konfiguration des benutzerdefinierten Skripts DocType: Workflow State,headphones,Kopfhörer -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,"Das Passwort ist erforderlich, oder wählen Sie Warten Passwort" +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,"Das Passwort ist erforderlich, oder wählen Sie Warten Passwort" DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,z. B. replies@yourcomany.com. Alle Antworten werden in dieses Postfach gelegt. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL DocType: Data Migration Run,Current Mapping,Aktuelle Zuordnung @@ -261,15 +266,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Gruppen von DocTypes apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Google Maps-Integration DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,Setze dein Passwort zurück +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,Wochenenden anzeigen DocType: Workflow State,remove-circle,Entfernen-Kreis DocType: Help Article,Beginner,Anfänger DocType: Contact,Is Primary Contact,Ist primärer Ansprechpartner apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,"JavaScript, das dem Kopfbereich der Seite angehängt wird" -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,Das Drucken von Entwürfen ist nicht erlaubt. +apps/frappe/frappe/www/printview.py +80,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 +12,Reset to defaults,Auf Standardeinstellungen zurücksetzen DocType: Workflow,Transition Rules,Übergangsbestimmungen apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Beispiel: -DocType: Google Maps,Google Maps,Google Maps 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 apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten @@ -277,18 +282,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,Aktualis apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,"Fehler: Dokument wurde geändert, nachdem es geöffnet wurde" apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} abgemeldet: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kann nicht als ""als übertragen markieren"" eingestellt werden, wenn nicht übertragbar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kann nicht als ""als übertragen markieren"" eingestellt werden, wenn nicht übertragbar" DocType: Transaction Log,Row Index,Zeilenindex DocType: Social Login Key,Facebook,Facebook -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""","Gefiltert nach ""{0}""" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""","Gefiltert nach ""{0}""" DocType: Salutation,Administrator,Administrator DocType: Activity Log,Closed,Geschlossen DocType: Blog Settings,Blog Title,Blog-Name apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,Standardrollen können nicht deaktiviert werden -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,Chat-Typ +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,Chat-Typ DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,"Kann in ""sortieren nach"" keine Unterabfrage verwenden." +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,"Kann in ""sortieren nach"" keine Unterabfrage verwenden." DocType: Web Form,Button Help,Hilfetaste DocType: Kanban Board Column,purple,lila DocType: About Us Settings,Team Members,Teammitglieder @@ -303,27 +308,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",SQL Bedingungen. DocType: User,Get your globally recognized avatar from Gravatar.com,Allgemein wiedererkennbaren Avatar von Gravatar.com abrufen apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","Ihr Abonnement ist abgelaufen am {0}. Zum erneuern, {1}." DocType: Workflow State,plus-sign,Pluszeichen -apps/frappe/frappe/__init__.py +918,App {0} is not installed,App {0} ist nicht installiert +apps/frappe/frappe/__init__.py +994,App {0} is not installed,App {0} ist nicht installiert DocType: Data Migration Plan,Mappings,Zuordnungen DocType: Notification Recipient,Notification Recipient,Benachrichtigungsempfänger DocType: Workflow State,Refresh,Aktualisieren DocType: Event,Public,Öffentlich -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,Nichts anzuzeigen +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,Nichts anzuzeigen DocType: System Settings,Enable Two Factor Auth,Aktivieren Sie zwei Faktor Auth -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[Dringend] Fehler beim Erstellen von wiederkehrenden% s für% s +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[Dringend] Fehler beim Erstellen von wiederkehrenden% s für% s apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Geliked durch DocType: DocField,Print Hide If No Value,Druck verbergen wenn ohne Wert DocType: Kanban Board Column,yellow,gelb -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,Ist Veröffentlicht Feld muss eine gültige Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,Ist Veröffentlicht Feld muss eine gültige Feldname sein apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Anhang hochladen DocType: Block Module,Block Module,Block-Modul apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,Neuer Wert +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,Keine Berechtigung zum Bearbeiten apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Spalte einfügen apps/frappe/frappe/www/contact.html +34,Your email address,Ihre E-Mail-Adresse DocType: Desktop Icon,Module,Modul 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/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,"Bitte stellen Sie sicher, dass die Referenzkommunikationsdokumente nicht zirkulär verknüpft sind." +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,"Bitte stellen Sie sicher, dass die Referenzkommunikationsdokumente nicht zirkulär verknüpft sind." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Neues Format erstellen apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,Bucket kann nicht erstellt werden: {0}. Ändern Sie es in einen eindeutigen Namen. DocType: Webhook,Request URL,URL anfordern @@ -331,7 +337,7 @@ DocType: Customize Form,Is Table,ist eine Tabelle apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,Übernehmen Sie die Benutzerberechtigung für folgende DocTypes DocType: Email Account,Total number of emails to sync in initial sync process ,Gesamtzahl der E-Mails im ersten Synchronisierung Prozess zu synchronisieren DocType: Website Settings,Set Banner from Image,Banner aus Bild einrichten -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Globale Suche +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,Globale Suche DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},Ein neues Konto wurde für Sie erstellt auf {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,Anleitung Emailed @@ -340,8 +346,8 @@ DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-Mail-Flag-Warteschlange apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,Stylesheets für Druckformate apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Kann öffne {0} nicht identifizieren. Versuchen Sie etwas anderes. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,Ihre Information wurde eingereicht -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,Benutzer {0} kann nicht gelöscht werden +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,Ihre Information wurde eingereicht +apps/frappe/frappe/core/doctype/user/user.py +305,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 +143,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. DocType: DocType,App,App @@ -362,8 +368,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Alle Ver DocType: Workflow State,Print,Drucken DocType: User,Restrict IP,IP beschränken apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,Instrumententafel -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,E-Mails können zur Zeit nicht versendet werden -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,Suchen oder Befehl eingeben +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,E-Mails können zur Zeit nicht versendet werden +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,Suchen oder Befehl eingeben DocType: Activity Log,Timeline Name,Timeline-Name DocType: Email Account,e.g. smtp.gmail.com,z. B. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,Neue Regel hinzufügen @@ -378,11 +384,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,H DocType: Top Bar Item,Parent Label,Übergeordnete Bezeichnung apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail." DocType: GCalendar Account,Allow GCalendar Access,Erlaube GCalendar-Zugriff -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,{0} ist ein Pflichtfeld +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,{0} ist ein Pflichtfeld apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,Login-Token erforderlich DocType: Event,Repeat Till,Wiederholen bis apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,Neu apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Bitte setzen Sie die Skript-URL auf die Gsuite-Einstellungen +DocType: Google Maps Settings,Google Maps Settings,Google Maps-Einstellungen apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Laden ... DocType: DocField,Password,Passwort apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,Ihr System wird gerade aktualisiert. Bitte laden Sie diese Seite in einigen Minuten neu @@ -408,7 +415,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,Keine Bilder gefunden. Suchen Sie etwas Neues DocType: Chat Profile,Away,Weg DocType: Currency,Fraction Units,Teileinheiten -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} von {1} bis {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} von {1} bis {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Als erledigt markieren DocType: Chat Message,Type,Typ DocType: Activity Log,Subject,Betreff @@ -417,19 +424,20 @@ DocType: Web Form,Amount Based On Field,"Menge, bezogen auf Feld" apps/frappe/frappe/core/doctype/docshare/docshare.py +34,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 -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} muss als erstes gesetzt sein +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,Die PDF-Generierung ist fehlgeschlagen +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} muss als erstes gesetzt sein apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","Verwenden Sie ein paar Worte, vermeiden gemeinsame Phrasen." DocType: Workflow State,plane,eben apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Wenn neue Datensätze hochgeladen werden, ist - falls vorhanden - ""Bezeichnung von Serien"" Pflicht." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,Alarme für heute -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DocType darf nur vom Administrator umbenannt werden +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,Alarme für heute +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DocType darf nur vom Administrator umbenannt werden DocType: Chat Message,Chat Message,Chatnachricht apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},E-Mail nicht mit {0} bestätigt -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},Wert von {0} geändert +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},Wert von {0} geändert DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Wenn der Benutzer eine Rolle überprüft hat, wird der Benutzer ein "Systembenutzer". "System User" hat Zugriff auf den Desktop" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt. -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,Falz kann nicht am Ende eines Formulars sein +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt. +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,Falz kann nicht am Ende eines Formulars sein DocType: Communication,Bounced,Gesprungen DocType: Deleted Document,Deleted Name,Gelöschte Namen apps/frappe/frappe/config/setup.py +14,System and Website Users,System- und Webseitenbenutzer @@ -437,48 +445,50 @@ DocType: Workflow Document State,Doc Status,Dokumentenstatus DocType: Data Migration Run,Pull Update,Pull-Aktualisierung DocType: Auto Email Report,No of Rows (Max 500),Keine der Zeilen (Max 500) DocType: Language,Language Code,Sprachcode +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Hinweis: Standardmäßig werden E-Mails für fehlgeschlagene Backups gesendet. apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","Ihr Download wird erstellt, dies kann einige Sekunden dauern ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,Filter hinzufügen apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS an folgende Nummern verschickt: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,Ihre Bewertung: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} und {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,Eine Konversation beginnen. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,Ihre Bewertung: +apps/frappe/frappe/email/smtp.py +191,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 unter Setup> E-Mail> E-Mail-Konto +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} und {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,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 DocType: Data Migration Run,Current Mapping Start,Aktueller Mapping-Start apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,E-Mail wurde als Spam markiert DocType: About Us Settings,Website Manager,Webseiten-Administrator -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,Datei hochladen getrennt. Bitte versuche es erneut. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,Ungültiges Suchfeld +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,Datei hochladen getrennt. Bitte versuche es erneut. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,Übersetzungen apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,Sie haben Entwürfe oder abgebrochene Dokumente ausgewählt -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},Das Dokument {0} wurde mit {2} auf den Status {1} festgelegt. -apps/frappe/frappe/model/document.py +1211,Document Queued,anstehendes Dokument +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},Das Dokument {0} wurde mit {2} auf den Status {1} festgelegt. +apps/frappe/frappe/model/document.py +1212,Document Queued,anstehendes Dokument DocType: GSuite Templates,Destination ID,Ziel-ID DocType: Desktop Icon,List,Listenansicht DocType: Activity Log,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,"Feld {0} in Zeile {1} kann nicht ausgeblendet werden, und ist ohne Standardeintrag zwingend erfoderlich" +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,"Feld {0} in Zeile {1} kann nicht ausgeblendet werden, und ist ohne Standardeintrag zwingend erfoderlich" DocType: System Settings,mm/dd/yyyy,MM/TT/JJJJ -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,Ungültiges Passwort: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,Ungültiges Passwort: DocType: Print Settings,Send document web view link in email,Link zur Dokumenten Web-Ansicht in E-Mail senden. apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Ihr Feedback für Dokument {0} erfolgreich gespeichert apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Vorhergehende -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,Zurück: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} Zeilen für {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,Zurück: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} Zeilen für {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Unterwährung, z. B. ""Cent""" apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,Verbindungsname -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Wählen Sie eine hochgeladene Datei +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Wählen Sie eine hochgeladene Datei DocType: Letter Head,Check this to make this the default letter head in all prints,"Hier aktivieren, damit dieser Briefkopf der Standardbriefkopf aller Ausdrucke wird" DocType: Print Format,Server,Server -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,New Kanbantafel +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,New Kanbantafel DocType: Desktop Icon,Link,Verknüpfung apps/frappe/frappe/utils/file_manager.py +122,No file attached,Keine Datei angehängt DocType: Version,Version,Version +DocType: S3 Backup Settings,Endpoint URL,Endpunkt-URL apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,Diagramme DocType: User,Fill Screen,Bildschirm ausfüllen apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,Chat-Profil für Benutzer {user} existiert. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,Berechtigungen werden automatisch auf Standardberichte und Suchvorgänge angewendet. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,Upload fehlgeschlagen -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,Über einen Hochladevorgang bearbeiten +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,Über einen Hochladevorgang bearbeiten apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Dokumententyp ..., z. B. Kunde" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Der Zustand '{0}' ist ungültig DocType: Workflow State,barcode,Barcode @@ -487,22 +497,24 @@ DocType: Country,Country Name,Ländername DocType: About Us Team Member,About Us Team Member,Informationen über die Teammitglieder apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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 -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,Bildfeld muss ein gültiger Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,Bildfeld muss ein gültiger Feldname sein DocType: Chat Token,Token,Zeichen DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (Name) der Einheit, deren Eigenschaft festgelegt werden muss" apps/frappe/frappe/limits.py +84,"To renew, {0}.","So erneuern, {0}." DocType: Website Settings,Website Theme Image Link,Webseite-Thema-Bildverknüpfung DocType: Web Form,Sidebar Items,Elemente der Seitenleiste +DocType: Web Form,Show as Grid,Als Gitter anzeigen apps/frappe/frappe/installer.py +129,App {0} already installed,App {0} bereits installiert -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Keine Vorschau +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,Keine Vorschau DocType: Workflow State,exclamation-sign,Ausrufezeichen apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Berechtigungen anzeigen -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,Timeline-Bereich muss einen Link oder Dynamic Link sein +DocType: Data Import,New data will be inserted.,Neue Daten werden eingefügt. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,Timeline-Bereich muss einen Link oder Dynamic Link sein apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datumspanne apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt-Diagramm apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Seite {0} von {1} DocType: About Us Settings,Introduce your company to the website visitor.,Vorstellung des Unternehmens für Besucher der Webseite. -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json","Verschlüsselungsschlüssel ist ungültig, bitte check site_config.json" +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json","Verschlüsselungsschlüssel ist ungültig, bitte check site_config.json" DocType: SMS Settings,Receiver Parameter,Empfängerparameter DocType: Data Migration Mapping Detail,Remote Fieldname,Entfernter Feldname DocType: Communication,To,An @@ -516,27 +528,28 @@ DocType: Print Settings,Font Size,Schriftgröße DocType: System Settings,Disable Standard Email Footer,Standard-E-Mail-Fußzeile deaktivieren DocType: Workflow State,facetime-video,Apple FaceTime-Video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 Kommentar -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,angesehen +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,angesehen DocType: Notification,Days Before,Tage vor DocType: Workflow State,volume-down,Lautstärke verringern -apps/frappe/frappe/desk/reportview.py +268,No Tags,No Tags +apps/frappe/frappe/desk/reportview.py +270,No Tags,No Tags DocType: DocType,List View Settings,Einstellungen zu Listenansicht DocType: Email Account,Send Notification to,Benachrichtigung senden an DocType: DocField,Collapsible,Faltbar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Gespeichert -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Wofür benötigen Sie Hilfe? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,Wofür benötigen Sie Hilfe? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Optionen zum Auswählen. Jede Option in einer neuen Zeile. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,{0} endgültig abbrechen? DocType: Workflow State,music,Musik +DocType: Website Theme,Text Styles,Textstile apps/frappe/frappe/www/qrcode.html +3,QR Code,QR-Code -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,Zuletzt geändertes Datum +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,Zuletzt geändertes Datum DocType: Chat Profile,Settings,Einstellungen DocType: Print Format,Style Settings,Stileinstellungen apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Y-Achsenfelder -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,Sortierfeld {0} muss ein gültiger Feldname sein -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,Weiter +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,Sortierfeld {0} muss ein gültiger Feldname sein +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Weiter DocType: Contact,Sales Manager,Vertriebsleiter -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,Umbenennen +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,Umbenennen DocType: Print Format,Format Data,Daten formatieren DocType: List Filter,Filter Name,Filtername apps/frappe/frappe/utils/bot.py +91,Like,Wie @@ -545,7 +558,7 @@ DocType: Website Settings,Chat Room Name,Chat-Raumname DocType: OAuth Client,Grant Type,Grant Typ apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,"Prüfen, welche Dokumente von einem Nutzer lesbar sind" DocType: Deleted Document,Hub Sync ID,Hub-Synchronisierungs-ID -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,% als Platzhalter benutzen +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,% als Platzhalter benutzen DocType: Auto Repeat,Quarterly,Quartalsweise apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",E-Mail-Domain existiert für diesen Account noch nicht. Jetzt Erstellen? DocType: User,Reset Password Key,Passwortschlüssel zurücksetzen @@ -561,12 +574,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Mindest-Passwort-Score DocType: DocType,Fields,Felder DocType: System Settings,Your organization name and address for the email footer.,Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Übergeordnete Tabelle +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,Übergeordnete Tabelle apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,S3-Sicherung abgeschlossen! apps/frappe/frappe/config/desktop.py +60,Developer,Entwickler -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,Erstellt +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,Erstellt apps/frappe/frappe/client.py +101,No permission for {doctype},Keine Erlaubnis für {doctype} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{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/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,Vorfahren von apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Root {0} kann nicht gelöscht werden apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,Noch keine Kommentare apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings","Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode über SMS-Einstellungen festlegen" @@ -577,6 +591,7 @@ DocType: Contact,Open,Offen DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,"Definiert Maßnahmen bei bestimmten Zuständen, den nächsten Schritt und erlaubte Rollen." DocType: Data Migration Mapping,Remote Objectname,Entfernter Objektname apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Ein bewährtes Verfahren ist es, den gleichen Satz von Berechtigungen nicht unterschiedlichen Rollen zuzuweisen. Legen Sie stattdessen mehrere Rollen für den gleichen Benutzer an." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,Bitte bestätigen Sie Ihre Aktion für {0} dieses Dokument. DocType: Success Action,Next Actions HTML,Nächste Aktionen HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,Nur {0} per E-Mail Berichte pro Benutzer erlaubt sind DocType: Address,Address Title,Adressen-Bezeichnung @@ -587,32 +602,33 @@ DocType: DefaultValue,DefaultValue,Standardwert DocType: Auto Repeat,Daily,Täglich apps/frappe/frappe/config/setup.py +19,User Roles,Benutzerrollen DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Einstellprogramm für Eigenschaften überschreibt einen Standard-DocType oder eine Feldeigenschaft -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,Aktualisierung nicht möglich : Falsche / ausgelaufene Verknüpfung. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,Aktualisierung nicht möglich : Falsche / ausgelaufene Verknüpfung. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,Lieber weitere Buchstaben oder Wörter hinzufügen apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},Einmal-Passwort (OTP) Registrierungscode von {} DocType: DocField,Set Only Once,Nur einmal festlegen DocType: Email Queue Recipient,Email Queue Recipient,E-Mail-Queue Empfänger DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,Webhook-URL -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,Benutzername {0} ist bereits vorhanden -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,"{0}: Kann nicht auf ""Import"" eingestellt werden, da {1} nicht importierbar ist" +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Benutzername {0} ist bereits vorhanden +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,"{0}: Kann nicht auf ""Import"" eingestellt werden, da {1} nicht importierbar ist" apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},Es befindet sich ein Fehler in der Adressvorlage {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',"{0} ist eine ungültige E-Mail-Adresse in ""Empfänger""" DocType: User,Allow Desktop Icon,Desktop-Symbol zulassen DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Gastgeber -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Spalte {0} bereits vorhanden sind . +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,Spalte {0} bereits vorhanden sind . DocType: ToDo,High,Hoch DocType: S3 Backup Settings,Secret Access Key,Geheimer Zugriffsschlüssel apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Männlich -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret wurde zurückgesetzt. Bei der Anmeldung ist eine erneute Anmeldung erforderlich. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret wurde zurückgesetzt. Bei der Anmeldung ist eine erneute Anmeldung erforderlich. DocType: Communication,From Full Name,Von Vor- und Nachname -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Sie haben keine Zugriffsrechte für den Bericht: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},Sie haben keine Zugriffsrechte für den Bericht: {0} DocType: User,Send Welcome Email,Willkommens-E-Mail senden -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,Filter entfernen +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,Filter entfernen +DocType: Web Form Field,Show in filter,Im Filter anzeigen DocType: Address,Daman and Diu,Daman und Diu -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,Projekt +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,Projekt DocType: Address,Personal,Persönlich apps/frappe/frappe/config/setup.py +125,Bulk Rename,Werkzeug zum Massen-Umbenennen DocType: Email Queue,Show as cc,Stellen Sie als cc @@ -626,12 +642,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,Nicht im Entwicklungsmodus apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,Dateisicherung ist bereit DocType: DocField,In Global Search,In globaler Suche +DocType: System Settings,Brute Force Security,Brute-Force-Sicherheit DocType: Workflow State,indent-left,Einzug links apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,"Es ist riskant, diese Datei zu löschen: {0}. Bitte kontaktieren Sie Ihren System-Manager." DocType: Currency,Currency Name,Währungsbezeichnung apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,keine E-Mails -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,Link abgelaufen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,Wählen Sie Dateiformat +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} Jahr (e) her +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,Link abgelaufen +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,Wählen Sie Dateiformat DocType: Report,Javascript,JavaScript DocType: File,Content Hash,Inhalts-Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,"Speichert die JSON (JavaScript Object Notation) der letzten bekannten Versionen von verschiedenen installierten Apps. Wird verwendet, um Veröffentlichungs-Informationen zu zeigen." @@ -643,16 +661,15 @@ DocType: Auto Repeat,Stopped,Angehalten apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,Wurde nicht entfernt apps/frappe/frappe/desk/like.py +89,Liked,Geliked apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Jetzt senden -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kann kein Standard-Druckformat haben, verwenden Sie Formular anpassen" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kann kein Standard-Druckformat haben, verwenden Sie Formular anpassen" DocType: Report,Query,Abfrage DocType: DocType,Sort Order,Sortierung -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},"""In der Listenansicht"" nicht erlaubt für den Typ {0} in Zeile {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},"""In der Listenansicht"" nicht erlaubt für den Typ {0} in Zeile {1}" DocType: Custom Field,Select the label after which you want to insert new field.,"Bitte Element auswählen, nach dem ein neues Feld eingefügt werden soll." ,Document Share Report,Dokumentenfreigabebericht DocType: Social Login Key,Base URL,Basis-URL DocType: User,Last Login,Letzte Anmeldung apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},Sie können 'Übersetzbar' für Feld {0} nicht festlegen -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},Feldname wird in Zeile {0} benötigt apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Spalte DocType: Chat Profile,Chat Profile,Chatprofil DocType: Custom Field,Adds a custom field to a DocType,Fügt einem DocType ein benutzerdefiniertes Feld hinzu @@ -661,6 +678,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,Wählen Sie mindestens einen Datensatz für den Druck apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,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/form/share.js +36,Shared with {0},Freigegeben für {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,Abmelden DocType: View log,Reference Name,Referenzname @@ -682,17 +700,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opti apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} bis {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Melden von Fehlern während Anfragen. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} wurde zur E-Mail-Gruppe hinzugefügt. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,"Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind" +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,"Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind" apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},Login-Bestätigungscode von {} DocType: Address,Uttar Pradesh,Uttar Pradesh +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,Hinweis: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,Importstatus -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,Datei(en) privat oder öffentlich machen? +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,Datei(en) privat oder öffentlich machen? apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Geplant zum Versand an {0} DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Jeder DocType: Workflow State,backward,Zurück -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt" DocType: Email Queue,Add Unsubscribe Link,Abmelde-Link hinzufügen apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Noch keine Kommentare. Starten Sie eine neue Diskussion. DocType: Workflow State,share,Freigeben @@ -704,6 +723,7 @@ DocType: User,Last IP,Letzte IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Erneuern / Upgrade apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,Ein neues Dokument {0} wurde durch Sie mit {1} geteilt. DocType: Data Migration Connector,Data Migration Connector,Datenmigrations-Connector +DocType: Email Account,Track Email Status,E-Mail-Status verfolgen DocType: Note,Notify Users On Every Login,Benachrichtige Benutzer bei jeder Anmeldung DocType: PayPal Settings,API Password,API Passwort apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Python-Modul eingeben oder Verbindungstyp auswählen @@ -712,6 +732,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Zuletzt a apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Abonnenten anzeigen DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,"Kann die Datei nicht löschen, da sie zu {0} {1} gehört, für die Sie keine Berechtigungen haben" +DocType: Website Theme,Custom JS,Benutzerdefinierte JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Fr. DocType: Website Theme,Background Color,Hintergrundfarbe apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,Beim Versand der E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut. @@ -720,21 +741,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,Kartierung DocType: Web Page,0 is highest,Höchstwert ist 0 apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,"Sind Sie sicher, dass Sie diese Mitteilung an {0} neu verknüpfen wollen?" -apps/frappe/frappe/www/login.html +86,Send Password,Passwort senden +apps/frappe/frappe/www/login.html +87,Send Password,Passwort senden +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Bitte richten Sie das Standard-E-Mail-Konto unter Setup> E-Mail> E-Mail-Konto ein +DocType: Print Settings,Server IP,Server-IP DocType: Email Queue,Attachments,Anhänge apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,"Sie verfügen nicht über die Berechtigungen, um auf dieses Dokument zuzugreifen" DocType: Language,Language Name,Sprache Name DocType: Email Group Member,Email Group Member,Eine E-Mail-Gruppen Mitglied +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,Ihre Anmeldung wurde gesperrt und ist wieder verfügbar in {0} Sekunden apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,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 +313,Duplicate name {0} {1},Doppelter Namen {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},Doppelter Namen {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,Wiederholen DocType: Web Form Field,Web Form Field,Web-Formularfeld apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Feld im Berichtserstellungswerkzeug ausblenden apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,Sie haben eine neue Nachricht von: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,HTML bearbeiten apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,Bitte geben Sie die Weiterleitungs-URL ein -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Setup> Benutzerberechtigungen apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","erzeugt werden Wenn Sie verspätet sind, müssen Sie das Feld "Wiederholen am Tag des Monats" manuell ändern" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,Urspüngliche Benutzerrechte wiederherstellen @@ -759,23 +782,25 @@ DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-Mail Antwort Hilfe apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Berichte des Berichts-Generators werden direkt von diesem verwaltet. Nichts zu tun. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Bitte bestätige deine Email Adresse -apps/frappe/frappe/model/document.py +1056,none of,keiner von +apps/frappe/frappe/model/document.py +1057,none of,keiner von apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,Kopie an mich senden DocType: Dropbox Settings,App Secret Key,App geheimer Schlüssel DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Web-Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Die markierten Elemente werden auf dem Desktop angezeigt -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} kann nicht für Einzel-Typen festgelegt werden +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} kann nicht für Einzel-Typen festgelegt werden DocType: Data Import,Data Import,Datenimport apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,Diagramm konfigurieren apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} betrachten derzeit dieses Dokument DocType: ToDo,Assigned By Full Name,Zugewiesen von Vollständiger Name apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} aktualisiert -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,Bericht kann nicht für Einzel-Typen festgelegt werden +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,Bericht kann nicht für Einzel-Typen festgelegt werden +DocType: System Settings,Allow Consecutive Login Attempts ,Erlaube aufeinanderfolgende Login-Versuche apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,Während des Bezahlvorgangs ist ein Fehler aufgetreten. Bitte kontaktieren Sie uns. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,vor {0} Tag(en) DocType: Email Account,Awaiting Password,ausstehendes Passwort DocType: Address,Address Line 1,Adresse Zeile 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,Nicht Nachkommen von DocType: Custom DocPerm,Role,Rolle apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Einstellungen ... apps/frappe/frappe/utils/data.py +507,Cent,Cent @@ -795,10 +820,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,Anhalten DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Mit der Seite, die geöffnet werden soll, verknüpfen. Leer lassen, wenn eine übergeordnete Gruppe daraus gemacht werden soll." DocType: DocType,Is Single,Ist einzeln -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,Registrieren ist deaktiviert -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} hat die Unterhaltung verlassen in {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,Registrieren ist deaktiviert +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} hat die Unterhaltung verlassen in {1} {2} DocType: Blogger,User ID of a Blogger,Benutzer-ID eines Bloggers -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,Es sollte mindestens ein System-Manager übrig bleiben +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,Es sollte mindestens ein System-Manager übrig bleiben DocType: GCalendar Account,Authorization Code,Autorisierungscode DocType: PayPal Settings,Mention transaction completion page URL,Erwähnen Transaktionsabschlussseite URL DocType: Help Article,Expert,Experte @@ -819,8 +844,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","Um dynamische Thema hinzuzufügen, verwenden jinja Tags wie
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,Benutzerberechtigungen anwenden +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},Ungültiges Suchfeld {0} DocType: User,Modules HTML,Modul-HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Verfolgen Sie, ob Ihre E-Mail vom Empfänger geöffnet wurde.
Hinweis: Wenn Sie an mehrere Empfänger senden, auch wenn 1 Empfänger die E-Mail liest, wird sie als "Geöffnet" betrachtet." apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,Angaben zu fehlenden Werten erforderlich DocType: DocType,Other Settings,Weitere Einstellungen DocType: Data Migration Connector,Frappe,Frappé @@ -830,15 +858,13 @@ DocType: Customize Form,Change Label (via Custom Translation),Bezeichnung änder apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Keine Berechtigung um {0} {1} {2} DocType: Address,Permanent,Dauerhaft apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,Hinweis: Andere Berechtigungsregeln können ebenfalls gelten -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/templates/emails/print_link.html +2,View this in your browser,Inhalt im Browser anzeigen DocType: DocType,Search Fields,Suchfelder DocType: System Settings,OTP Issuer Name,Name des OTP-Emittenten DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Kein Dokument ausgewählt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Soll -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,Sie sind mit dem Internet verbunden. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,Sie sind mit dem Internet verbunden. DocType: Social Login Key,Enable Social Login,Aktivieren Sie die soziale Anmeldung DocType: Event,Event,Ereignis apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:","Am {0}, schrieb {1}:" @@ -853,7 +879,7 @@ DocType: Print Settings,In points. Default is 9.,In Punkten. Standard ist 9. DocType: OAuth Client,Redirect URIs,Redirect URIs apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},Übermitteln von {0} DocType: Workflow State,heart,Herz -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,Altes Passwort erforderlich. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,Altes Passwort erforderlich. DocType: Role,Desk Access,Schreibtisch-Zugang DocType: Workflow State,minus,Minus DocType: S3 Backup Settings,Bucket,Löffel @@ -861,8 +887,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,Die Kamera konnte nicht geladen werden. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,Willkommens-E-Mail versenden apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,Lassen Sie uns das System für die erste Nutzung vorbereiten. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,Bereits registriert +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,Bereits registriert DocType: System Settings,Float Precision,Gleitkommazahl-Genauigkeit +DocType: Notification,Sender Email,Absender E-Mail apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Kann nur vom Administrator bearbeitet werden apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Dateiname DocType: DocType,Editable Grid,Editierbares Raster @@ -873,17 +900,19 @@ DocType: Communication,Clicked,Angeklickt apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},Keine Berechtigung um '{0}' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,in Sendewarteschlange DocType: DocType,Track Seen,Gesehene markieren -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,"Diese Methode kann nur verwendet werden, um einen Kommentar zu erstellen" +DocType: Dropbox Settings,File Backup,Dateisicherung +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,"Diese Methode kann nur verwendet werden, um einen Kommentar zu erstellen" DocType: Kanban Board Column,orange,Orange apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,Kein(e) {0} gefunden apps/frappe/frappe/config/setup.py +259,Add custom forms.,Benutzerdefinierte Formulare hinzufügen apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} in {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,Dieses Dokument eingereicht +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,Dieses Dokument eingereicht apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Das System bietet viele vordefinierte Rollen. Es können neue Rollen hinzugefügt werden, um feinere Berechtigungen festzulegen." DocType: Communication,CC,CC DocType: Country,Geo,Geo +DocType: Data Migration Run,Trigger Name,Name des Auslösers DocType: Blog Category,Blog Category,Blog-Kategorie -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,"Kann nicht zugeordnet werden, da folgende Bedingung nicht erfüllt ist:" +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,"Kann nicht zugeordnet werden, da folgende Bedingung nicht erfüllt ist:" DocType: Role Permission for Page and Report,Roles HTML,Rollen-HTML apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Wählen Sie eine Marke Bild zuerst. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Aktiv @@ -907,19 +936,20 @@ DocType: Address,Other Territory,Anderes Territorium ,Messages,Mitteilungen apps/frappe/frappe/config/website.py +83,Portal,Portal DocType: Email Account,Use Different Email Login ID,Verwenden Sie eine andere E-Mail-Login-ID -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,"Muss eine Abfrage angeben, die ausgeführt werden soll" +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,"Muss eine Abfrage angeben, die ausgeführt werden soll" apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Es scheint ein Problem mit der Braintree-Konfiguration des Servers zu geben. Keine Sorge, im Falle eines Fehlers wird der Betrag Ihrem Konto gutgeschrieben." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,Verwalten von Apps von Drittanbietern apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","Einstellungen zu Sprache, Datum und Uhrzeit" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Setup> Benutzerberechtigungen DocType: User Email,User Email,Benutzer E-Mail DocType: Event,Saturday,Samstag DocType: User,Represents a User in the system.,Repräsentiert einen Nutzer im System DocType: Communication,Label,Bezeichnung -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Die Aufgabe {0}, die Sie {1} zugeordnet haben, wurde geschlossen." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,Bitte schließen Sie dieses Fenster +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","Die Aufgabe {0}, die Sie {1} zugeordnet haben, wurde geschlossen." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,Bitte schließen Sie dieses Fenster DocType: Print Format,Print Format Type,Druckformattyp DocType: Newsletter,A Lead with this Email Address should exist,Ein Lead mit dieser E-Mail-Adresse sollte vorhanden sein -apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Quellanwendungen für das Internet öffnen +apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Cloud Open Source Anwendungen DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""","Bezeichnung eines ""Google Web Font"" hinzufügen, z. B. ""Open Sans""" apps/frappe/frappe/public/js/frappe/request.js +176,Request Timed Out,Zeitüberschreitung der Anfrage apps/frappe/frappe/config/setup.py +93,Enable / Disable Domains,Aktivieren / Deaktivieren von Domänen @@ -932,8 +962,8 @@ DocType: Data Export,Excel,Excel apps/frappe/frappe/templates/emails/password_update.html +2,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: Feedback Trigger,Condition,Zustand -apps/frappe/frappe/utils/data.py +619,{0} hours ago,vor {0} Stunden -apps/frappe/frappe/utils/data.py +629,1 month ago,vor 1 Monat +apps/frappe/frappe/utils/data.py +621,{0} hours ago,vor {0} Stunden +apps/frappe/frappe/utils/data.py +631,1 month ago,vor 1 Monat DocType: Contact,User ID,Benutzer-ID DocType: Communication,Sent,Gesendet DocType: Address,Kerala,Kerala @@ -952,7 +982,7 @@ DocType: GSuite Templates,Related DocType,Ähnliche DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Bearbeiten um Inhalte hinzuzufügen apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,Sprachenauswahl apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,Kartendetails -apps/frappe/frappe/__init__.py +538,No permission for {0},Keine Berechtigung für {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},Keine Berechtigung für {0} DocType: DocType,Advanced,Fortgeschritten apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,Scheint API-Schlüssel oder API Secret ist falsch !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referenz: {0} {1} @@ -962,13 +992,13 @@ DocType: Address,Address Type,Adresstyp apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,Ungültiger Benutzername oder fehlendes Passwort. Bitte Angaben korrigieren und erneut versuchen. DocType: Email Account,Yahoo Mail,Yahoo Mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Ihr Abonnement wird morgen auslaufen. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,Fehler in der Benachrichtigung +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,Fehler in der Benachrichtigung apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,gnädige Frau apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Aktualisiert {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Vorlage DocType: DocType,User Cannot Create,Kann nicht von einem Benutzer erstellt werden apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,Ordner {0} existiert nicht -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,Dropbox Zugriff genehmigt wird! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,Dropbox Zugriff genehmigt wird! DocType: Customize Form,Enter Form Type,Formulartyp eingeben apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Fehlender Parameter Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Keine Datensätze markiert. @@ -977,14 +1007,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,Mitteilung über Passwort-Aktualisierung senden apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DocType, DocType zulassen. Achtung!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Benutzerdefinierte Formate für Druck, E-Mail" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,Aktualisiert auf neue Version +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,Aktualisiert auf neue Version DocType: Custom Field,Depends On,Hängt ab von DocType: Kanban Board Column,Green,Grün DocType: Custom DocPerm,Additional Permissions,Zusätzliche Berechtigungen DocType: Email Account,Always use Account's Email Address as Sender,E-Mail-Adresse des Kontos als Absender verwenden apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Anmelden um Kommentieren zu können -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Eingabe von Daten unterhalb dieser Linie beginnen -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},Werte von {0} geändert +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,Eingabe von Daten unterhalb dieser Linie beginnen +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},Werte von {0} geändert +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","E-Mail-ID muss eindeutig sein, E-Mail-Konto existiert bereits \ für {0}" DocType: Workflow State,retweet,Erneut tweeten apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Anpassen... DocType: Print Format,Align Labels to the Right,Etiketten rechts ausrichten @@ -1003,39 +1035,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,Zeile DocType: Workflow Action Master,Workflow Action Master,Stammdaten zu Workflow-Aktionen DocType: Custom Field,Field Type,Feldtyp apps/frappe/frappe/utils/data.py +537,only.,nur. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,OTP-Geheimnis kann nur vom Administrator zurückgesetzt werden. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,OTP-Geheimnis kann nur vom Administrator zurückgesetzt werden. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,"Vermeiden Jahren, die mit Ihnen verbunden sind." apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,Benutzer für bestimmtes Dokument einschränken DocType: GSuite Templates,GSuite Templates,GSuite Vorlagen +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,absteigend apps/frappe/frappe/utils/goal.py +110,Goal,Ziel apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,Ungültiger E-Mail-Server. Bitte Angaben korrigieren und erneut versuchen. DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","Für Verknüpfungen den DocType als Bereich eingeben. Zum Auswählen Liste der Optionen eingeben, jede in einer neuen Zeile." DocType: Workflow State,film,Film -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},Keine Berechtigung zum Lesen {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},Keine Berechtigung zum Lesen {0} apps/frappe/frappe/config/desktop.py +8,Tools,Werkzeuge apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,Vermeiden Sie den letzten Jahren. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,Mehrere Rootknoten sind nicht zulässig. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Wenn aktiviert, werden die Benutzer jedes Mal benachrichtigt, wenn sie sich anmelden. Wenn nicht aktiviert, werden die Benutzer nur einmal benachrichtigt." -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,Ungültige {0} Bedingung +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,Ungültige {0} Bedingung DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Wenn diese Option aktiviert, werden die Nutzer nicht den Zugriff bestätigen Dialog zu sehen." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID-Feld muss zur Bearbeitung der Werte in Berichten angegeben werden. Bitte das ID-Feld aus der Spaltenauswahl auswählen. apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Kommentare -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,Bestätigen -apps/frappe/frappe/www/login.html +58,Forgot Password?,Passwort vergessen? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,Bestätigen +apps/frappe/frappe/www/login.html +59,Forgot Password?,Passwort vergessen? DocType: System Settings,yyyy-mm-dd,JJJJ-MM-TT apps/frappe/frappe/desk/report/todo/todo.py +19,ID,ID apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,Serverfehler -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Benutzer-ID wird benötigt +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Benutzer-ID wird benötigt DocType: Website Slideshow,Website Slideshow,Webseiten-Diashow apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,Keine Daten DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link, der die Startseite der Website darstellt. Standard-Links sind: index, login, products, blog, about, contact" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Authentifizierung fehlgeschlagen, während E-Mails von E-Mail-Konto abgeholt wurden{0}. Nachricht vom Server: {1}" +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Authentifizierung fehlgeschlagen, während E-Mails von E-Mail-Konto abgeholt wurden{0}. Nachricht vom Server: {1}" DocType: Custom Field,Custom Field,Benutzerdefiniertes Feld -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,Bitte angeben welches Datumsfeld überprüft werden muss +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,Bitte angeben welches Datumsfeld überprüft werden muss DocType: Custom DocPerm,Set User Permissions,Nutzer-Berechtigungen setzen apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},Nicht zulässig für {0} = {1} DocType: Email Account,Email Account Name,E-Mail-Konten-Name -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,Bei der Erstellung von Dropbox-Zugriffstoken ist etwas schiefgegangen. Bitte überprüfen Sie das Fehlerprotokoll für weitere Details. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,Bei der Erstellung von Dropbox-Zugriffstoken ist etwas schiefgegangen. Bitte überprüfen Sie das Fehlerprotokoll für weitere Details. DocType: File,old_parent,Altes übergeordnetes Element apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",Newsletter an Kontakte und Leads DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","z. B. ""Support"", ""Vertrieb"", ""Jerry Yang""" @@ -1044,19 +1078,20 @@ DocType: DocField,Description,Beschreibung DocType: Print Settings,Repeat Header and Footer in PDF,Wiederholen Sie Kopf- und Fußzeile in PDF DocType: Address Template,Is Default,Ist Standard DocType: Data Migration Connector,Connector Type,Steckertyp -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,Spaltenname darf nicht leer sein -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},Fehler beim Verbinden mit dem E-Mail-Konto {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,Spaltenname darf nicht leer sein +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},Fehler beim Verbinden mit dem E-Mail-Konto {0} DocType: Workflow State,fast-forward,Schnellvorlauf DocType: Communication,Communication,Kommunikation apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.",Zum Auswählen Spalten markieren. Ziehen um eine Bestellung zu platzieren. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,Dies ist eine permanente Einstellung und kann nicht rückgängig gemacht werden. Weiter? apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,Anmelden und im Browser anzeigen DocType: Event,Every Day,Täglich DocType: LDAP Settings,Password for Base DN,Kennwort für Basis-DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Tabellenfeld -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,Spalten basierend auf +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,Spalten basierend auf apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,"Geben Sie die Schlüssel ein, um die Integration in Google GSuite zu ermöglichen" DocType: Workflow State,move,Bewegen -apps/frappe/frappe/model/document.py +1254,Action Failed,Aktion fehlgeschlagen +apps/frappe/frappe/model/document.py +1255,Action Failed,Aktion fehlgeschlagen DocType: List Filter,For User,Für Benutzer DocType: View log,View log,Protokoll anzeigen apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,Kontenplan @@ -1064,11 +1099,11 @@ DocType: Address,Assam,Assam apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Sie haben noch {0} Tage in Ihrem Abonnement apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Ausgehendes E-Mail-Konto nicht korrekt DocType: Transaction Log,Chaining Hash,Chaining Hash -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,vorläufig außer Betrieb +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,vorläufig außer Betrieb apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,Bitte setzen Sie E-Mail-Adresse DocType: System Settings,Date and Number Format,Datums- und Zahlenformat -apps/frappe/frappe/model/document.py +1055,one of,eine(r/s) von -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,"Einen Moment bitte, Überprüfung läuft." +apps/frappe/frappe/model/document.py +1056,one of,eine(r/s) von +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,"Einen Moment bitte, Überprüfung läuft." apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Schlagwörter anzeigen DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Wenn eine strikte Benutzerberechtigung aktiviert ist und die Benutzerberechtigung für einen DocType für einen Benutzer definiert ist, werden alle Dokumente, deren Wert der Link leer ist, diesem Benutzer nicht angezeigt" DocType: Address,Billing,Abrechnung @@ -1079,7 +1114,7 @@ DocType: User,Middle Name (Optional),Weiterer Vorname (optional) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,Nicht zulässig apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,Folgende Felder haben fehlende Werte: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,Erste Transaktion -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,"Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen" +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,"Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen" apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Keine Ergebnisse DocType: System Settings,Security,Sicherheit apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Geplant zum Versand an {0} Empfänger @@ -1100,6 +1135,7 @@ DocType: Kanban Board Column,lightblue,hellblau apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Gleiches Feld wird mehrmals eingegeben apps/frappe/frappe/templates/includes/list/filters.html +19,clear,bereinigen apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Täglich wiederkehrende Veranstaltungen sollten am selben Tag enden. +DocType: Prepared Report,Filter Values,Werte filtern DocType: Communication,User Tags,Schlagworte zum Benutzer DocType: Data Migration Run,Fail,Fehlschlagen DocType: Workflow State,download-alt,download-alt @@ -1107,13 +1143,13 @@ DocType: Data Migration Run,Pull Failed,Pull fehlgeschlagen DocType: Communication,Feedback Request,Feedback-Anfrage apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,Importieren Sie Daten aus CSV / Excel-Dateien. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Folgende Felder fehlen: -apps/frappe/frappe/www/login.html +28,Sign in,Anmelden +apps/frappe/frappe/www/login.html +29,Sign in,Anmelden apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},Abbrechen von {0} DocType: Web Page,Main Section,Hauptbereich DocType: Page,Icon,Symbol -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" DocType: DocField,Allow in Quick Entry,In Schnelleingabe zulassen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,TT/MM/JJJJ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,GSuite-Skript-Test DocType: System Settings,Backups,Backups @@ -1130,23 +1166,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,Keine gült DocType: Footer Item,Target,Ziel DocType: System Settings,Number of Backups,Anzahl der Backups DocType: Website Settings,Copyright,Copyright -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Gehen +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,Gehen DocType: OAuth Authorization Code,Invalid,Ungültig DocType: ToDo,Due Date,Fälligkeitsdatum apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,Quartalstag DocType: Website Settings,Hide Footer Signup,Fußzeilen-Anmeldung ausblenden -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,brach die Arbeit an diesem Dokument ab +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,brach die Arbeit an diesem Dokument ab apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Python-Datei in den selben Ordner schreiben, in dem dieser Inhalt gespeichert wird, und Spalte und Ergebnis zurückgeben." +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,Zur Tabelle hinzufügen DocType: DocType,Sort Field,Sortierfeld DocType: Razorpay Settings,Razorpay Settings,Razorpay Einstellungen -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,Filter bearbeiten -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,Feld {0} des Typs {1} kann nicht zwingend erforderlich sein +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,Filter bearbeiten +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,Feld {0} des Typs {1} kann nicht zwingend erforderlich sein apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Weitere hinzufügen DocType: System Settings,Session Expiry Mobile,Sitzung verfällt für mobil apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,Falscher Benutzer oder Passwort apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,Suchergebnisse für apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,Bitte geben Sie die Access Token URL ein -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,Bitte zum Herunterladen wählen: +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,Bitte zum Herunterladen wählen: DocType: Notification,Slack,Locker DocType: Custom DocPerm,If user is the owner,Wenn der Benutzer der Inhaber ist ,Activity,Aktivität @@ -1155,7 +1192,7 @@ DocType: User Permission,Allow,Zulassen apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,Wiederholte Worte und Buchstaben sollten vermieden werden DocType: Communication,Delayed,Verzögert apps/frappe/frappe/config/setup.py +140,List of backups available for download,Datensicherungen herunterladen -apps/frappe/frappe/www/login.html +71,Sign up,Anmeldung +apps/frappe/frappe/www/login.html +72,Sign up,Anmeldung apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,Zeile {0}: Nicht zulässig zum Deaktivieren für Standardfelder DocType: Test Runner,Output,Ausgabe DocType: Notification,Set Property After Alert,Setzen Sie die Eigenschaft nach Alert @@ -1166,7 +1203,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,Dateityp DocType: Workflow State,leaf,Blatt DocType: Portal Menu Item,Portal Menu Item,Portal Menüpunkt -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,Benutzereinstellungen löschen DocType: Contact Us Settings,Email ID,E-Mail-ID DocType: Activity Log,Keep track of all update feeds,Verfolgen Sie alle Update-Feeds DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Eine Liste der Ressourcen, die der Client-Anwendung Zugriff auf nach dem Benutzer erlaubt, es haben wird.
zB Projekt" @@ -1176,7 +1212,7 @@ DocType: Error Snapshot,Timestamp,Zeitstempel DocType: Patch Log,Patch Log,Korrektur-Protokoll DocType: Data Migration Mapping,Local Primary Key,Lokaler Primärschlüssel apps/frappe/frappe/utils/bot.py +164,Hello {0},Hallo {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},Willkommen auf {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},Willkommen auf {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Hinzufügen apps/frappe/frappe/www/me.html +40,Profile,Profil DocType: Communication,Sent or Received,Gesendet oder empfangen @@ -1200,7 +1236,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,Eingerichtet für DocType: Workflow State,minus-sign,Minuszeichen apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,Nicht gefunden -apps/frappe/frappe/www/printview.py +200,No {0} permission,Keine {0} Berechtigung +apps/frappe/frappe/www/printview.py +199,No {0} permission,Keine {0} Berechtigung apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,Exportieren von benutzerdefinierten Berechtigungen DocType: Data Export,Fields Multicheck,Felder Multicheck DocType: Activity Log,Login,Anmelden @@ -1208,7 +1244,7 @@ DocType: Web Form,Payments,Zahlungen apps/frappe/frappe/www/qrcode.html +9,Hi {0},Hallo {0} DocType: System Settings,Enable Scheduled Jobs,Geplante Arbeiten aktivieren apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,Hinweise: -apps/frappe/frappe/www/message.html +65,Status: {0},Status: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},Status: {0} DocType: DocShare,Document Name,Dokumentenname apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Als Spam markieren DocType: ToDo,Medium,Mittel @@ -1218,7 +1254,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Data Migration Mapping,Mapping Name,Name der Zuordnung DocType: Currency,A symbol for this currency. For e.g. $,"Ein Symbol für diese Währung, z. B. €" apps/frappe/frappe/public/js/frappe/views/translation_manager.js +23,Successfully updated translations,Erfolgreich aktualisierte Übersetzungen -apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe-Rahmen +apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe-Framework DocType: S3 Backup Settings,Enable Automatic Backup,Automatische Sicherung aktivieren apps/frappe/frappe/config/setup.py +173,Email Templates for common queries.,E-Mail-Vorlagen für häufige Abfragen. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +114,Permission Error,Berechtigungsfehler @@ -1226,7 +1262,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},Name von {0} k apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Von-Datum apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Erfolg apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},Feedback-Anfrage für {0} an {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,Sitzung abgelaufen +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,Sitzung abgelaufen DocType: Kanban Board Column,Kanban Board Column,Kanban-Tafel Spalte apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,Gerade Reihen von Tasten sind leicht zu erraten DocType: Communication,Phone No.,Telefonnr. @@ -1238,28 +1274,28 @@ apps/frappe/frappe/www/complete_signup.html +22,Complete,Komplett DocType: Customize Form,Image Field,Bildfeld apps/frappe/frappe/integrations/doctype/gcalendar_settings/gcalendar_settings.py +49,Something went wrong during the token generation. Please request again an authorization code.,Bei der Token-Generation ist etwas passiert. Bitte fordern Sie erneut einen Autorisierungscode an. DocType: Print Format,Custom HTML Help,Benutzerdefinierte HTML-Hilfe -apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Siehe auf der Webseite +apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Auf der Webseite ansehen DocType: Workflow Transition,Next State,Nächster Status DocType: User,Block Modules,Block-Module apps/frappe/frappe/model/db_schema.py +151,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Länge zurücksetzen auf {0} für '{1}' in '{2}'; Einstellen der Länge wie {3} bewirkt Abschneiden von Daten. DocType: Print Format,Custom CSS,Benutzerdefiniertes CSS apps/frappe/frappe/public/js/frappe/ui/comment.js +36,Add a comment,Einen Kommentar hinzufügen DocType: Webhook,on_update,on_update -apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have atmost one user.,{type} room muss mindestens einen Benutzer haben. +apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have atmost one user.,{type} der Raum muss mindestens einen Benutzer haben. apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},Ignoriert: {0} um {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,Protokoll von Fehlern bei automatisierten Ereignissen (Terminplaner) -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),Keine gültige .csv-Datei +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),Keine gültige .csv-Datei DocType: Address,Postal,Post DocType: Email Account,Default Incoming,Standard-Eingang DocType: Workflow State,repeat,Wiederholen DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Wenn diese Option deaktiviert, wird diese Rolle von allen Benutzern entfernt werden." apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hilfe zur Suche -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,Registrierte aber deaktiviert +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,Registrierte aber deaktiviert DocType: DocType,Hide Copy,Kopie ausblenden apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,Alle Rollen löschen -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} muss einmalig sein +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} muss einmalig sein apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,Zeile apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","CC, BCC & E-Mail-Vorlage" DocType: Data Migration Mapping Detail,Local Fieldname,Lokaler Feldname @@ -1267,7 +1303,7 @@ DocType: User Permission,Linked Doctypes,Verknüpfte Doctypes DocType: DocType,Track Changes,Änderungen verfolgen DocType: Workflow State,Check,Überprüfen DocType: Chat Profile,Offline,Offline -DocType: Razorpay Settings,API Key,API-Schlüssel +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 +82,Edit Title,Titel bearbeiten apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,Apps installieren @@ -1275,6 +1311,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,An Sie und von Ihnen zugeordnete Dokumente DocType: User,Email Signature,E-Mail-Signatur DocType: Website Settings,Google Analytics ID,Google Analytics-ID +DocType: Web Form,"For help see Client Script API and Examples","Weitere Informationen finden Sie unter Client Script API und Beispiele" DocType: Website Theme,Link to your Bootstrap theme,Verknüpfung zum Start-Thema DocType: Custom DocPerm,Delete,Löschen apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},Neu {0} @@ -1284,10 +1321,10 @@ DocType: Print Settings,PDF Page Size,PDF-Seitengröße DocType: Data Import,Attach file for Import,Datei für Import anhängen DocType: Communication,Recipient Unsubscribed,Empfänger Unsubscribed DocType: Feedback Request,Is Sent,Ist versandt worden -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,Über +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,Über apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.",Nur ausgewählte Spalten können aktualisiert werden DocType: Chat Token,Country,Land -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,Adressen +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,Adressen DocType: Communication,Shared,gemeinsam genutzt apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,Dokumentendruck anhängen DocType: Bulk Update,Field,Feld @@ -1298,12 +1335,12 @@ DocType: Chat Message,URLs,URLs DocType: Data Migration Run,Total Pages,Gesamtzahl der Seiten DocType: DocField,Attach Image,Bild anhängen DocType: Workflow State,list-alt,Liste-Alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,Passwort wurde aktualisiert +apps/frappe/frappe/www/update-password.html +79,Password Updated,Passwort wurde aktualisiert apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,"Schritte, um Ihre Anmeldung zu überprüfen" apps/frappe/frappe/utils/password.py +50,Password not found,Kennwort nicht gefunden DocType: Data Migration Mapping,Page Length,Seitenlänge DocType: Email Queue,Expose Recipients,Expose Empfänger -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,"""Anhängen an"" ist für eingehende E-Mails zwingend" +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,"""Anhängen an"" ist für eingehende E-Mails zwingend" DocType: Contact,Salutation,Anrede DocType: Communication,Rejected,Abgelehnt apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,Markierung entfernen @@ -1314,14 +1351,14 @@ DocType: User,Set New Password,Neues Passwort setzen apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},Feldname {0} erscheint mehrfach in Zeilen {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} von {1} bis {2} in Zeile # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},Feldname {0} erscheint mehrfach in Zeilen {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{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 +32,Seems token you are using is invalid!,Dein Token scheint ungültig zu sein! DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Anzahl der Spalten für ein Feld in einem Raster (Total Spalten in einem Raster sollte weniger als 11) 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 +75,Have an account? Login,Ein Konto haben? Anmeldung +apps/frappe/frappe/www/login.html +76,Have an account? Login,Ein Konto haben? Anmeldung apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unbekanntes Druckformat: {0} DocType: Workflow State,arrow-down,Pfeil-nach-unten apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},Benutzer darf {0}: {1} nicht löschen @@ -1333,30 +1370,30 @@ DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Kopfleiste DocType: GSuite Settings,Script Code,Skriptcode apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,Benutzer E-Mail erstellen -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,Keine Berechtigungen angegeben +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,Keine Berechtigungen angegeben apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,{0} nicht gefunden DocType: Custom Role,Custom Role,benutzerdefinierte Rolle apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Startseite/Test-Ordner 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,Bitte das Dokument vor dem Hochladen abspeichern. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,Passwort eingeben +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,Passwort eingeben DocType: Dropbox Settings,Dropbox Access Secret,Dropbox-Zugangsdaten DocType: Social Login Key,Social Login Provider,Social-Login-Anbieter apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Weiteren Kommentar hinzufügen -apps/frappe/frappe/core/doctype/data_import/importer.py +81,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. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,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. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,DocType bearbeiten apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,Rundbrief wurde abbestellt. -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,Falz muss vor einem Bereichsumbruch kommen +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,Falz muss vor einem Bereichsumbruch kommen apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Befindet sich in der Entwicklung apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,Gehe zum Dokument apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,Zuletzt geändert durch apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,Anpassungen Zurücksetzen DocType: Workflow State,hand-down,Pfeil-nach-unten DocType: Address,GST State,GST Staat -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,"{0}: ""Abbruch"" kann nicht ohne ""Übertragen"" eingestellt werden" +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,"{0}: ""Abbruch"" kann nicht ohne ""Übertragen"" eingestellt werden" DocType: Website Theme,Theme,Thema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound To Auth-Code DocType: DocType,Is Submittable,Ist übertragbar -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,Neue Erwähnung +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,Neue Erwähnung apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Wert für ein Ankreuz-Feld kann entweder 0 oder 1 sein apps/frappe/frappe/model/document.py +733,Could not find {0},{0} konnte nicht gefunden werden apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,Spaltenbeschriftungen: @@ -1376,9 +1413,9 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,Gruppe DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Bitte für ""Ziel"" = ""_blank"" auswählen, um den Inhalt in einer neuen Seite zu öffnen." apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,Datenbankgröße: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,{0} endgültig löschen? +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,{0} endgültig löschen? apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,Gleiche Datei wurde bereits dem Datensatz hinzugefügt -apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ist kein gültiger Workflow-Status. Bitte aktualisieren Sie Ihren Workflow und versuchen Sie es erneut. +apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ist kein gültiger Workflow-Zustand. Bitte aktualisieren Sie Ihren Workflow und versuchen Sie es erneut. DocType: Workflow State,wrench,Schraubenschlüssel DocType: Deleted Document,GitHub Sync ID,GitHub-Synchronisierungs-ID DocType: Activity Log,Date,Datum @@ -1390,27 +1427,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Kommentar hinzufügen DocType: DocField,Mandatory,Zwingend notwendig apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module für den Export -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0}: Keine Grundberechtigungen festgelegt +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0}: Keine Grundberechtigungen festgelegt apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,Ihr Abonnement endet am {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},Download-Link für Datensicherung wird an die folgende E-Mail-Adresse gesendet: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Bedeutung von Übertragen, Stornieren, Abändern" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,To Do DocType: Test Runner,Module Path,Modulpfad DocType: Social Login Key,Identity Details,Identitätsdetails +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),Dann von (optional) DocType: File,Preview HTML,HTML-Vorschau DocType: Desktop Icon,query-report,Abfrage-Bericht -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Zugewiesen zu {0}: {1} DocType: DocField,Percent,Prozent apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,Verknüpft mit apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,Bearbeiten Sie die Einstellungen für automatische E-Mail-Berichte DocType: Chat Room,Message Count,Nachrichtenanzahl DocType: Workflow State,book,Buchen +DocType: Communication,Read by Recipient,Nach Empfänger lesen DocType: Website Settings,Landing Page,Zielseite apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Fehler in benutzerdefinierten Skripts apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,Keine Berechtigungen für diese Kriterien gesetzt. DocType: Auto Email Report,Auto Email Report,Auto Email-Bericht -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,Kommentar löschen? +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,Kommentar löschen? DocType: Address Template,This format is used if country specific format is not found,"Dieses Format wird verwendet, wenn ein länderspezifisches Format nicht gefunden werden kann" DocType: System Settings,Allow Login using Mobile Number,Login mit Mobilnummer zulassen apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten." @@ -1427,7 +1465,7 @@ DocType: Letter Head,Printing,Druck DocType: Workflow State,thumbs-up,Bild-nach-oben DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Schriftarten -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,Genauigkeit sollte zwischen 1 und 6 liegen +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,Genauigkeit sollte zwischen 1 und 6 liegen apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,und apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},Dieser Bericht wurde am {0} erstellt. @@ -1439,32 +1477,33 @@ DocType: Auto Email Report,Report Filters,Berichtsfilter apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,jetzt DocType: Workflow State,step-backward,Schritt zurück apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{app_title} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,Bitte Dropbox-Zugriffsdaten in den Einstellungen der Seite setzen +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,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 +16,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" apps/frappe/frappe/core/doctype/data_import/exporter.py +67,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/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,Ereignis kann nicht aktualisiert werden -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,Zahlung abschließen +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,Ereignis kann nicht aktualisiert werden +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,Zahlung abschließen apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,Der Bestätigungscode wurde an Ihre registrierte E-Mail-Adresse gesendet. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,Gedrosselt -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter muss 4 Werte haben (doctype, fieldname, operator, value): {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,Gedrosselt +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter muss 4 Werte haben (doctype, fieldname, operator, value): {0}" apps/frappe/frappe/utils/bot.py +89,show,Show -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},Ungültiger Feldname {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},Ungültiger Feldname {0} DocType: Address Template,Address Template,Adressvorlage DocType: Workflow State,text-height,Texthöhe DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Datenmigrationsplan-Zuordnung -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +271,Starting Frappé ...,Start Frappé ... +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +271,Starting Frappé ...,Frappé starten... DocType: Web Form Field,Max Length,Maximale Länge DocType: Workflow State,map-marker,Plan-Markierer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Eine Anfrage übertragen. DocType: Event,Repeat this Event,Dieses Ereignis wiederholen DocType: Address,Maintenance User,Nutzer Instandhaltung +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,Sortiervorgaben apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,"Vermeiden Sie Termine und Jahre, die mit Ihnen verbunden sind." DocType: Custom DocPerm,Amend,Abändern DocType: Data Import,Generated File,Generierte Datei DocType: Transaction Log,Previous Hash,Vorheriger Hash DocType: File,Is Attachments Folder,Ist Ordner für Anhänge apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,Alle erweitern -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,"Wählen Sie einen Chat, um mit dem Nachrichtenaustausch zu beginnen." +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,"Wählen Sie einen Chat, um mit dem Nachrichtenaustausch zu beginnen." apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,Bitte wählen Sie zunächst Entitätstyp apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,Gültige Benutzer-ID erforderlich. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,Bitte eine gültige CSV-Datei mit Daten auswählen @@ -1475,28 +1514,28 @@ apps/frappe/frappe/templates/emails/auto_reply.html +5,This is an automatically DocType: Help Category,Category Description,Kategoriebeschreibung apps/frappe/frappe/model/document.py +625,Record does not exist,Datensatz existiert nicht apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Originalwert -DocType: Help Category,Help Category,Hilfe Kategorie +DocType: Help Category,Help Category,Kategorie-Hilfe apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,Benutzer {0} ist deaktiviert -apps/frappe/frappe/www/404.html +20,Page missing or moved,Seite fehlt oder befindet sich an einem neuen Ort +apps/frappe/frappe/www/404.html +21,Page missing or moved,Seite fehlt oder befindet sich an einem neuen Ort DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Payment Gateway-Einstellungen +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,Holen Sie angehängte Bilder aus dem Dokument DocType: Chat Room,Name,Name DocType: Contact Us Settings,Skype,Skype apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,Sie haben den maximalen Speicherplatz {0} für Ihren Plan überschritten. {1}. DocType: Chat Profile,Notification Tones,Benachrichtigungstöne -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Suche nach den docs +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,Suche nach den docs DocType: OAuth Authorization Code,Valid,Gültig apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,Verknüpfung öffnen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,Ihre Sprache apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,Zeile hinzufügen DocType: Tag Category,Doctypes,doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,Abfrage muss ein SELECT sein -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,"Bitte hängen Sie eine Datei an, die Sie importieren möchten" -DocType: Auto Repeat,Completed,Abgeschlossen +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,Abfrage muss ein SELECT sein +DocType: Prepared Report,Completed,Abgeschlossen DocType: File,Is Private,Ist Privat DocType: Data Export,Select DocType,DocType auswählen apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,Dateigröße hat die maximal zulässige Größe von {0} MB überschritten -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,Erstellt am +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,Erstellt am DocType: Workflow State,align-center,Zentrieren DocType: Feedback Request,Is Feedback request triggered manually ?,Ist Feedback-Anfrage manuell ausgelöst? DocType: Address,Lakshadweep Islands,Lakshadweep Inseln @@ -1504,7 +1543,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Bestimmte Vorgänge, wie z.B. Rechnung, sollten nach dem Fertigstellen nicht mehr abgeändert werden. Diese befinden sich im Status ""Gebucht"". Sie können außerdem festlegen, wer Vorgänge buchen darf." DocType: Newsletter,Test Email Address,Test-E-Mail-Adresse DocType: ToDo,Sender,Absender -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,Fehler beim Auswerten der Benachrichtigung {0}. Bitte reparieren Sie Ihre Vorlage. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,Fehler beim Auswerten der Benachrichtigung {0}. Bitte reparieren Sie Ihre Vorlage. DocType: GSuite Settings,Google Apps Script,Google Apps Script apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Hinterlasse einen Kommentar DocType: Web Page,Description for search engine optimization.,Beschreibung für Suchmaschinen-Optimierung. @@ -1514,7 +1553,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,Auss DocType: System Settings,Allow only one session per user,Nur eine Sitzung pro Benutzer zulassen apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Startseite/Test-Ordner 1/Test-Ordner 3 DocType: Website Settings,<head> HTML,HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,"Um ein neues Ereignis zu erstellen, Zeitfenster markieren oder über ein Zeitfenster ziehen" +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,"Um ein neues Ereignis zu erstellen, Zeitfenster markieren oder über ein Zeitfenster ziehen" DocType: DocField,In Filter,Im Filter apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Show in Modul Abschnitt @@ -1526,17 +1565,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",Seite auf der Webseite zeigen DocType: Note,Seen By Table,Gesehen durch Tabelle -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,Vorlage auswählen +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,Vorlage auswählen apps/frappe/frappe/www/third_party_apps.html +47,Logged in,Angemeldet apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,Falsche Benutzer-ID oder Passwort apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,Erkunden apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Standard-Versand und Posteingang DocType: System Settings,OTP App,OTP App +DocType: Dropbox Settings,Send Email for Successful Backup,Senden Sie eine E-Mail für eine erfolgreiche Sicherung apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Dokument-ID DocType: Print Settings,Letter,Brief -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,Bildfeld muss Typ anhängen Bild +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,Bildfeld muss Typ anhängen Bild DocType: DocField,Columns,Spalten -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,Für den Benutzer {0} mit Lesezugriff freigegeben +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,Für den Benutzer {0} mit Lesezugriff freigegeben DocType: Async Task,Succeeded,Erfolgreich apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},Benötigte Pflichtfelder vorhanden für {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,Berechtigungen für {0} zurücksetzen? @@ -1554,14 +1594,14 @@ DocType: DocType,ASC,AUF DocType: Workflow State,align-left,linksbündig DocType: User,Defaults,Standardeinstellungen DocType: Feedback Request,Feedback Submitted,Feedback eingereicht -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,Mit Existierenden zusammenführen +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,Mit Existierenden zusammenführen DocType: User,Birth Date,Geburtsdatum DocType: Dynamic Link,Link Title,Link-Titel DocType: Workflow State,fast-backward,Schnellrücklauf DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,Freitag -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,In voller Ansicht bearbeiten +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,In voller Ansicht bearbeiten DocType: Report,Add Total Row,Summenzeile hinzufügen apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,"Bitte überprüfen Sie Ihren Posteingang auf weitere Instruktionen. Lassen Sie dieses Fenster geöffnet, Hier geht es weiter." @@ -1584,11 +1624,10 @@ DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent","1 Währungseinheit = [?] Teilbetrag für z. B. 1 Euro = 100 Cent" DocType: Data Import,Partially Successful,Teilweise erfolgreich -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,Neue Berechtigungsregel anlegen apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,"Sie können den Platzhalter ""%"" verwenden" DocType: Chat Message Attachment,Chat Message Attachment,Chatnachricht-Anhang -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Bitte richten Sie das Standard-E-Mail-Konto unter Setup> E-Mail> E-Mail-Konto ein apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Nur Bild-Datenformate (.gif, .jpg, .jpeg, .tiff, .png, .svg) erlaubt" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,Datenbank-Engine @@ -1609,7 +1648,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,Tochtergesellschaft DocType: System Settings,In Hours,In Stunden apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,Mit Briefkopf -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,Ungültiger Postausgangsserver oder Schnittstelle +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,Ungültiger Postausgangsserver oder Schnittstelle DocType: Custom DocPerm,Write,Schreiben apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed to create Query / Script Reports,Nur der Administrator darf Abfrage-/Skriptberichte erstellen apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,Aktualisierung läuft @@ -1618,28 +1657,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i 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 +13,Import Email From,Import von E-Mails aus apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,Als Benutzer einladen -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,Heimatadresse ist erforderlich +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,Heimatadresse ist erforderlich DocType: Data Migration Run,Started,Hat angefangen +DocType: Data Migration Run,End Time,Endzeit apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,Anhänge auswählen apps/frappe/frappe/model/naming.py +113, for {0},für {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,Es sind Fehler aufgetreten. Bitte melden Sie dies. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,Es sind Fehler aufgetreten. Bitte melden Sie dies. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,Sie sind nicht berechtigt dieses Dokument zu drucken apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},Derzeit wird {0} aktualisiert -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,Bitte setzen Sie Filter Wert in Berichtsfiltertabelle. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,Lade Bericht +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,Bitte setzen Sie Filter Wert in Berichtsfiltertabelle. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,Lade Bericht apps/frappe/frappe/limits.py +74,Your subscription will expire today.,Ihr Abonnement wird heute auslaufen. DocType: Page,Standard,Standard -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Datei anhängen +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,Datei anhängen +DocType: Data Migration Plan,Preprocess Method,Vorverarbeitungsmethode apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Größe apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Zuordnung vollständig DocType: Desktop Icon,Idx,Idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

Keine Ergebnisse gefunden für '

DocType: Address,Madhya Pradesh,Madhya Pradesh DocType: Deleted Document,New Name,Neuer Name DocType: System Settings,Is First Startup,Ist Erstes Startup DocType: Communication,Email Status,E-Mail-Status apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,Bitte das Dokument vor dem Entfernen einer Zuordnung abspeichern apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,Oberhalb einfügen -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,Kommentar kann nur vom Eigentümer bearbeitet werden +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,Kommentar kann nur vom Eigentümer bearbeitet werden DocType: Data Import,Do not send Emails,Schicke keine E-Mails apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,Namen und Nachnamen sind leicht zu erraten. DocType: Auto Repeat,Draft,Entwurf @@ -1651,14 +1693,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,Widerrufen DocType: Contact,Replied,Beantwortet DocType: Newsletter,Test,Test DocType: Custom Field,Default Value,Standardwert -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,Überprüfen +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,Überprüfen DocType: Workflow Document State,Update Field,Feld aktualisieren DocType: Chat Profile,Enable Chat,Aktiviere Chat DocType: LDAP Settings,Base Distinguished Name (DN),kennzeichnender Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,Benachrichtigungen abbestellen -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},Optionen nicht für das Verknüpfungs-Feld {0} gesetzt +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},Optionen nicht für das Verknüpfungs-Feld {0} gesetzt DocType: Customize Form,"Must be of type ""Attach Image""",Muss vom Typ sein "Bild anhängen" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,Alles abwählen +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,Alles abwählen apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},"""Nur lesen"" kann für das Feld {0} nicht rückgängig gemacht werden" DocType: Auto Email Report,Zero means send records updated at anytime,"Null bedeutet, dass Sendeaufzeichnungen jederzeit aktualisiert werden" apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,Einrichtung abschliessen @@ -1674,7 +1716,7 @@ DocType: Social Login Key,Google,Google DocType: Email Domain,Example Email Address,Beispiel E-Mail-Adresse apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Am Meisten verwendet apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,vom Rundbrief abmelden -apps/frappe/frappe/www/login.html +83,Forgot Password,Passwort vergessen +apps/frappe/frappe/www/login.html +84,Forgot Password,Passwort vergessen DocType: Dropbox Settings,Backup Frequency,Backup-Frequenz DocType: Workflow State,Inverse,Invertieren DocType: DocField,User permissions should not apply for this Link,Benutzerrechte sollten für diese Verknüpfung nicht gelten @@ -1691,6 +1733,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Themen für apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,Erfolgreich aktualisiert DocType: Activity Log,Logout,Abmelden apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,"Berechtigungen auf höherer Ebene sind Feldebenen-Berechtigungen. Allen Feldern werden eine Berechtigungsebene und die für diese Berechtigung definierten Regeln zugeordnet. Dies ist nützlich, wenn Felder verborgen werden oder für bestimmte Rollen nur lesbar sein sollen." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Setup> Formular anpassen DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Statische URL-Parameter hier eingeben (z. B. Absender=ERPNext, Benutzername=ERPNext, Passwort=1234 usw.)" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Wenn diese Anleitung nicht hilfreich war, bitte einen Hinweis in den GitHub-Themen hinzufügen." DocType: Workflow State,bookmark,Lesezeichen @@ -1702,12 +1745,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,"Au apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} existiert bereits. Wählen Sie einen anderen Namen apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,Rückmeldungsbedingungen stimmen nicht überein DocType: S3 Backup Settings,None,Keiner -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,Timeline-Feld muss eine gültige Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,Timeline-Feld muss eine gültige Feldname sein DocType: GCalendar Account,Session Token,Sitzungstoken DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,Zeile #{0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,Zeile #{0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,Neues Passwort per E-Mail versendet -apps/frappe/frappe/auth.py +272,Login not allowed at this time,Anmelden zur Zeit nicht erlaubt +apps/frappe/frappe/auth.py +286,Login not allowed at this time,Anmelden zur Zeit nicht erlaubt DocType: Data Migration Run,Current Mapping Action,Aktuelle Abbildungsaktion DocType: Email Account,Email Sync Option,E-Mail-Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,Reihe Nr @@ -1723,12 +1766,12 @@ DocType: Address,Fax,Telefax apps/frappe/frappe/config/setup.py +263,Custom Tags,Benutzerdefinierte Schlagwörter DocType: Communication,Submitted,Gebucht DocType: System Settings,Email Footer Address,Signatur in der E-Mail-Fußzeile -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,Tabelle aktualisiert +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,Tabelle aktualisiert DocType: Activity Log,Timeline DocType,Timeline DocType DocType: DocField,Text,Text apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Standard-Versand DocType: Workflow State,volume-off,Lautstärke aus -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},Geliked durch {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},Geliked durch {0} DocType: Footer Item,Footer Item,Footer Artikel ,Download Backups,Datensicherungen herunterladen apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Startseite/Test-Ordner 1 @@ -1736,7 +1779,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me,M DocType: DocField,Dynamic Link,Dynamische Verknüpfung apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,Bis-Datum apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Zeige fehlgeschlagene Jobs -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,Details +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,Details DocType: Property Setter,DocType or Field,DocType oder Feld DocType: Communication,Soft-Bounced,Soft-Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Wenn diese Option aktiviert ist, können sich alle Benutzer von jeder IP-Adresse aus mit der Zwei-Faktor-Authentifizierung anmelden. Dies kann auch nur für bestimmte Benutzer in der Benutzerseite festgelegt werden" @@ -1747,7 +1790,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,E-Mail wurde in den Papierkorb geworfen DocType: Report,Report Builder,Berichts-Generator DocType: Async Task,Task Name,Aufgaben-Name -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren." DocType: Communication,Workflow,Workflow DocType: Website Settings,Welcome Message,Willkommensnachricht DocType: Webhook,Webhook Headers,Webhook Header @@ -1764,10 +1807,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,Dokumente drucken DocType: Contact Us Settings,Forward To Email Address,Weiterleiten an E-Mail-Adresse apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Alle Daten -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,Bezeichnungsfeld muss ein gültiger Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,Bezeichnungsfeld muss ein gültiger Feldname sein apps/frappe/frappe/config/core.py +7,Documents,Dokumente DocType: Social Login Key,Custom Base URL,Benutzerdefinierte Basis-URL DocType: Email Flag Queue,Is Completed,Ist Abgeschlossen +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,Felder erhalten apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,{0} hat dich in einem Kommentar erwähnt apps/frappe/frappe/www/me.html +22,Edit Profile,Profil bearbeiten DocType: Kanban Board Column,Archived,Archiviert @@ -1777,17 +1821,18 @@ myfield 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/form/controls/date.js +49,Today,Heute +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,Heute apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"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: Error Log,Log of Scheduler Errors,Protokoll von Fehlermeldungen des Terminplaners DocType: User,Bio,Lebenslauf DocType: OAuth Client,App Client Secret,App Client Geheimnis apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Buche +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,"Parent ist der Name des Dokuments, zu dem die Daten hinzugefügt werden." apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,Likes anzeigen DocType: DocType,UPPER CASE,GROSSER BUCHSTABE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,Benutzerdefiniertes HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,Ordnernamen eingeben -apps/frappe/frappe/auth.py +228,Unknown User,Unbekannter Benutzer +apps/frappe/frappe/auth.py +233,Unknown User,Unbekannter Benutzer apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,Rolle auswählen DocType: Communication,Deleted,Gelöscht DocType: Workflow State,adjust,Anpassen @@ -1809,21 +1854,21 @@ DocType: Data Migration Connector,Database Name,Name der Datenbank apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Formular aktualisieren DocType: DocField,Select,Auswählen apps/frappe/frappe/utils/csvutils.py +29,File not attached,Datei nicht angehängt -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,Verbindung unterbrochen. Einige Funktionen funktionieren möglicherweise nicht. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,Verbindung unterbrochen. Einige Funktionen funktionieren möglicherweise nicht. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess",Wiederholt wie "aaa" sind leicht zu erraten -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,Neuer Chat +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,Neuer Chat DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Wenn diese Einstellung getroffen wird, erscheint ein Eintrag im Drop-Down-Menü des übergeordneten Vorgangs." DocType: Print Format,Show Section Headings,Zeige Abschnittsüberschriften DocType: Bulk Update,Limit,Grenze -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},Keine Vorlage im Pfad: {0} gefunden -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,Aus allen Sitzungen abmelden +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,Fügen Sie einen neuen Abschnitt hinzu +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},Keine Vorlage im Pfad: {0} gefunden apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,Kein E-Mail-Konto DocType: Communication,Cancelled,Abgebrochen DocType: Chat Room,Avatar,Avatar DocType: Blogger,Posts,Beiträge DocType: Social Login Key,Salesforce,Zwangsversteigerung DocType: DocType,Has Web View,Hat Webansicht -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType Name sollte mit einem Buchstaben beginnen und es darf nur aus Buchstaben, Zahlen, Leerzeichen und Unterstrichen bestehen." +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType Name sollte mit einem Buchstaben beginnen und es darf nur aus Buchstaben, Zahlen, Leerzeichen und Unterstrichen bestehen." DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Integration anfordern apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,Hallo @@ -1839,16 +1884,18 @@ DocType: Communication,Assigned,Zugewiesen DocType: Print Format,Js,js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,Druckformat auswählen apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,Kurze Tastatur-Muster sind leicht zu erraten +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,Neuen Bericht erstellen DocType: Portal Settings,Portal Menu,Portal-Menü apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,Länge von {0} sollte zwischen 1 und 1000 sein -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Suchen Sie nach etwas +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,Suchen Sie nach etwas DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Zustandsdetail apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}",Für die Währung {0} sollte der Mindesttransaktionsbetrag {1} sein. DocType: DocField,Print Hide,Beim Drucken verbergen -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Wert eingeben +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,Wert eingeben DocType: Workflow State,tint,Farbton DocType: Web Page,Style,Stil +DocType: Prepared Report,Report End Time,Endzeit melden apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,z. B.: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} Kommentare apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,Version aktualisiert @@ -1861,10 +1908,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,Toggle-Diagramme (? depends on context!) DocType: Website Settings,Sub-domain provided by erpnext.com,"Unterdomäne, bereitgestellt von erpnext.com" apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,Einrichten Ihres Systems +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,Nachkommen von DocType: System Settings,dd-mm-yyyy,TT-MM-JJJJ -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,"Um auf diesen Bericht zuzugreifen, muss eine Berichtsberechtigung vorliegen." +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,"Um auf diesen Bericht zuzugreifen, muss eine Berichtsberechtigung vorliegen." apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,Bitte wählen Sie Minimum Password Score -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,Hinzugefügt +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,Hinzugefügt apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,Sie haben einen kostenlosen Benutzervertrag abonniert DocType: Auto Repeat,Half-yearly,Halbjährlich apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,"Ein täglicher Ereignisbericht wird für alle Kalenderereignisse gesendet, bei denen Erinnerungen aktiviert sind." @@ -1875,7 +1923,7 @@ DocType: Workflow State,remove,Entfernen DocType: Email Domain,If non standard port (e.g. 587),Falls kein Standardport (z.B. 587) verwendet wird apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,Neu laden apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,Eigene Schlagwortkategorien hinzufügen -apps/frappe/frappe/desk/query_report.py +227,Total,Summe +apps/frappe/frappe/desk/query_report.py +312,Total,Summe DocType: Event,Participants,Teilnehmer DocType: Integration Request,Reference DocName,Referenz-Dokumentenname DocType: Web Form,Success Message,Erfolgsmeldung @@ -1889,7 +1937,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,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/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge",{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wählen -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",Suchergebnisse für „{0}“ DocType: Data Migration Connector,Python Module,Python-Modul DocType: GSuite Settings,Google Credentials,Google-Anmeldeinformationen apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,QR Code für Login-Bestätigung @@ -1898,8 +1945,8 @@ DocType: Footer Item,Company,Firma apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Mir zugewiesen apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Google GSuite Vorlagen zur Integration mit DocTypes DocType: User,Logout from all devices while changing Password,Abmelden von allen Geräten beim Ändern des Passworts -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,Passwort bestätigen -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Es gab Fehler +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,Passwort bestätigen +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,Es gab Fehler apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Schließen apps/frappe/frappe/model/document.py +663,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 @@ -1909,7 +1956,7 @@ DocType: Transaction Log,Transaction Hash,Transaktions-Hash DocType: Error Snapshot,Snapshot View,Schnappschuss-Ansicht apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,Bitte den Newsletter vor dem Senden speichern apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Konfigurieren Sie Konten für Google Kalender -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},"""Optionen"" muss ein gültiger DocType für Feld {0} in Zeile {1} sein" +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},"""Optionen"" muss ein gültiger DocType für Feld {0} in Zeile {1} sein" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Eigenschaften bearbeiten DocType: Patch Log,List of patches executed,Angewandte Patches apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} bereits abgemeldet @@ -1928,8 +1975,8 @@ DocType: Data Migration Connector,Authentication Credentials,Authentifizierungsn DocType: Role,Two Factor Authentication,Zwei-Faktor-Authentifizierung apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,Zahlen DocType: SMS Settings,SMS Gateway URL,SMS-Gateway-URL -apps/frappe/frappe/model/base_document.py +508,"{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/utils/data.py +638,{0} or {1},{0} oder {1} +apps/frappe/frappe/model/base_document.py +517,"{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/utils/data.py +640,{0} or {1},{0} oder {1} apps/frappe/frappe/core/doctype/user/user.py +250,Password Update,Passwort-Aktualisierung DocType: Workflow State,trash,Ausschuss DocType: System Settings,Older backups will be automatically deleted,Ältere Backups werden automatisch gelöscht @@ -1945,16 +1992,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,Rückfällig apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Artikel kann nicht zu seinen eigenen Abkömmlingen hinzugefügt werden DocType: System Settings,Expiry time of QR Code Image Page,Verfallzeit der QR Code Bildseite -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,Summen anzeigen +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,Summen anzeigen DocType: Error Snapshot,Relapses,Rückfälle DocType: Address,Preferred Shipping Address,Bevorzugte Lieferadresse -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,Mit Briefkopf +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,Mit Briefkopf apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} erstellte diese {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 +38,Document is only editable by users of role,Das Dokument kann nur von Benutzern der Rolle bearbeitet werden -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.","Die Aufgabe {0}, die Sie {1} zugeordnet haben, wurde von {2} geschlossen." +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.","Die Aufgabe {0}, die Sie {1} zugeordnet haben, wurde von {2} geschlossen." DocType: Print Format,Show Line Breaks after Sections,Zeige Zeilenumbrüche nach den Abschnitten +DocType: Communication,Read by Recipient On,Gelesen von Empfänger On DocType: Blogger,Short Name,Kürzel -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},Seite {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},Seite {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},Verknüpft mit {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1981,20 +2030,20 @@ DocType: Communication,Feedback,Rückmeldung apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,Übersetzung öffnen apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,Diese E-Mail ist automatisch generiert DocType: Workflow State,Icon will appear on the button,Symbol wird auf der Schaltfläche angezeigt -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Socketio ist nicht verbunden. Kann nicht hochladen +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Socketio ist nicht verbunden. Kann nicht hochladen DocType: Website Settings,Website Settings,Webseiten-Einstellungen apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,Monat DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: In Reference: {{ reference_doctype }} {{ reference_name }} senden Dokumentverweis DocType: DocField,Fetch From,Abholen von apps/frappe/frappe/modules/utils.py +205,App not found,App nicht gefunden -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Kann {0} nicht gegen ein Kind Dokument erstellen: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},Kann {0} nicht gegen ein Kind Dokument erstellen: {1} DocType: Social Login Key,Social Login Key,Social Login-Schlüssel DocType: Portal Settings,Custom Sidebar Menu,Benutzerdefinierte Sidebar Menu DocType: Workflow State,pencil,Bleistift apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat-Nachrichten und andere Meldungen apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},Dahinter einfügen kann nicht als eingestellt werden {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,{0} teilen mit -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,E-Mail-Konto-Setup geben Sie bitte Ihre Passwort für: +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,E-Mail-Konto-Setup geben Sie bitte Ihre Passwort für: DocType: Workflow State,hand-up,Pfeil-nach-oben DocType: Blog Settings,Writers Introduction,Vorwort des Autors DocType: Address,Phone,Telefon @@ -2002,18 +2051,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,Passiv DocType: Contact,Accounts Manager,Kontenmanager apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Ihre Zahlung wird storniert. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,Dateityp auswählen +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,Dateityp auswählen apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,Alle ansehen DocType: Help Article,Knowledge Base Editor,Wissensdatenbank Bearbeiter/-in apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Seite nicht gefunden DocType: DocField,Precision,Genauigkeit DocType: Website Slideshow,Slideshow Items,Bestandteile der Diaschau apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,"Versuchen Sie, wiederholte Wörter und Zeichen zu vermeiden" -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,Es gibt fehlerhafte Läufe mit demselben Datenmigrationsplan DocType: Event,Groups,Gruppen DocType: Workflow Action,Workflow State,Workflow-Zustand apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,Zeilen hinzugefügt -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,Erfolg! Du bist gut zu gehen 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,Erfolg! Du bist gut zu gehen 👍 apps/frappe/frappe/www/me.html +3,My Account,Mein Konto DocType: ToDo,Allocated To,Zugewiesen zu apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,Bitte auf die folgende Verknüpfung klicken um ein neues Passwort zu setzen @@ -2021,36 +2069,39 @@ DocType: Notification,Days After,Tage nach DocType: Newsletter,Receipient,Empfänger DocType: Contact Us Settings,Settings for Contact Us Page,Einstellungen Kontakt DocType: Custom Script,Script Type,Skripttyp +DocType: Print Settings,Enable Print Server,Aktivieren Sie den Druckserver apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,vor {0} Woche(n) DocType: Auto Repeat,Auto Repeat Schedule,Automatischer Wiederholungszeitplan DocType: Email Account,Footer,Fußzeile apps/frappe/frappe/config/integrations.py +48,Authentication,Beglaubigung apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,Ungültige Verknüpfung +DocType: Web Form,Client Script,Clientskript DocType: Web Page,Show Title,Bezeichnung anzeigen DocType: Chat Message,Direct,Direkte DocType: Property Setter,Property Type,Eigenschaftstyp DocType: Workflow State,screenshot,Screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Nur der Administrator kann einen Standardbericht speichern. Bitte umbenennen und speichern. DocType: System Settings,Background Workers,Hintergrundaktivitäten -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,Feldname {0} im Konflikt mit Meta-Objekt +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,Feldname {0} im Konflikt mit Meta-Objekt DocType: Deleted Document,Data,Daten apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumentenstatus apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Sie haben {0} von {1} gemacht DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth-Autorisierungscode -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,Import nicht erlaubt +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,Import nicht erlaubt DocType: Deleted Document,Deleted DocType,Gelöschtes DocType apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Berechtigungsebenen DocType: Workflow State,Warning,Warnung DocType: Data Migration Run,Percent Complete,Prozent abgeschlossen DocType: Tag Category,Tag Category,Tag Kategorie -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","Artikel {0} wird ignoriert, weil eine Gruppe mit dem gleichen Namen existiert!" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,Hilfe +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","Artikel {0} wird ignoriert, weil eine Gruppe mit dem gleichen Namen existiert!" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,Hilfe DocType: User,Login Before,Anmelden vor DocType: Web Page,Insert Style,Stil einfügen apps/frappe/frappe/config/setup.py +276,Application Installer,Einrichtungsprogramm für Anwendungen -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,Neuer Berichtsname +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,Neuer Berichtsname +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,Wochenenden ausblenden DocType: Workflow State,info-sign,Info-Zeichen -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Wert für {0} kann keine Liste sein +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,Wert für {0} kann keine Liste sein DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Wie soll diese Währung formatiert werden? Wenn nichts festgelegt ist, werden die Standardeinstellungen verwendet" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,{0} Dokumente einreichen? apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Datensicherungen zuzugreifen. @@ -2061,9 +2112,10 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,Rollenberechtigungen DocType: Help Article,Intermediate,Mittlere apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Abgebrochenes Dokument als Entwurf wiederhergestellt +DocType: Data Migration Run,Start Time,Startzeit apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Kann nicht gelöscht oder abgebrochen werden, weil {0} {1} mit {2} {3} {4} verknüpft ist" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Kann Lesen -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} Diagramm /Konten (context?) +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} Diagramm DocType: Custom Role,Response,Antwort DocType: DocField,Geolocation,Geolokalisierung DocType: Workflow,Emails will be sent with next possible workflow actions,E-Mails werden mit den nächsten möglichen Workflow-Aktionen gesendet @@ -2071,6 +2123,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Kann freigeben apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Ungültige Empfängeradresse DocType: Workflow State,step-forward,Schritt nach vorn +DocType: System Settings,Allow Login After Fail,Login nach Fehler zulassen apps/frappe/frappe/limits.py +69,Your subscription has expired.,Ihr Abonnement ist abgelaufen. DocType: Role Permission for Page and Report,Set Role For,Set Rolle für DocType: GCalendar Account,The name that will appear in Google Calendar,"Der Name, der in Google Kalender angezeigt wird" @@ -2079,7 +2132,7 @@ DocType: Event,Starts on,Beginnt am DocType: System Settings,System Settings,Systemverwaltung DocType: GCalendar Settings,Google API Credentials,Google API-Anmeldeinformationen apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,Sitzungsstart fehlgeschlagen -apps/frappe/frappe/email/queue.py +499,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/email/queue.py +511,This email was sent to {0} and copied to {1},Diese E-Mail wurde an {0} gesendet und eine Kopie an {1} DocType: Workflow State,th,th DocType: Social Login Key,Provider Name,Anbietername apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},Neu erstellen: {0} @@ -2093,35 +2146,38 @@ DocType: System Settings,Choose authentication method to be used by all users,"W apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Doctype erforderlich DocType: Workflow State,ok-sign,OK-Zeichen apps/frappe/frappe/config/setup.py +146,Deleted Documents,Gelöschte Dokumente -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,Desktop Icon existiert bereits apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,Duplizieren DocType: Newsletter,Create and Send Newsletters,Newsletter erstellen und senden -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,Von-Datum muss vor dem Bis-Datum liegen +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,Von-Datum muss vor dem Bis-Datum liegen DocType: Address,Andaman and Nicobar Islands,Andamanen und Nikobaren -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,GSuite Dokument -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,"Bitte angeben, welches Wertefeld überprüft werden muss" +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,GSuite Dokument +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,"Bitte angeben, welches Wertefeld überprüft werden muss" apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added","""Übergeordnet"" bezeichnet die übergeordnete Tabelle, in der diese Zeile hinzugefügt werden muss" apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Kann diese E-Mail nicht senden. Sie haben das Sendelimit von {0} E-Mails für diesen Tag überschritten. DocType: Website Theme,Apply Style,Stil anwenden DocType: Feedback Request,Feedback Rating,Feedback-Bewertung apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Freigegeben für -DocType: Help Category,Help Articles,Hilfeartikel +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,Hängen Sie Dateien / URLs an und fügen Sie sie in die Tabelle ein. +DocType: Help Category,Help Articles,Artikel-Hilfe apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Typ: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Ihre Zahlung ist fehlgeschlagen. DocType: Communication,Unshared,ungeteilten DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nicht gefunden -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} wird auf den Status {2} festgelegt +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} wird auf den Status {2} festgelegt DocType: User,Location,Ort ,Permitted Documents For User,Zulässige Dokumente für Benutzer apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Sie müssen die Berechtigung zum ""Freigeben"" haben" DocType: Communication,Assignment Completed,Auftrag abgeschlossen -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},Massen-Bearbeitung {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},Massen-Bearbeitung {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,Bericht herunterladen apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Nicht aktiv DocType: About Us Settings,Settings for the About Us Page,"Einstellungen ""Über uns""" apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,Stripe Payment Gateway Einstellungen DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,z.B. pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,Schlüssel generieren apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Feld benutzen um Datensätze zu filtern DocType: DocType,View Settings,Einstellungen anzeigen DocType: Email Account,Outlook.com,Outlook.com @@ -2131,12 +2187,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,Schick mir eine Kopie der ausgehenden E-Mails DocType: System Settings,Scheduler Last Event,Letztes Ereignis im Zeitplaner DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Google Analytics-ID hinzufügen: z. B. UA-89XXX57-1. Weitere Informationen finden Sie bei Google Analytics. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,Das Passwort darf nicht mehr als 100 Zeichen lang sein +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,Das Passwort darf nicht mehr als 100 Zeichen lang sein DocType: OAuth Client,App Client ID,App Client-ID DocType: Kanban Board,Kanban Board Name,Kanban-Tafel Name DocType: Notification Recipient,"Expression, Optional","Ausdruck, Optional" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopiere und füge diesen Code in eine leere Code.gs in deinem Projekt auf script.google.com ein -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},Diese E-Mail wurde an {0} versandt +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},Diese E-Mail wurde an {0} versandt DocType: System Settings,Hide footer in auto email reports,Fußzeile in automatischen E-Mail-Berichten ausblenden DocType: DocField,Remember Last Selected Value,"Denken Sie daran, Zuletzt gewählte Wert" DocType: Email Account,Check this to pull emails from your mailbox,"Hier aktivieren, um E-Mails aus Ihrem Postfach abzurufen" @@ -2152,15 +2208,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",Dokumentationsergebnisse für "{0}" DocType: Workflow State,envelope,Umschlag apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Option 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,Der Druck ist fehlgeschlagen DocType: Feedback Trigger,Email Field,E-Mail-Feld -apps/frappe/frappe/www/update-password.html +68,New Password Required.,Neues Passwort erforderlich. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,Neues Passwort erforderlich. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} teilte dieses Dokument mit {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,Fügen Sie Ihre Bewertung hinzu +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,Fügen Sie Ihre Bewertung hinzu DocType: Website Settings,Brand Image,Markenzeichen DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Einrichten der oberen Navigationsleiste, der Fußzeile und des Logos" DocType: Web Form Field,Max Value,Max Value -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},Für {0} auf der Ebene {1} in {2} in Zeile {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},Für {0} auf der Ebene {1} in {2} in Zeile {3} DocType: User Social Login,User Social Login,Benutzer soziale Anmeldung DocType: Contact,All,Alle DocType: Email Queue,Recipient,Empfänger @@ -2169,27 +2226,27 @@ DocType: Address,Sales User,Nutzer Vertrieb apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,Drag & Drop-Werkzeug zum Erstellen und Anpassen von Druckformaten DocType: Address,Sikkim,Sikkim apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,Menge -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,Dieser Abfragestil wird eingestellt +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,Dieser Abfragestil wird eingestellt DocType: Notification,Trigger Method,Trigger-Methode -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},Betreiber muss einer von {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},Betreiber muss einer von {0} DocType: Dropbox Settings,Dropbox Access Token,Dropbox-Zugriffs-Token DocType: Workflow State,align-right,rechtsbündig DocType: Auto Email Report,Email To,E-Mail an apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,Ordner {0} ist nicht leer DocType: Page,Roles,Rollen -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Fehler: Wert fehlt für {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,Feld {0} ist nicht auswählbar. +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},Fehler: Wert fehlt für {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,Feld {0} ist nicht auswählbar. DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,Sitzungsende DocType: Workflow State,ban-circle,Bannkreis apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,Slack Webhook Fehler DocType: Email Flag Queue,Unread,Ungelesen DocType: Auto Repeat,Desk,Schreibtisch -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),Filter muss ein Tupel oder eine Liste sein (in einer Liste) +apps/frappe/frappe/utils/data.py +805,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 +8,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) DocType: Address,Arunachal Pradesh,Arunachal Pradesh -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,Einstellungen Auto E-Mail +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Einstellungen Auto E-Mail apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Strg + Ab DocType: Chat Profile,Message Preview,Vorschau der Nachricht apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,Dies ist ein eines der 10 meist genutzten Passwörter. @@ -2212,7 +2269,7 @@ DocType: OAuth Client,Implicit,Implizit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Als Kommunikation zu diesem DocType anhängen (muss die Felder, ""Status"" und ""Betreff"" beinhalten)" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URIs zum Empfangen von Berechtigungscodes, wenn der Benutzer den Zugriff ermöglicht, sowie Ausfall Antworten. Typischerweise App ein REST-Endpunkt durch den Kunden ausgesetzt.
zB http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,Ändern von {0} nach dem Übertragen nicht erlaubt +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,Ändern von {0} nach dem Übertragen nicht erlaubt DocType: Data Migration Mapping,Migration ID Field,Migrations-ID-Feld DocType: Communication,Comment Type,Kommentarart DocType: OAuth Client,OAuth Client,OAuth-Client @@ -2224,6 +2281,7 @@ DocType: DocField,Signature,Signatur apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Freigeben für apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,Laden apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","Zugangsdaten eingeben um auf Facebook, Google und GitHub zuzugreifen" +DocType: Data Import,Insert new records,Fügen Sie neue Datensätze ein apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},Das Dateiformat für {0} kann nicht gelesen werden DocType: Auto Email Report,Filter Data,Filterdaten apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Bitte zuerst eine Datei anhängen. @@ -2240,7 +2298,7 @@ DocType: DocType,Title Case,Bezeichnung in Großbuchstaben DocType: Data Migration Run,Data Migration Run,Datenmigrationslauf DocType: Blog Post,Email Sent,E-Mail wurde versandt DocType: DocField,Ignore XSS Filter,XSS-Filter ignorieren -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,entfernt +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,entfernt apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,Dropbox Backup-Einstellungen apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,Als E-Mail senden DocType: Website Theme,Link Color,Farbe der Verknüpfung @@ -2256,22 +2314,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,LDAP Einstellungen apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,Entitätsname apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Änderung apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal Payment-Gateway-Einstellungen -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) wird abgeschnitten werden, da maximal {2} Zeichen erlaubt sind" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) wird abgeschnitten werden, da maximal {2} Zeichen erlaubt sind" DocType: OAuth Client,Response Type,Antworttyp DocType: Contact Us Settings,Send enquiries to this email address,Anfragen an diese E-Mail-Adresse senden DocType: Letter Head,Letter Head Name,Briefkopf Name DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Anzahl der Spalten für ein Feld in einer Listenansicht oder einem Gitter (Total Spalten sollte weniger als 11) apps/frappe/frappe/config/website.py +18,User editable form on Website.,Vom Benutzer bearbeitbares Formular auf der Webseite DocType: Workflow State,file,Datei -apps/frappe/frappe/www/login.html +90,Back to Login,Zurück zum Login +apps/frappe/frappe/www/login.html +91,Back to Login,Zurück zum Login DocType: Data Migration Mapping,Local DocType,Lokaler DocType apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,Zum Umbenennen benötigen Sie eine Schreibberechtigung +DocType: Email Account,Use ASCII encoding for password,Verwenden Sie die ASCII-Codierung für das Kennwort DocType: User,Karma,Karma DocType: DocField,Table,Tabelle DocType: File,File Size,Dateigröße -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Anmeldung erforderlich, um dieses Formular zu übermitteln" +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,"Anmeldung erforderlich, um dieses Formular zu übermitteln" DocType: User,Background Image,Hintergrundbild -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},Benachrichtigung für Dokumenttyp {0} kann nicht festgelegt werden +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},Benachrichtigung für Dokumenttyp {0} kann nicht festgelegt werden apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency","Bitte Land, Zeitzone und Währung auswählen" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,Zwischen @@ -2280,7 +2339,7 @@ DocType: Braintree Settings,Use Sandbox,Sandkastenmodus verwenden apps/frappe/frappe/utils/goal.py +101,This month,Diesen Monat apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,Neues benutzerdefiniertes Druckformat DocType: Custom DocPerm,Create,Erstellen -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},Ungültiger Filter: {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},Ungültiger Filter: {0} DocType: Email Account,no failed attempts,keine Fehlversuchen DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,App Zugriffsschlüssel @@ -2289,7 +2348,7 @@ 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/page/usage_info/usage_info.html +66,Backup Size:,Sicherungsgröße: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},Automatische Wiederholung wurde {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},Automatische Wiederholung wurde {0} 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 @@ -2298,10 +2357,10 @@ DocType: Web Form,Allow Edit,Bearbeitung zulassen apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,Einfügen DocType: Webhook,Doc Events,Doc Veranstaltungen DocType: Auto Email Report,Based on Permissions For User,Basierend auf Benutzerberechtigungen -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},Zustand des aufgehobenen Dokumentes kann nicht geändert werden. Übergangszeile {0} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},Zustand des aufgehobenen Dokumentes kann nicht geändert werden. Übergangszeile {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Regeln dafür, wann Zustände Übergänge sind (wie ""Nächster Zustand"") und welcher Rolle es erlaubt ist, einen Zustand zu ändern, usw." apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} existiert bereits -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},"""Anhängen an"" kann ein Wert aus {0} sein" +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},"""Anhängen an"" kann ein Wert aus {0} sein" DocType: DocType,Image View,Bildansicht apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Es scheint, als wäre während der Transaktion etwas falsch gelaufen. Da wir die Zahlung nicht bestätigt haben, wird Paypal automatisch diesen Betrag an Sie zurück erstatten. Ist dies nicht der Fall, senden Sie uns bitte eine E-Mail und geben Sie die Abstimmungs ID: {0} an." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" @@ -2311,7 +2370,6 @@ DocType: List Filter,List Filter,Listenfilter DocType: Workflow State,signal,Signal apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,Hat Anhänge DocType: DocType,Show Print First,Ausdruck zuerst anzeigen -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Benutzer apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},{0} neu erstellen apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,Neues E-Mail-Konto apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Dokument wiederhergestellt @@ -2337,7 +2395,7 @@ DocType: Web Form,Web Form Fields,Web-Formularfelder DocType: Website Theme,Top Bar Text Color,Kopfleisten-Textfarbe DocType: Auto Repeat,Amended From,Abgeändert von apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},Achtung: {0} in keiner verwandten Tabelle von {1} gefunden -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,Dieses Dokument ist derzeit für die Ausführung der Warteschlange. Bitte versuche es erneut +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,Dieses Dokument ist derzeit für die Ausführung der Warteschlange. Bitte versuche es erneut apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,Datei '{0}' nicht gefunden apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Aufteilung entfernen DocType: User,Change Password,Kennwort ändern @@ -2347,19 +2405,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,Hallo! apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,Braintree-Zahlungsgateway-Einstellungen apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Das Ende des Ereignisses muss nach dem Ereignis-Anfang liegen apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Dadurch wird {0} von allen anderen Geräten abgemeldet -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten DocType: System Settings,Apply Strict User Permissions,Strenge Benutzerberechtigungen anwenden DocType: DocField,Allow Bulk Edit,Massenbearbeitung zulassen DocType: Blog Post,Blog Post,Blog-Eintrag -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,Erweiterte Suche +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,Erweiterte Suche apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,"Sie sind nicht berechtigt, den Newsletter zu anzusehen." -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"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." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,"Das Formular kann nicht gespeichert werden, da der Datenimport gerade ausgeführt wird." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,Sortieren nach DocType: Workflow,States,Zustände DocType: Notification,Attach Print,Ausdruck anhängen -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},Empfohlener Benutzername: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Empfohlener Benutzername: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,Tag ,Modules,Module apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Desktopsymbole anpassen @@ -2368,12 +2427,12 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +163,No {0} mail,N apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in uploading files,Fehler beim Hochladen von Dateien DocType: OAuth Bearer Token,Revoked,Gesperrte DocType: Web Page,Sidebar and Comments,Sidebar und Kommentare -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wenn ein Dokument nach dem Stornieren geändert und abgespeichert wird, bekommt es eine neue Versionsnummer der alten Nummer." -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wenn ein Dokument nach dem Stornieren geändert und abgespeichert wird, bekommt es eine neue Nummer, basierend auf der alten Nummer." +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Es ist nicht erlaubt, das Dokument {0} anzuhängen, bitte aktivieren Sie Druck zulassen für {0} in den Druckeinstellungen" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,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 +68,Start Import,Starten Sie den Import +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,Starten Sie den Import DocType: Workflow State,circle-arrow-left,Kreis-Pfeil-nach-links apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,Redis Cache-Server läuft nicht. Bitte Administrator/Technischen Support kontaktieren apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Einen neuen Datensatz erstellen @@ -2381,7 +2440,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,S DocType: Currency,Fraction,Teil DocType: LDAP Settings,LDAP First Name Field,LDAP-Feld Vorname apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,"zum automatischen Erstellen des wiederkehrenden Dokuments, um fortzufahren." -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,Aus bestehenden Anlagen auswählen +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,Aus bestehenden Anlagen auswählen DocType: Custom Field,Field Description,Feldbeschreibung apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,Name nicht über Eingabeaufforderung gesetzt 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"".","Geben Sie Standardwertfelder (Schlüssel) und Werte ein. Wenn Sie mehrere Werte für ein Feld hinzufügen, wird das erste ausgewählt. Diese Standardwerte werden auch zum Festlegen von Übereinstimmungsregeln verwendet. Um eine Liste der Felder anzuzeigen, gehen Sie zu "Anpassen des Formulars"." @@ -2401,6 +2460,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Artikel aufrufen DocType: Contact,Image,Bild DocType: Workflow State,remove-sign,Entfernen-Zeichen +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,Verbindung zum Server fehlgeschlagen apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,Es gibt keine zu exportierenden Daten DocType: Domain Settings,Domains HTML,Domänen HTML apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,Geben Sie etwas in das Suchfeld zu suchen @@ -2428,33 +2488,34 @@ DocType: Address,Address Line 2,Adresse Zeile 2 DocType: Address,Reference,Referenz apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Zugewiesen zu DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Datenmigrations-Mapping-Detail -DocType: Email Flag Queue,Action,Aktion +DocType: Data Import,Action,Aktion DocType: GSuite Settings,Script URL,Skript-URL -apps/frappe/frappe/www/update-password.html +119,Please enter the password,Bitte Passwort eingeben -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,Das Drucken von abgebrochen Dokumenten ist nicht erlaubt. +apps/frappe/frappe/www/update-password.html +111,Please enter the password,Bitte Passwort eingeben +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Das Drucken von abgebrochen Dokumenten ist nicht erlaubt. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,Sie sind nicht berechtigt Spalten zu erstellen DocType: Data Import,If you don't want to create any new records while updating the older records.,Wenn Sie beim Aktualisieren der älteren Datensätze keine neuen Datensätze erstellen möchten. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Info: DocType: Custom Field,Permission Level,Berechtigungsebene DocType: User,Send Notifications for Transactions I Follow,"Benachrichtigungen für Transaktionen, denen Sie folgen, senden" -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht auf ""Übertragen"", ""Stornieren"", ""Ändern"" eingestellt werden ohne ""Schreiben""" -DocType: Google Maps,Client Key,Kundenschlüssel -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Soll die Anlage wirklich gelöscht werden? -apps/frappe/frappe/__init__.py +1097,Thank you,Danke +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht auf ""Übertragen"", ""Stornieren"", ""Ändern"" eingestellt werden ohne ""Schreiben""" +DocType: Google Maps Settings,Client Key,Kundenschlüssel +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,Soll die Anlage wirklich gelöscht werden? +apps/frappe/frappe/__init__.py +1178,Thank you,Danke apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Speichere DocType: Print Settings,Print Style Preview,Druckstil-Vorschau apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Ordner apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,Symbole -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,"Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren" +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,"Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren" apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,E-Mails apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Bitte wählen Sie Dokumenttyp zuerst -apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Bitte legen Sie die Basis-URL im Social Login-Schlüssel für Frappe fest +apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Bitte legen Sie die Basis-URL unter Social Login-Schlüssel für Frappe fest DocType: About Us Settings,About Us Settings,"Einstellungen zu ""Über uns""" DocType: Website Settings,Website Theme,Webseiten-Thema +DocType: User,Api Access,Api Zugriff DocType: DocField,In List View,In der Listenansicht DocType: Email Account,Use TLS,TLS verwenden apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ungültige Benutzerkennung oder ungültiges Passwort -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,Vorlage herunterladen +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,Vorlage herunterladen apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,Benutzerdefiniertes Javascript zum Formular hinzufügen ,Role Permissions Manager,Rollenberechtigungen-Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Name des neuen Druckformats @@ -2473,7 +2534,6 @@ DocType: Website Settings,HTML Header & Robots,HTML-Header und Robots DocType: User Permission,User Permission,Benutzerberechtigung apps/frappe/frappe/config/website.py +32,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,LDAP nicht installiert -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,Mit Daten herunterladen DocType: Workflow State,hand-right,Pfeil-nach-rechts DocType: Website Settings,Subdomain,Unterdomäne apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,Einstellungen für OAuth Provider @@ -2485,6 +2545,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,E-Mail Login-ID apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,Zahlung Cancelled ,Addresses And Contacts,Adressen und Kontakte +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,Bitte wählen Sie zuerst den Dokumententyp. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Fehlerprotokolle löschen apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Bitte wählen Sie eine Bewertung apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,OTP-Geheimnis zurücksetzen @@ -2493,19 +2554,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,vor 2 apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Blog-Einträge kategorisieren DocType: Workflow State,Time,Zeit DocType: DocField,Attach,Anhängen -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Feedback Anfrage nur dann senden, wenn mindestens eine Kommunikation ist für das Dokument vorhanden ist." DocType: Custom Role,Permission Rules,Berechtigungsregeln DocType: Braintree Settings,Public Key,Öffentlicher Schlüssel DocType: GSuite Settings,GSuite Settings,GSuite Einstellungen DocType: Address,Links,Verknüpfungen apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,Bitte wählen Sie den Dokumententyp. -apps/frappe/frappe/model/base_document.py +396,Value missing for,Fehlender Wert für +apps/frappe/frappe/model/base_document.py +405,Value missing for,Fehlender Wert für apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,Unterpunkt hinzufügen apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Übertragener Datensatz kann nicht gelöscht werden. DocType: GSuite Templates,Template Name,Vorlagenname apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,neuer Dokumententyp -DocType: Custom DocPerm,Read,Lesen +DocType: Communication,Read,Lesen DocType: Address,Chhattisgarh,Chhattisgarh DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rollengenehmigung Seite und Bericht apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Wert anordnen @@ -2515,9 +2576,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,Direkter Raum mit {Other} existiert bereits. DocType: Has Domain,Has Domain,Hat Domain apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Verstecken -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,Sie haben noch kein Konto? Konto erstellen +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,Sie haben noch kein Konto? Konto erstellen apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,ID-Feld kann nicht entfernt werden -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kann nicht als ""als geändert markieren"" eingestellt werden, wenn nicht übertragbar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kann nicht als ""als geändert markieren"" eingestellt werden, wenn nicht übertragbar" DocType: Address,Bihar,Bihar DocType: Activity Log,Link DocType,Link DocType apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,Du hast noch keine Nachrichten. @@ -2532,14 +2593,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Untertabellen werden in anderen Dokumententypen als Verzeichnis angezeigt. DocType: Chat Room User,Chat Room User,Chat-Raumbenutzer apps/frappe/frappe/model/workflow.py +38,Workflow State not set,Workflow-Status nicht festgelegt -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},Fehlercode: {0} +apps/frappe/frappe/www/404.html +23,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 +26,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)." DocType: Workflow,Allow Self Approval,Erlaube Selbstgenehmigung apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,John Doe DocType: DocType,Name Case,Grossschreibung apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,Für alle freigegeben -apps/frappe/frappe/model/base_document.py +392,Data missing in table,In der Tabelle fehlen Daten +apps/frappe/frappe/model/base_document.py +401,Data missing in table,In der Tabelle fehlen Daten DocType: Web Form,Success URL,Erfolgs-URL DocType: Email Account,Append To,Anhängen an apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,Feste Höhe @@ -2560,30 +2621,31 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,Robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,Verzeihung! Teilen mit dem Webseite-Nutzer ist verboten. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,Alle Rollen hinzufügen +DocType: Website Theme,Bootstrap Theme,Bootstrap-Thema apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!","Bitte sowohl die E-Mail-Adresse als auch die Nachricht eingeben, damit wir antworten können. Danke!" -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,Konnte keine Verbindung zum Postausgangsserver herstellen +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,Konnte keine Verbindung zum Postausgangsserver herstellen apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Vielen Dank für Ihr Interesse an einem Abonnement unserer Aktualisierungen DocType: Braintree Settings,Payment Gateway Name,Name des Zahlungsgateways -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,benutzerdefinierte Spalte +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,benutzerdefinierte Spalte DocType: Workflow State,resize-full,anpassen-voll DocType: Workflow State,off,aus apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,Wiederholung -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Bericht {0} ist deaktiviert +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,Bericht {0} ist deaktiviert DocType: Activity Log,Core,Kern apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Festlegen von Berechtigungen DocType: DocField,Set non-standard precision for a Float or Currency field,Keine Standard-Genauigkeit für ein Float- oder Währungsfeld einstellen DocType: Email Account,Ignore attachments over this size,Anhänge mit einer Größe über diesem Wert ignorieren DocType: Address,Preferred Billing Address,Bevorzugte Rechnungsadresse apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,Der Workflow-Status {0} ist nicht zulässig -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,Zu viel Text für eine Anfrage. Bitte kleinere Anfragen senden +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,Zu viel Text für eine Anfrage. Bitte kleinere Anfragen senden apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Werte geändert DocType: Workflow State,arrow-up,Pfeil-nach-oben DocType: OAuth Bearer Token,Expires In,Verfällt in DocType: DocField,Allow on Submit,Beim Übertragen zulassen DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Ausnahmetyp -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,Spalten auswählen +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Spalten auswählen DocType: Web Page,Add code as <script>,"Code als ""script"" hinzufügen" DocType: Webhook,Headers,Headers apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +35,Please enter values for App Access Key and App Secret Key,Bitte geben Sie die Werte für App Access Key und App Secret Key @@ -2602,10 +2664,11 @@ apps/frappe/frappe/core/doctype/communication/communication.js +106,Relink Commu apps/frappe/frappe/www/third_party_apps.html +58,No Active Sessions,Keine aktiven Sessions DocType: Top Bar Item,Right,Rechts DocType: User,User Type,Benutzertyp +DocType: Prepared Report,Ref Report DocType,Ref Bericht DocType apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,Klicken Sie auf Tabelle bearbeiten DocType: GCalendar Settings,Client ID,Kunden-ID DocType: Async Task,Reference Doc,Referenz-Doc -DocType: Communication,Keep a track of all communications,Alle Kommunikation verfolgen +DocType: Communication,Keep a track of all communications,Allen Nachrichten folgen apps/frappe/frappe/desk/form/save.py +34,Did not save,Wurde nicht gespeichert DocType: Property Setter,Property,Eigenschaft DocType: Email Account,Yandex.Mail,Yandex.Mail @@ -2620,18 +2683,18 @@ DocType: Workflow State,Edit,Bearbeiten apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +229,Permissions can be managed via Setup > Role Permissions Manager,Berechtigungen können über Setup > Rollenberechtigungs-Manager verwaltet werden DocType: Website Settings,Chat Operators,Chat-Operatoren DocType: Contact Us Settings,Pincode,Postleitzahl (PLZ) -apps/frappe/frappe/core/doctype/data_import/importer.py +106,Please make sure that there are no empty columns in the file.,"Bitte sicher stellen, dass es keine leeren Spalten in der Datei gibt." +apps/frappe/frappe/core/doctype/data_import/importer.py +105,Please make sure that there are no empty columns in the file.,"Bitte sicher stellen, dass es keine leeren Spalten in der Datei gibt." apps/frappe/frappe/utils/oauth.py +184,Please ensure that your profile has an email address,"Bitte stellen Sie sicher, dass Ihr Profil eine E-Mail-Adresse hat" apps/frappe/frappe/public/js/frappe/model/create_new.js +288,You have unsaved changes in this form. Please save before you continue.,"Sie haben noch nicht gespeicherte Änderungen in diesem Formular. Bitte speichern Sie diese, bevor Sie fortfahren." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +506,Default for {0} must be an option,Standard für {0} muss eine Auswahlmöglichkeit sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +549,Default for {0} must be an option,Standard für {0} muss eine Auswahlmöglichkeit sein DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie DocType: User,User Image,Bild des Benutzers -apps/frappe/frappe/email/queue.py +338,Emails are muted,E-Mails sind stumm geschaltet +apps/frappe/frappe/email/queue.py +341,Emails are muted,E-Mails sind stumm geschaltet apps/frappe/frappe/config/integrations.py +88,Google Services,Google-Dienste apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Up,Strg + Auf DocType: Website Theme,Heading Style,Gestaltung der Überschrift -apps/frappe/frappe/utils/data.py +625,1 weeks ago,vor 1 Woche +apps/frappe/frappe/utils/data.py +627,1 weeks ago,vor 1 Woche DocType: Communication,Error,Fehler DocType: Auto Repeat,End Date,Enddatum DocType: Data Import,Ignore encoding errors,Ignoriere Codierungsfehler @@ -2639,6 +2702,7 @@ DocType: Chat Profile,Notifications,Benachrichtigungen DocType: DocField,Column Break,Spaltenumbruch DocType: Event,Thursday,Donnerstag apps/frappe/frappe/utils/response.py +153,You don't have permission to access this file,Keine Berechtigung für den Zugriff auf diese Datei vorhanden +apps/frappe/frappe/core/doctype/user/user.js +201,Save API Secret: ,API-Geheimnis speichern: apps/frappe/frappe/model/document.py +738,Cannot link cancelled document: {0},Aufgehobenes Dokument kann nicht verknüpft werden: {0} apps/frappe/frappe/core/doctype/report/report.py +30,Cannot edit a standard report. Please duplicate and create a new report,Der Standard-Report kann nicht bearbeitet werden. Bitte kopieren und einen neuen Bericht erstellen apps/frappe/frappe/contacts/doctype/address/address.py +59,"Company is mandatory, as it is your company address","Gesellschaft ist zwingend erforderlich, da es Ihre Firmenadresse ist" @@ -2655,9 +2719,9 @@ DocType: Custom Field,Label Help,Bezeichnungshilfe DocType: Workflow State,star-empty,sternenleer apps/frappe/frappe/utils/password_strength.py +141,Dates are often easy to guess.,Termine sind oft leicht zu erraten. apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Next actions,Nächste Aktionen -apps/frappe/frappe/email/doctype/notification/notification.py +69,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Standardbenachrichtigung kann nicht bearbeitet werden. Um es zu bearbeiten, deaktivieren Sie das bitte und duplizieren Sie es" +apps/frappe/frappe/email/doctype/notification/notification.py +68,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Standardbenachrichtigung kann nicht bearbeitet werden. Um es zu bearbeiten, deaktivieren Sie das bitte und duplizieren Sie es" DocType: Workflow State,ok,OK -apps/frappe/frappe/public/js/frappe/ui/comment.js +219,Submit Review,Bewertung abschicken +apps/frappe/frappe/public/js/frappe/ui/comment.js +223,Submit Review,Bewertung abschicken DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Diese Werte werden automatisch in Transaktionen aktualisiert. Außerdem sind sie nützlich, um die Berechtigungen dieses Benutzers bei Transaktionen mit diesen Werten zu beschränken." apps/frappe/frappe/twofactor.py +312,Verfication Code,Bestätigunscode apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,for generating the recurring,zur Erzeugung der wiederkehrenden @@ -2675,12 +2739,12 @@ apps/frappe/frappe/core/doctype/user/user.js +94,Reset Password,Passwort zurück apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Bitte Upgrade auf mehr als {0} Abonnenten hinzufügen DocType: Workflow State,hand-left,Pfeil-nach-links DocType: Data Import,If you are updating/overwriting already created records.,Wenn Sie bereits erstellte Datensätze aktualisieren / überschreiben. -apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Fieldtype {0} for {1} cannot be unique,Feldtyp {0} für {1} kann nicht einmalig sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +562,Fieldtype {0} for {1} cannot be unique,Feldtyp {0} für {1} kann nicht einmalig sein apps/frappe/frappe/public/js/frappe/list/list_filter.js +35,Is Global,Ist global DocType: Email Account,Use SSL,SSL verwenden DocType: Workflow State,play-circle,Spielplatz apps/frappe/frappe/public/js/frappe/form/layout.js +502,"Invalid ""depends_on"" expression","Ungültiger ""depends_on"" Ausdruck" -apps/frappe/frappe/public/js/frappe/chat.js +1618,Group Name,Gruppenname +apps/frappe/frappe/public/js/frappe/chat.js +1617,Group Name,Gruppenname apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Zu bearbeitendes Druckformat wählen DocType: Address,Shipping,Versand DocType: Workflow State,circle-arrow-down,Kreis-Pfeil-nach-unten @@ -2698,23 +2762,23 @@ DocType: SMS Settings,SMS Settings,SMS-Einstellungen DocType: Company History,Highlight,Hervorheben DocType: OAuth Provider Settings,Force,Kraft DocType: DocField,Fold,Falz +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +668,Ascending,Aufsteigend apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Standard-Druckformat kann nicht aktualisiert werden apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Fräulein -apps/frappe/frappe/public/js/frappe/model/model.js +586,Please specify,Bitte angeben +apps/frappe/frappe/public/js/frappe/model/model.js +585,Please specify,Bitte angeben DocType: Communication,Bot,Bot DocType: Help Article,Help Article,Hilfe Artikel DocType: Page,Page Name,Seitenname apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +206,Help: Field Properties,Hilfe: Feldeigenschaften apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +607,Also adding the dependent currency field {0},Außerdem wird das abhängige Währungsfeld {0} hinzugefügt. apps/frappe/frappe/core/doctype/file/file.js +27,Unzip,Dekomprimieren -apps/frappe/frappe/model/document.py +1072,Incorrect value in row {0}: {1} must be {2} {3},Falscher Wert in Zeile {0}: {1} muss {2} {3} sein -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Keine Ergebnisse gefunden für '

-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +68,Submitted Document cannot be converted back to draft. Transition row {0},Buchung kann nicht in Entwurf umgewandelt werden. Zeile {0} +apps/frappe/frappe/model/document.py +1073,Incorrect value in row {0}: {1} must be {2} {3},Falscher Wert in Zeile {0}: {1} muss {2} {3} sein +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +69,Submitted Document cannot be converted back to draft. Transition row {0},Buchung kann nicht in Entwurf umgewandelt werden. Zeile {0} apps/frappe/frappe/config/integrations.py +98,Configure your google calendar integration,Konfigurieren Sie Ihre Google Kalender-Integration -apps/frappe/frappe/desk/reportview.py +227,Deleting {0},Löscht {0} +apps/frappe/frappe/desk/reportview.py +228,Deleting {0},Löscht {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Vorhandenes Format zum Bearbeiten wählen oder neues Format erstellen. DocType: System Settings,Bypass restricted IP Address check If Two Factor Auth Enabled,"Eingeschränkte IP-Adressenprüfung umgehen, wenn Zwei-Faktor-Authentifizierung aktiviert ist" -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +39,Created Custom Field {0} in {1},benutzerdefiniertes Feld {0} in {1} erstellt +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +40,Created Custom Field {0} in {1},benutzerdefiniertes Feld {0} in {1} erstellt DocType: System Settings,Time Zone,Zeitzone apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Sonderzeichen sind nicht erlaubt DocType: Communication,Relinked,Relinked @@ -2730,7 +2794,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/core/doctype/doctype/doctype.py +157,"Field ""route"" is mandatory for Web Views",Das Feld "Route" ist für Web-Ansichten obligatorisch +apps/frappe/frappe/core/doctype/doctype/doctype.py +158,"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 +205,Insert Column Before {0},Spalte vor {0} einfügen DocType: Email Account,Add Signature,Signatur hinzufügen apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +38,Left this conversation,Hat diese Unterhaltung verlassen @@ -2740,9 +2804,9 @@ DocType: DocField,No Copy,Keine Kopie DocType: Workflow State,qrcode,QR-Code DocType: Chat Token,IP Address,IP Adresse DocType: Data Import,Submit after importing,Nach dem Importieren buchen -apps/frappe/frappe/www/login.html +32,Login with LDAP,Einloggen mit LDAP +apps/frappe/frappe/www/login.html +33,Login with LDAP,Einloggen mit LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +732,If Owner,Wenn Inhaber +apps/frappe/frappe/core/doctype/doctype/doctype.py +775,If Owner,Wenn Inhaber DocType: Data Migration Mapping,Push,drücken DocType: OAuth Authorization Code,Expiration time,Ablaufzeit DocType: Web Page,Website Sidebar,Webseite Sidebar @@ -2753,12 +2817,10 @@ apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} vo apps/frappe/frappe/utils/password_strength.py +198,All-uppercase is almost as easy to guess as all-lowercase.,Ausschließlich Großbuchstaben sind fast so einfach zu erraten wie ausschließlich Kleinbuchstaben. DocType: Feedback Trigger,Email Fieldname,E-Mail-Feldname DocType: Website Settings,Top Bar Items,Kopfleistensymbole -apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","E-Mail-ID muss eindeutig sein, E-Mail-Konto existiert bereits \ für {0}" DocType: Notification,Print Settings,Druckeinstellungen DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Maximale Anzahl an Anhängen -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +15,Client key is required,Kundenschlüssel ist erforderlich +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +16,Client key is required,Kundenschlüssel ist erforderlich DocType: Calendar View,End Date Field,Enddatumsfeld DocType: Desktop Icon,Page,Seite apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},{0} konnte in {1} nicht gefunden werden @@ -2767,21 +2829,21 @@ apps/frappe/frappe/config/website.py +93,Knowledge Base,Wissensbasis DocType: Workflow State,briefcase,Aktenkoffer apps/frappe/frappe/model/document.py +491,Value cannot be changed for {0},Wert kann für {0} nicht geändert werden DocType: Feedback Request,Is Manual,ist Handbuch -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,Please find attached {0} #{1},Bitte Anhang beachten {0} #{1} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +272,Please find attached {0} #{1},Bitte Anhang beachten {0} #{1} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil stellt die Farbe der Schaltfläche dar: Erfolg - Grün, Gefahr - Rot, Kehrwert - Schwarz, Primär - Dunkelblau, Info - Hellblau, Warnung - Orange" apps/frappe/frappe/core/doctype/data_import/log_details.html +6,Row Status,Zeilenstatus DocType: Workflow Transition,Workflow Transition,Workflow-Übergang apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,{0} months ago,vor {0} Monate(n) apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Erstellt von -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +301,Dropbox Setup,Dropbox-Setup +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +310,Dropbox Setup,Dropbox-Setup DocType: Workflow State,resize-horizontal,anpassen-horizontal DocType: Chat Message,Content,Inhalt DocType: Data Migration Run,Push Insert,Einschub drücken apps/frappe/frappe/public/js/frappe/views/treeview.js +294,Group Node,Gruppen-Knoten DocType: Communication,Notification,Mitteilung DocType: DocType,Document,Dokument -apps/frappe/frappe/core/doctype/doctype/doctype.py +221,Series {0} already used in {1},Serie {0} bereits verwendet in {1} -apps/frappe/frappe/core/doctype/data_import/importer.py +287,Unsupported File Format,Nicht unterstütztes Dateiformat +apps/frappe/frappe/core/doctype/doctype/doctype.py +237,Series {0} already used in {1},Serie {0} bereits verwendet in {1} +apps/frappe/frappe/core/doctype/data_import/importer.py +286,Unsupported File Format,Nicht unterstütztes Dateiformat DocType: DocField,Code,Code DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Alle möglichen Zustände und Rollen des Workflows. Dokumentenstatus-Optionen sind: 0 ist ""Gespeichert"", 1 ist ""Übertragen"" und 2 ist ""Abgebrochen""" DocType: Website Theme,Footer Text Color,Textfarbe der Fußzeile @@ -2792,13 +2854,17 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +83,Toggle Grid View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +122,Invalid payment gateway credentials,Ungültige Payment-Gateway-Anmeldeinformationen DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Dies ist die Vorlagendatei, die nur mit Fehlern in den Zeilen generiert wird. Sie sollten diese Datei zur Korrektur und zum Import verwenden." apps/frappe/frappe/config/setup.py +37,Set Permissions on Document Types and Roles,Berechtigungen für Dokumenttypen und Rollen setzen -apps/frappe/frappe/model/meta.py +160,No Label,No Label +DocType: Data Migration Run,Remote ID,Remote-ID +apps/frappe/frappe/model/meta.py +205,No Label,No Label +DocType: System Settings,Use socketio to upload file,Verwenden Sie socketio zum Hochladen der Datei apps/frappe/frappe/core/doctype/transaction_log/transaction_log.py +23,Indexing broken,Indexierung unterbrochen apps/frappe/frappe/public/js/frappe/list/list_view.js +273,Refreshing,Erfrischend apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.js +54,Resume,Fortsetzen apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +77,Modified By,Geändert von DocType: Address,Tripura,Tripura DocType: About Us Settings,"""Company History""",„Unternehmensgeschichte“ +apps/frappe/frappe/www/confirm_workflow_action.html +8,This document has been modified after the email was sent.,Dieses Dokument wurde nach dem Senden der E-Mail geändert. +apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js +34,Show Report,Bericht zeigen DocType: Address,Tamil Nadu,Tamil Nadu DocType: Email Rule,Email Rule,E-Mail-Regel apps/frappe/frappe/templates/emails/recurring_document_failed.html +5,"To stop sending repetitive error notifications from the system, we have checked Disabled field in the Auto Repeat document","Um das Senden wiederholter Fehlerbenachrichtigungen vom System zu stoppen, haben wir im Auto Repeat-Dokument das Feld Deaktiviert markiert" @@ -2812,7 +2878,7 @@ DocType: Notification,Send alert if this field's value changes,"Alarm senden, we apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,"DocType auswählen, um ein neues Format zu erstellen" apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +84,'Recipients' not specified,"Keine ""Empfänger"" angegeben" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,just now,gerade eben -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Anwenden +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +28,Apply,Anwenden DocType: Footer Item,Policy,Politik apps/frappe/frappe/integrations/utils.py +80,{0} Settings not found,{0} Einstellungen nicht gefunden DocType: Module Def,Module Def,Modul-Def @@ -2826,7 +2892,7 @@ apps/frappe/frappe/website/doctype/blog_post/templates/blog_post.html +12,By,mit DocType: Print Settings,Allow page break inside tables,Seitenumbruch innerhalb von Tabellen erlauben DocType: Email Account,SMTP Server,SMTP-Server DocType: Print Format,Print Format Help,Hilfe zu Druckformaten -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,With Groups,Mit Gruppen +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Groups,Mit Gruppen DocType: DocType,Beta,Beta apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +27,Limit icon choices for all users.,Beschränken Sie die Symbolauswahl für alle Benutzer. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +24,restored {0} as {1},restauriert {0} als {1} @@ -2835,8 +2901,9 @@ DocType: DocField,Translatable,Übersetzbar DocType: Event,Every Month,Monatlich DocType: Letter Head,Letter Head in HTML,Briefkopf in HTML DocType: Web Form,Web Form,Web-Formular +apps/frappe/frappe/public/js/frappe/form/controls/date.js +128,Date {0} must be in format: {1},Das Datum {0} muss das folgende Format haben: {1} DocType: About Us Settings,Org History Heading,Überschrift zur Unternehmensgeschichte -apps/frappe/frappe/core/doctype/user/user.py +490,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Es tut uns leid. Sie haben die maximale Benutzeranzahl für Ihr Abonnement erreicht. Sie können entweder einen vorhandenen Benutzer zu deaktivieren oder einen höheren Abonnement kaufen. +apps/frappe/frappe/core/doctype/user/user.py +484,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Es tut uns leid. Sie haben die maximale Benutzeranzahl für Ihr Abonnement erreicht. Sie können entweder einen vorhandenen Benutzer zu deaktivieren oder einen höheren Abonnement kaufen. DocType: Print Settings,Allow Print for Cancelled,Drucken im Zustand Abgebrochen erlauben DocType: Communication,Integrations can use this field to set email delivery status,"Eingendene Anwendungen können dieses Feld verwenden, um den Versandstatus von E-Mails anzugeben" DocType: Web Form,Web Page Link Text,Webseiten-Verknüpfungstext @@ -2849,13 +2916,12 @@ DocType: GSuite Settings,Allow GSuite access,GSuite-Zugang erlauben DocType: DocType,DESC,DESC DocType: DocType,Naming,Bezeichnung DocType: Event,Every Year,Jährlich -apps/frappe/frappe/core/doctype/data_import/data_import.js +198,Select All,Alles auswählen +apps/frappe/frappe/core/doctype/data_import/data_import.js +201,Select All,Alles auswählen apps/frappe/frappe/config/setup.py +247,Custom Translations,Benutzerdefinierte Übersetzungen apps/frappe/frappe/public/js/frappe/socketio_client.js +46,Progress,Fortschritt apps/frappe/frappe/public/js/frappe/form/workflow.js +34, by Role ,durch Rolle apps/frappe/frappe/public/js/frappe/form/save.js +157,Missing Fields,fehlende Felder -apps/frappe/frappe/email/smtp.py +188,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 unter Setup> E-Mail> E-Mail-Konto -apps/frappe/frappe/core/doctype/doctype/doctype.py +206,Invalid fieldname '{0}' in autoname,Ungültige Feldname '{0}' in auton +apps/frappe/frappe/core/doctype/doctype/doctype.py +222,Invalid fieldname '{0}' in autoname,Ungültige Feldname '{0}' in auton apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Suche in einem Dokumenttyp apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +261,Allow field to remain editable even after submission,"Auch nach dem Übertragen zulassen, dass das Feld bearbeitbar bleibt" DocType: Custom DocPerm,Role and Level,Rolle und Ebene @@ -2864,14 +2930,14 @@ apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Benutzerdefinierte Beri DocType: Website Script,Website Script,Webseiten-Skript DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Wenn Sie kein eigenes Google Apps Script Webapp verwenden, können Sie den Standard https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec verwenden" apps/frappe/frappe/config/setup.py +200,Customized HTML Templates for printing transactions.,Benutzerdefinierte HTML-Vorlagen für Drucktransaktionen -apps/frappe/frappe/public/js/frappe/form/print.js +277,Orientation,Orientierung +apps/frappe/frappe/public/js/frappe/form/print.js +308,Orientation,Orientierung DocType: Workflow,Is Active,Ist aktiv(iert) -apps/frappe/frappe/desk/form/utils.py +111,No further records,Keine weiteren Datensätze +apps/frappe/frappe/desk/form/utils.py +114,No further records,Keine weiteren Datensätze DocType: DocField,Long Text,Langer Text DocType: Workflow State,Primary,Primär -apps/frappe/frappe/core/doctype/data_import/importer.py +77,Please do not change the rows above {0},Bitte nicht die Zeilen oben ändern {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +76,Please do not change the rows above {0},Bitte nicht die Zeilen oben ändern {0} DocType: Web Form,Go to this URL after completing the form (only for Guest users),Gehen Sie nach Abschluss des Formulars auf diese URL (nur für Gastbenutzer) -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +106,(Ctrl + G),(Strg + G) +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +107,(Ctrl + G),(Strg + G) DocType: Contact,More Information,Mehr Informationen DocType: Data Migration Mapping,Field Maps,Feldkarten DocType: Desktop Icon,Desktop Icon,Desktopsymbol @@ -2892,13 +2958,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +89,Send Read Receipt DocType: Stripe Settings,Stripe Settings,Stripe-Einstellungen DocType: Data Migration Mapping,Data Migration Mapping,Datenmigrationszuordnung apps/frappe/frappe/www/login.py +89,Invalid Login Token,Invalid Login Token -apps/frappe/frappe/public/js/frappe/chat.js +215,Discard,Verwerfen +apps/frappe/frappe/public/js/frappe/chat.js +214,Discard,Verwerfen apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +49,1 hour ago,vor 1 Stunde DocType: Website Settings,Home Page,Startseite DocType: Error Snapshot,Parent Error Snapshot,Momentaufnahme des übergeordneten Fehlers -DocType: Kanban Board,Filters,Filter +DocType: Prepared Report,Filters,Filter DocType: Workflow State,share-alt,teilen-alt -apps/frappe/frappe/utils/background_jobs.py +206,Queue should be one of {0},Warteschlange sollte eine von {0} +apps/frappe/frappe/utils/background_jobs.py +217,Queue should be one of {0},Warteschlange sollte eine von {0} DocType: Address Template,"

Default Template

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

{{ address_line1 }}<br>
@@ -2928,12 +2994,12 @@ apps/frappe/frappe/templates/includes/navbar/navbar_login.html +23,Switch To Des
 apps/frappe/frappe/config/core.py +27,Script or Query reports,Script oder Abfrage-Berichte
 DocType: Workflow Document State,Workflow Document State,Workflow-Dokumentenstatus
 apps/frappe/frappe/public/js/frappe/request.js +146,File too big,Datei zu groß
-apps/frappe/frappe/core/doctype/user/user.py +498,Email Account added multiple times,E-Mail-Konto wurde mehrmals hinzugefügt
+apps/frappe/frappe/core/doctype/user/user.py +492,Email Account added multiple times,E-Mail-Konto wurde mehrmals hinzugefügt
 DocType: Payment Gateway,Payment Gateway,Zahlungs-Gateways
 DocType: Portal Settings,Hide Standard Menu,Standardmenü ausblenden
 apps/frappe/frappe/config/setup.py +163,Add / Manage Email Domains.,Hinzufügen / Verwalten von Email Domänen.
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +71,Cannot cancel before submitting. See Transition {0},Stornierung vor Übertragen nicht möglich. Vorgang {0} beachten
-apps/frappe/frappe/www/printview.py +212,Print Format {0} is disabled,Druckformat {0} ist deaktiviert
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +72,Cannot cancel before submitting. See Transition {0},Stornierung vor Übertragen nicht möglich. Vorgang {0} beachten
+apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Druckformat {0} ist deaktiviert
 ,Address and Contacts,Adresse und Kontaktinformationen
 DocType: Notification,Send days before or after the reference date,Tage vor oder nach dem Stichtag senden
 DocType: User,Allow user to login only after this hour (0-24),"Benutzer erlauben, sich erst nach dieser Stunde anzumelden (0-24)"
@@ -2943,7 +3009,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +191,Click here to ver
 apps/frappe/frappe/utils/password_strength.py +202,Predictable substitutions like '@' instead of 'a' don't help very much.,Vorhersehbare Substitutionen wie '@' anstelle von 'a' helfen nicht sehr viel.
 apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Von mir zugewiesen
 apps/frappe/frappe/utils/data.py +528,Zero,Null
-apps/frappe/frappe/core/doctype/doctype/doctype.py +105,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Nicht im Entwicklungsmodus! In site_config.json erstellen oder ""Benutzerdefiniertes"" DocType erstellen."
+apps/frappe/frappe/core/doctype/doctype/doctype.py +106,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Nicht im Entwicklungsmodus! In site_config.json erstellen oder ""Benutzerdefiniertes"" DocType erstellen."
 DocType: Workflow State,globe,Globus
 DocType: System Settings,dd.mm.yyyy,TT.MM.JJJJ
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +253,Hide field in Standard Print Format,Feld im Standard-Druckformat ausblenden
@@ -2956,19 +3022,21 @@ DocType: DocType,Allow Import (via Data Import Tool),Import erlauben (mit Dateni
 apps/frappe/frappe/templates/print_formats/standard_macros.html +39,Sr,Sr
 DocType: DocField,Float,Gleitkommazahl
 DocType: Print Settings,Page Settings,Seiteneinstellungen
+apps/frappe/frappe/public/js/frappe/form/quick_entry.js +137,Saving...,Speichern ...
 DocType: Auto Repeat,Submit on creation,Buchen beim Erstellen
-apps/frappe/frappe/www/update-password.html +79,Invalid Password,Ungültiges Passwort
+apps/frappe/frappe/www/update-password.html +71,Invalid Password,Ungültiges Passwort
 DocType: Contact,Purchase Master Manager,Einkaufsstammdaten-Manager
 DocType: Module Def,Module Name,Modulname
 DocType: DocType,DocType is a Table / Form in the application.,DocType ist eine Tabelle oder ein Formular in der Anwendung.
 DocType: Social Login Key,Authorize URL,URL autorisieren
 DocType: Email Account,GMail,GMail
 DocType: Address,Party GSTIN,Party GSTIN
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1070,{0} Report,{0} Bericht(e)
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Bericht(e)
 DocType: SMS Settings,Use POST,POST verwenden
 DocType: Communication,SMS,SMS
+apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +14,Fetch Images,Bilder holen
 DocType: DocType,Web View,Webansicht
-apps/frappe/frappe/public/js/frappe/form/print.js +195,Warning: This Print Format is in old style and cannot be generated via the API.,WARNUNG: Dieses Druckformat ist im alten Stil und kann nicht über die API generiert werden.
+apps/frappe/frappe/public/js/frappe/form/print.js +226,Warning: This Print Format is in old style and cannot be generated via the API.,WARNUNG: Dieses Druckformat ist im alten Stil und kann nicht über die API generiert werden.
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +798,Totals,Summen
 DocType: DocField,Print Width,Druckbreite
 ,Setup Wizard,Setup-Assistent
@@ -2977,6 +3045,7 @@ DocType: Chat Message,Visitor,Besucher
 DocType: User,Allow user to login only before this hour (0-24),Benutzer darf sich nur vor dieser Stunde anmelden (0-24)
 DocType: Social Login Key,Access Token URL,Zugriffstoken-URL
 apps/frappe/frappe/core/doctype/file/file.py +142,Folder is mandatory,Ordner ist zwingend erforderlich
+apps/frappe/frappe/desk/doctype/todo/todo.py +20,{0} assigned {1}: {2},{0} zugewiesen {1}: {2}
 apps/frappe/frappe/www/contact.py +57,New Message from Website Contact Page,Neue Nachricht von Webseite Kontaktseite
 DocType: Notification,Reference Date,Referenzdatum
 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +27,Please enter valid mobile nos,Bitte gültige Mobilnummern eingeben
@@ -3003,21 +3072,22 @@ DocType: DocField,Small Text,Kleiner Text
 DocType: Workflow,Allow approval for creator of the document,Genehmigung für den Ersteller des Dokuments zulassen
 DocType: Webhook,on_cancel,on_cancel
 DocType: Social Login Key,API Endpoint Args,API-Endpunktargumente
-apps/frappe/frappe/core/doctype/user/user.py +918,Administrator accessed {0} on {1} via IP Address {2}.,Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}.
+apps/frappe/frappe/core/doctype/user/user.py +912,Administrator accessed {0} on {1} via IP Address {2}.,Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +10,Equals,ist gleich
-apps/frappe/frappe/core/doctype/doctype/doctype.py +500,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link""-Feldtyp aus ""Optionen"" muss auf ein anderes Verknüpfungsfeld mit Optionen wie ""DocType"" zeigen"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +543,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link""-Feldtyp aus ""Optionen"" muss auf ein anderes Verknüpfungsfeld mit Optionen wie ""DocType"" zeigen"
 DocType: About Us Settings,Team Members Heading,Überschrift zu den Teammitgliedern
 apps/frappe/frappe/utils/csvutils.py +37,Invalid CSV Format,Ungültige CSV-Format
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Anzahl der Backups einstellen
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,Please correct the,Bitte korrigieren Sie die
 DocType: DocField,Do not allow user to change after set the first time,nach dem ersten Setzen dem Benutzer nicht erlauben eine Änderung vorzunehmen
 apps/frappe/frappe/public/js/frappe/upload.js +275,Private or Public?,Privat oder öffentlich?
-apps/frappe/frappe/utils/data.py +633,1 year ago,vor 1 Jahr
+apps/frappe/frappe/utils/data.py +635,1 year ago,vor 1 Jahr
 DocType: Contact,Contact,Kontakt
 DocType: User,Third Party Authentication,Drittpartei-Authentifizierung
 DocType: Website Settings,Banner is above the Top Menu Bar.,Banner über der oberen Menüleiste.
-DocType: Razorpay Settings,API Secret,API Geheimnis
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +484,Export Report: ,Export-Report:
+DocType: User,API Secret,API Geheimnis
+apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +29,{0} Calendar,{0} Kalender
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +584,Export Report: ,Export-Report:
 DocType: Data Migration Run,Push Update,Push-Aktualisierung
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +10,in the Auto Repeat document,im Auto-Repeat-Dokument
 DocType: Email Account,Port,Anschluss
@@ -3028,7 +3098,7 @@ DocType: Website Slideshow,Slideshow like display for the website,Diaschauähnli
 apps/frappe/frappe/config/setup.py +168,Setup Notifications based on various criteria.,Setup Benachrichtigungen basierend auf verschiedenen Kriterien.
 DocType: Communication,Updated,Aktualisiert
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,Select Module
-apps/frappe/frappe/public/js/frappe/chat.js +1592,Search or Create a New Chat,Suchen oder erstellen Sie einen neuen Chat
+apps/frappe/frappe/public/js/frappe/chat.js +1591,Search or Create a New Chat,Suchen oder erstellen Sie einen neuen Chat
 apps/frappe/frappe/sessions.py +29,Cache Cleared,Cache gelöscht
 DocType: Email Account,UIDVALIDITY,UIDVALIDITY
 apps/frappe/frappe/public/js/frappe/views/communication.js +15,New Email,Neue E-Mail
@@ -3044,7 +3114,7 @@ DocType: Print Settings,PDF Settings,PDF-Einstellungen
 DocType: Kanban Board Column,Column Name,Spaltenname
 DocType: Language,Based On,Basiert auf
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Zum Standard machen
-apps/frappe/frappe/core/doctype/doctype/doctype.py +542,Fieldtype {0} for {1} cannot be indexed,Feldtyp {0} für {1} kann nicht indiziert werden
+apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Fieldtype {0} for {1} cannot be indexed,Feldtyp {0} für {1} kann nicht indiziert werden
 DocType: Communication,Email Account,E-Mail-Konto
 DocType: Workflow State,Download,Herunterladen
 DocType: Blog Post,Blog Intro,Blog-Einleitung
@@ -3058,7 +3128,7 @@ DocType: Web Page,Insert Code,Code einfügen
 DocType: Data Migration Run,Current Mapping Type,Aktueller Kartentyp
 DocType: ToDo,Low,Niedrig
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Sie können dynamische Eigenschaften aus dem Dokument mit Hilfe von Jinja Templating hinzufügen.
-apps/frappe/frappe/commands/site.py +460,Invalid limit {0},Ungültige Grenze {0}
+apps/frappe/frappe/commands/site.py +463,Invalid limit {0},Ungültige Grenze {0}
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Einen Dokumenttyp auflisten
 DocType: Event,Ref Type,Referenz-Typ
 apps/frappe/frappe/core/doctype/data_import/exporter.py +65,"If you are uploading new records, leave the ""name"" (ID) column blank.","Wenn neue Datensätze hochgeladen werden, bitte die Spalte ""Bezeichnung"" (ID) leer lassen."
@@ -3080,21 +3150,21 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N
 DocType: Print Settings,Send Print as PDF,Ausdruck als PDF senden
 DocType: Web Form,Amount,Betrag
 DocType: Workflow Transition,Allowed,Erlaubt
-apps/frappe/frappe/core/doctype/doctype/doctype.py +549,There can be only one Fold in a form,Es darf nur einen Falz in einem Formular geben
+apps/frappe/frappe/core/doctype/doctype/doctype.py +592,There can be only one Fold in a form,Es darf nur einen Falz in einem Formular geben
 apps/frappe/frappe/core/doctype/file/file.py +222,Unable to write file format for {0},Das Dateiformat kann nicht für {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +20,Restore to default settings?,Wiederherstellen der Standardeinstellungen?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ungültige Startseite
 apps/frappe/frappe/templates/includes/login/login.js +222,Invalid Login. Try again.,Ungültiger Login. Versuch es noch einmal.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +467,Options required for Link or Table type field {0} in row {1},Optionen für Link- oder Tabellenart-Feld {0} in Zeile {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Options required for Link or Table type field {0} in row {1},Optionen für Link- oder Tabellenart-Feld {0} in Zeile {1}
 DocType: Auto Email Report,Send only if there is any data,"Nur dann senden, wenn Daten vorhanden sind"
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +168,Reset Filters,Filter zurücksetzen
-apps/frappe/frappe/core/doctype/doctype/doctype.py +749,{0}: Permission at level 0 must be set before higher levels are set,{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +169,Reset Filters,Filter zurücksetzen
+apps/frappe/frappe/core/doctype/doctype/doctype.py +792,{0}: Permission at level 0 must be set before higher levels are set,{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Zuordnung geschlossen von {0}
 DocType: Integration Request,Remote,entfernt
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Berechnen
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Bitte zuerst DocType auswählen
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +199,Confirm Your Email,Email-Adresse bestätigen
-apps/frappe/frappe/www/login.html +40,Or login with,Oder melden Sie sich an mit
+apps/frappe/frappe/www/login.html +41,Or login with,Oder melden Sie sich an mit
 DocType: Error Snapshot,Locals,Einheimische
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommuniziert über {0} um {1}: {2}
 apps/frappe/frappe/templates/emails/mentioned_in_comment.html +2,{0} mentioned you in a comment in {1},{0} erwähnte Sie in einem Kommentar in {1}
@@ -3104,23 +3174,24 @@ DocType: Integration Request,Integration Type,Integration Typ
 DocType: Newsletter,Send Attachements,Anhänge senden
 DocType: Transaction Log,Transaction Log,Transaktionsprotokoll
 DocType: Contact Us Settings,City,Ort
-apps/frappe/frappe/public/js/frappe/ui/comment.js +225,Ctrl+Enter to submit,Strg + Enter zum Senden
+apps/frappe/frappe/public/js/frappe/ui/comment.js +229,Ctrl+Enter to submit,Strg + Enter zum Senden
 DocType: DocField,Perm Level,Berechtigungsebene
+apps/frappe/frappe/www/confirm_workflow_action.html +12,View document,Dokument anzeigen
 apps/frappe/frappe/desk/doctype/event/event.py +66,Events In Today's Calendar,Ereignisse im heutigen Kalender
 DocType: Web Page,Web Page,Webseite
 DocType: Workflow Document State,Next Action Email Template,Nächste Aktion E-Mail-Vorlage
 DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/doctype/doctype/doctype.py +492,'In Global Search' not allowed for type {0} in row {1},'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +535,'In Global Search' not allowed for type {0} in row {1},'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1}
 apps/frappe/frappe/public/js/frappe/views/treeview.js +342,View List,Liste anzeigen
-apps/frappe/frappe/public/js/frappe/form/controls/date.js +130,Date must be in format: {0},Datum muss in folgendem Format vorliegen: {0}
 DocType: Workflow,Don't Override Status,Überschreiben Sie nicht-Status
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Bitte geben Sie eine Bewertung.
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback-Anfrage
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Suchbegriff
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +415,The First User: You,Der erste Benutzer: Sie selbst!
 DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
+DocType: Prepared Report,Report Start Time,Startzeit melden
 apps/frappe/frappe/config/setup.py +112,Export Data,Daten exportieren
-apps/frappe/frappe/core/doctype/data_import/data_import.js +160,Select Columns,Spalten auswählen
+apps/frappe/frappe/core/doctype/data_import/data_import.js +169,Select Columns,Spalten auswählen
 DocType: Translation,Source Text,Quellentext
 apps/frappe/frappe/www/login.py +80,Missing parameters for login,Fehlende Parameter für Login
 DocType: Workflow State,folder-open,geöffneter Ordner
@@ -3133,7 +3204,7 @@ DocType: Property Setter,Set Value,Wert festlegen
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +249,Hide field in form,Feld in Formular ausblenden
 DocType: Webhook,Webhook Data,Webhook Daten
 apps/frappe/frappe/public/js/frappe/views/treeview.js +269,Creating {0},Erstellen von {0}
-apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +302,Illegal Access Token. Please try again,Illegal Access-Token. Bitte versuche es erneut
+apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +311,Illegal Access Token. Please try again,Illegal Access-Token. Bitte versuche es erneut
 apps/frappe/frappe/public/js/frappe/desk.js +92,"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/core/doctype/communication/communication.js +35,Resend,Erneut senden
 DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,"Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist"
@@ -3147,8 +3218,8 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +384,Select Your Regio
 DocType: Custom DocPerm,Level,Ebene
 DocType: Custom DocPerm,Report,Bericht
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Betrag muss größer als 0 sein.
-apps/frappe/frappe/desk/reportview.py +112,{0} is saved,{0} ist gespeichert
-apps/frappe/frappe/core/doctype/user/user.py +346,User {0} cannot be renamed,Benutzer {0} kann nicht umbenannt werden
+apps/frappe/frappe/desk/reportview.py +113,{0} is saved,{0} ist gespeichert
+apps/frappe/frappe/core/doctype/user/user.py +340,User {0} cannot be renamed,Benutzer {0} kann nicht umbenannt werden
 apps/frappe/frappe/model/db_schema.py +114,Fieldname is limited to 64 characters ({0}),Feldname ist auf 64 Zeichen ({0})
 apps/frappe/frappe/config/desk.py +59,Email Group List,E-Mail-Gruppenliste
 DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Eine Icon-Datei mit ICO-Erweiterung. Sie sollte 16 x 16 pixel groß sein. Wurde unter Verwendung eines Favicon-Generators erstellt. [favicon-generator.org]
@@ -3161,23 +3232,22 @@ DocType: Website Theme,Background,Hintergrund
 DocType: Report,Ref DocType,Ref-DocType
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +32,Please enter Client ID before social login is enabled,"Bitte geben Sie die Kunden-ID ein, bevor die Anmeldung mit sozialen Netzwerken aktiviert ist"
 apps/frappe/frappe/www/feedback.py +42,Please add a rating,Bitte fügen Sie eine Bewertung hinzu
-apps/frappe/frappe/core/doctype/doctype/doctype.py +761,{0}: Cannot set Amend without Cancel,"{0}: ""Geändert"" kann nicht eingestellt werden ohne ""Abbruch"""
+apps/frappe/frappe/core/doctype/doctype/doctype.py +804,{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 +25,Full Page,Ganze Seite
 DocType: DocType,Is Child Table,Ist Untertabelle
-apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} Jahr (e) her
-apps/frappe/frappe/utils/csvutils.py +130,{0} must be one of {1},{0} muss aus {1} sein
+apps/frappe/frappe/utils/csvutils.py +132,{0} must be one of {1},{0} muss aus {1} sein
 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +35,{0} is currently viewing this document,{0} betrachtet derzeit dieses Dokument
 apps/frappe/frappe/config/core.py +52,Background Email Queue,E-Mail-Warteschlange im Hintergrund
 apps/frappe/frappe/core/doctype/user/user.py +246,Password Reset,Passwort zurücksetzen
 DocType: Communication,Opened,Geöffnet
 DocType: Workflow State,chevron-left,Winkel nach links
 DocType: Communication,Sending,Versand
-apps/frappe/frappe/auth.py +258,Not allowed from this IP Address,Zugriff nicht von dieser IP- Adresse erlaubt
+apps/frappe/frappe/auth.py +272,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.
 apps/frappe/frappe/config/setup.py +277,Install Applications.,Anwendungen installieren.
 DocType: Contact,Last Name,Familienname
 DocType: Event,Private,Privat
-apps/frappe/frappe/email/doctype/notification/notification.js +97,No alerts for today,Keine Warnungen für heute
+apps/frappe/frappe/email/doctype/notification/notification.js +107,No alerts for today,Keine Warnungen für heute
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Ausdrucke als E-Mail-Anhang im PDF-Format senden (empfohlen)
 DocType: Web Page,Left,Links
 DocType: Event,All Day,Ganzer Tag
@@ -3188,10 +3258,9 @@ DocType: DocType,"Image Field (Must of type ""Attach Image"")",Bildfeld (muss vo
 apps/frappe/frappe/utils/bot.py +43,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/contacts/doctype/address/address.py +193,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standard-Adressvorlage gefunden. Bitte erstellen Sie unter Setup> Drucken und Branding> Adressvorlage eine neue Vorlage.
 DocType: Contact,Gender,Geschlecht
-apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Pflichtangaben fehlen:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +539,Field '{0}' cannot be set as Unique as it has non-unique values,"Feld '{0}' kann nicht als ""eindeutig"" eingestellt werden, da es nicht-eindeutige Werte hat"
+apps/frappe/frappe/website/doctype/web_form/web_form.py +346,Mandatory Information missing:,Pflichtangaben fehlen:
+apps/frappe/frappe/core/doctype/doctype/doctype.py +582,Field '{0}' cannot be set as Unique as it has non-unique values,"Feld '{0}' kann nicht als ""eindeutig"" eingestellt werden, da es nicht-eindeutige Werte hat"
 apps/frappe/frappe/integrations/doctype/webhook/webhook.py +37,Check Request URL,Check Request URL
 apps/frappe/frappe/client.py +169,Only 200 inserts allowed in one request,Nur 200 Einsätze in einem Anfrage erlaubt
 DocType: Footer Item,URL,URL
@@ -3207,12 +3276,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Baum
 apps/frappe/frappe/public/js/frappe/views/treeview.js +319,You are not allowed to print this report,Sie sind nicht berechtigt diesen Bericht zu drucken
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Benutzerberechtigungen
 DocType: Workflow State,warning-sign,Warnschild
+DocType: Prepared Report,Prepared Report,Vorbereiteter Bericht
 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
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Text in Dokumententyp
 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Tests ausführen
-apps/frappe/frappe/handler.py +94,Logged Out,Abgemeldet
+apps/frappe/frappe/handler.py +95,Logged Out,Abgemeldet
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Mehr...
 DocType: System Settings,User can login using Email id or Mobile number,Benutzer können sich entweder mit Email-Adresse oder Handynummer anmelden
 DocType: Bulk Update,Update Value,Wert aktualisieren
@@ -3220,12 +3290,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},a
 apps/frappe/frappe/model/rename_doc.py +26,Please select a new name to rename,Bitte wählen Sie einen neuen Namen umbenennen
 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +212,Invalid column,Ungültige Spalte
 DocType: Data Migration Connector,Data Migration,Datenmigration
+DocType: User,API Key cannot be  regenerated,API Key kann nicht regeneriert werden
 apps/frappe/frappe/public/js/frappe/request.js +167,Something went wrong,Etwas ist schief gelaufen
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,Nur {0} Einträge angezeigt. Bitte filtern Sie für genauere Ergebnisse.
 DocType: System Settings,Number Format,Zahlenformat
 DocType: Auto Repeat,Frequency,Frequenz
 DocType: Custom Field,Insert After,Einfügen nach
-DocType: Report,Report Name,Berichtsname
+DocType: Prepared Report,Report Name,Berichtsname
 DocType: Desktop Icon,Reverse Icon Color,Reverse-Symbol Farbe
 DocType: Notification,Save,Speichern
 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat_schedule.html +6,Next Scheduled Date,Nächstes geplantes Datum
@@ -3238,13 +3309,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Current
 DocType: DocField,Default,Standard
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +146,{0} added,{0} hinzugefügt
 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Suche nach '{0}'
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1038,Please save the report first,Bitte speichern Sie den Bericht zuerst
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Bitte speichern Sie den Bericht zuerst
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} Empfänger hinzugefügt
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +15,Not In,Nicht in
 DocType: Workflow State,star,Stern
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +237,Hub,Hub
-apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +279,values separated by commas,Werte durch Komma getrennt
-apps/frappe/frappe/core/doctype/doctype/doctype.py +484,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/public/js/frappe/ui/filters/filter.js +281,values separated by commas,Werte durch Komma getrennt
+apps/frappe/frappe/core/doctype/doctype/doctype.py +527,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/www/feedback.html +68,Please share your feedback for {0},Bitte teilen Sie Ihr Feedback für {0}
 apps/frappe/frappe/config/website.py +13,Content web page.,Inhalt der Webseite.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Neue Rolle hinzufügen
@@ -3257,15 +3328,15 @@ DocType: Webhook,on_trash,on_trash
 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html +2,Records for following doctypes will be filtered,Datensätze für folgende Doctypes werden gefiltert
 DocType: Blog Settings,Blog Introduction,Blog-Einleitung
 DocType: Address,Office,Büro
-apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +201,This Kanban Board will be private,Dieser Kanbantafel wird privat
+apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +219,This Kanban Board will be private,Dieser Kanbantafel wird privat
 apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standardberichte
 DocType: User,Email Settings,E-Mail-Einstellungen
-apps/frappe/frappe/public/js/frappe/desk.js +394,Please Enter Your Password to Continue,"Bitte geben Sie Ihr Passwort ein, um fortzufahren"
+apps/frappe/frappe/public/js/frappe/desk.js +398,Please Enter Your Password to Continue,"Bitte geben Sie Ihr Passwort ein, um fortzufahren"
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +116,Not a valid LDAP user,Keine gültige LDAP-Benutzer
-apps/frappe/frappe/workflow/doctype/workflow/workflow.py +58,{0} not a valid State,{0} kein gültiger Zustand
+apps/frappe/frappe/workflow/doctype/workflow/workflow.py +59,{0} not a valid State,{0} kein gültiger Zustand
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +89,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
-apps/frappe/frappe/core/doctype/doctype/doctype.py +572,Search field {0} is not valid,Suchfeld {0} ist nicht gültig
+apps/frappe/frappe/core/doctype/doctype/doctype.py +615,Search field {0} is not valid,Suchfeld {0} ist nicht gültig
 DocType: Workflow State,ok-circle,Genehmigungs-Kreislauf
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Sie können Informationen finden, indem Sie zum Beispiel ""suche Orange in Kunden"" eingeben."
 apps/frappe/frappe/core/doctype/user/user.py +190,Sorry! User should have complete access to their own record.,Verzeihung! Benutzer sollten uneingeschränkten Zugang zu ihren eigenen Rekord zu haben.
@@ -3281,21 +3352,21 @@ DocType: DocField,Unique,Einzigartig
 apps/frappe/frappe/core/doctype/data_import/data_import_list.js +8,Partial Success,Teilerfolg
 DocType: Email Account,Service,Service
 DocType: File,File Name,Dateiname
-apps/frappe/frappe/core/doctype/data_import/importer.py +499,Did not find {0} for {0} ({1}),{0} wurde nicht für {0} ({1}) gefunden
+apps/frappe/frappe/core/doctype/data_import/importer.py +498,Did not find {0} for {0} ({1}),{0} wurde nicht für {0} ({1}) gefunden
 apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Hoppla, dass dürften Sie garnicht wissen"
 apps/frappe/frappe/public/js/frappe/ui/slides.js +324,Next,Weiter
-apps/frappe/frappe/handler.py +94,You have been successfully logged out,Sie haben sich erfolgreich abgemeldet
+apps/frappe/frappe/handler.py +95,You have been successfully logged out,Sie haben sich erfolgreich abgemeldet
 DocType: Calendar View,Calendar View,Kalenderansicht
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format,Format bearbeiten
-apps/frappe/frappe/core/doctype/user/user.py +268,Complete Registration,Anmeldung abschliessen
+apps/frappe/frappe/core/doctype/user/user.py +265,Complete Registration,Anmeldung abschliessen
 DocType: GCalendar Settings,Enable,ermöglichen
-DocType: Google Maps,Home Address,Privatadresse
+DocType: Google Maps Settings,Home Address,Privatadresse
 apps/frappe/frappe/public/js/frappe/form/toolbar.js +197,New {0} (Ctrl+B),Neue(s) {0} (Strg + B)
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,"Farbe der Kopfleiste und Textfarbe sind gleich. Um lesbar zu sein, sollte ein guter Kontrast eingestellt sein."
 apps/frappe/frappe/core/doctype/data_import/exporter.py +69,You can only upload upto 5000 records in one go. (may be less in some cases),Sie können nur bis zu 5000 Datensätze auf einmal hochladen (in einigen Fällen weniger).
 apps/frappe/frappe/model/document.py +185,Insufficient Permission for {0},Unzureichende Berechtigung für {0}
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +885,Report was not saved (there were errors),Bericht wurde nicht gespeichert (es gab Fehler)
-apps/frappe/frappe/core/doctype/data_import/importer.py +296,Cannot change header content,Header-Inhalt kann nicht geändert werden
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +775,Report was not saved (there were errors),Bericht wurde nicht gespeichert (es gab Fehler)
+apps/frappe/frappe/core/doctype/data_import/importer.py +295,Cannot change header content,Header-Inhalt kann nicht geändert werden
 DocType: Print Settings,Print Style,Druckstil
 apps/frappe/frappe/public/js/frappe/form/linked_with.js +52,Not Linked to any record,Nicht mit jedem Datensatz verknüpft
 DocType: Custom DocPerm,Import,Import
@@ -3324,9 +3395,9 @@ apps/frappe/frappe/templates/includes/login/login.js +24,Both login and password
 apps/frappe/frappe/model/document.py +639,Please refresh to get the latest document.,"Bitte aktualisieren, um das neueste Dokument zu erhalten."
 DocType: User,Security Settings,Sicherheitseinstellungen
 DocType: Website Settings,Operators,Betreiber
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +171,Add Column,Spalte hinzufügen
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +867,Add Column,Spalte hinzufügen
 ,Desktop,Arbeitsoberfläche
-apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1027,Export Report: {0},Exportbericht: {0}
+apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +738,Export Report: {0},Exportbericht: {0}
 DocType: Auto Email Report,Filter Meta,Filter Meta
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Text, der für die Verknüpfung zur Webseite angezeigt wird, wenn dieses Formular eine Webseite hat. Verknüpfungs-Pfad wird basierend auf  ""page_name"" und ""parent_website_route"" automatisch generiert"
 DocType: Feedback Request,Feedback Trigger,Feedback-Trigger
@@ -3353,6 +3424,6 @@ DocType: Bulk Update,Max 500 records at a time,Maximal 500 Datensätze gleichzei
 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Wenn Ihre Daten in HTML sind, fügen Sie bitte den genauen HTML-Code mit den Tags ein."
 apps/frappe/frappe/utils/csvutils.py +37,Unable to open attached file. Did you export it as CSV?,Anhang kann nicht geöffnet werden. Wurde die Datei als *.csv exportiert?
 DocType: DocField,Ignore User Permissions,Ignorieren von Benutzerberechtigungen
-apps/frappe/frappe/core/doctype/user/user.py +805,Please ask your administrator to verify your sign-up,Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen
+apps/frappe/frappe/core/doctype/user/user.py +799,Please ask your administrator to verify your sign-up,Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen
 DocType: Domain Settings,Active Domains,Aktive Domains
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,Zeige Log
diff --git a/frappe/translations/el.csv b/frappe/translations/el.csv
index 779b76b124..9fa16fe1b1 100644
--- a/frappe/translations/el.csv
+++ b/frappe/translations/el.csv
@@ -1,6 +1,6 @@
 apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,Επιλέξτε ένα ποσό πεδίο.
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +284,Press Esc to close,Πατήστε Esc για να κλείσετε
-apps/frappe/frappe/desk/form/assign_to.py +158,"A new task, {0}, has been assigned to you by {1}. {2}","Μια νέα εργασία, {0}, έχει ανατεθεί σε εσάς από {1}. {2}"
+apps/frappe/frappe/desk/form/assign_to.py +161,"A new task, {0}, has been assigned to you by {1}. {2}","Μια νέα εργασία, {0}, έχει ανατεθεί σε εσάς από {1}. {2}"
 DocType: Email Queue,Email Queue records.,αρχεία ηλεκτρονικού ταχυδρομείου ουρά.
 DocType: Address,Punjab,Πουντζάμπ
 apps/frappe/frappe/config/setup.py +126,Rename many items by uploading a .csv file.,Μετονομασία πολλών αντικειμένων με αποστολή στο διακομιστή ενός αρχείου csv . .
@@ -10,7 +10,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +33,Seems
 DocType: About Us Settings,Website,Δικτυακός τόπος
 apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Θα πρέπει να συνδεθείτε για να αποκτήσετε πρόσβαση σε αυτήν τη σελίδα
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Σημείωση: Πολλαπλές συνεδρίες θα επιτρέπεται στην περίπτωση της κινητής συσκευής
-apps/frappe/frappe/core/doctype/user/user.py +697,Enabled email inbox for user {users},Ενεργοποιήθηκε εισερχόμενα e-mail για το χρήστη {χρήστες}
+apps/frappe/frappe/core/doctype/user/user.py +691,Enabled email inbox for user {users},Ενεργοποιήθηκε εισερχόμενα e-mail για το χρήστη {χρήστες}
 apps/frappe/frappe/email/queue.py +252,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Δεν μπορώ να στείλω αυτό το μήνυμα. Έχετε περάσει το όριο αποστολής του {0} emails για αυτό το μήνα.
 apps/frappe/frappe/public/js/legacy/form.js +779,Permanently Submit {0}?,Μόνιμα Υποβολή {0} ;
 apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Λήψη αντιγράφων αρχείων
@@ -24,7 +24,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +89,{0} Tree,{0} Δέντ
 DocType: User,User Emails,Emails χρήστη
 DocType: User,Username,Όνομα χρήστη
 apps/frappe/frappe/public/js/frappe/views/file/file_view.js +90,Import Zip,Εισαγωγή Zip
-apps/frappe/frappe/model/base_document.py +554,Value too big,Η τιμή είναι υπερβολικά μεγάλη
+apps/frappe/frappe/model/base_document.py +563,Value too big,Η τιμή είναι υπερβολικά μεγάλη
 DocType: DocField,DocField,Πεδίο εγγράφου
 DocType: GSuite Settings,Run Script Test,Εκτέλεση δοκιμής δέσμης ενεργειών
 DocType: Data Import,Total Rows,Συνολικές σειρές
@@ -39,26 +39,25 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi
 DocType: Data Migration Run,Logs,Logs
 apps/frappe/frappe/templates/emails/recurring_document_failed.html +8,It is necessary to take this action today itself for the above mentioned recurring,Είναι απαραίτητο να αναλάβουμε αυτήν την ενέργεια σήμερα για την προαναφερθείσα επανάληψη
 DocType: Custom DocPerm,This role update User Permissions for a user,Αυτός ο ρόλος ενημερώνει τα δικαιώματα χρήστη για ένα χρήστη
-apps/frappe/frappe/public/js/frappe/model/model.js +539,Rename {0},Μετονομασία {0}
+apps/frappe/frappe/public/js/frappe/model/model.js +538,Rename {0},Μετονομασία {0}
 DocType: Workflow State,zoom-out,Zoom-out
 apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Δεν είναι δυνατό το άνοιγμα {0} όταν παράδειγμα είναι ανοιχτό
-apps/frappe/frappe/model/document.py +1083,Table {0} cannot be empty,Ο πίνακας {0} δεν μπορεί να είναι κενός
+apps/frappe/frappe/model/document.py +1084,Table {0} cannot be empty,Ο πίνακας {0} δεν μπορεί να είναι κενός
 DocType: SMS Parameter,Parameter,Παράμετρος
-apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +822,With Ledgers,με Καθολικά
-apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +81,Document has been modified!,Το έγγραφο έχει τροποποιηθεί!
+apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +823,With Ledgers,με Καθολικά
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +13,Images,εικόνες
 DocType: Activity Log,Reference Owner,αναφορά Ιδιοκτήτης
 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Εάν είναι ενεργοποιημένη, ο χρήστης μπορεί να συνδεθεί από οποιαδήποτε διεύθυνση IP χρησιμοποιώντας το στοιχείο Two Factor Auth, αυτό μπορεί επίσης να ρυθμιστεί για όλους τους χρήστες στις Ρυθμίσεις συστήματος"
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Μικρότερη μονάδα που κυκλοφορούν κλάσμα (κέρμα). Για παράδειγμα 1 σεντ για USD και θα πρέπει να εισαχθεί ως 0,01"
 DocType: Social Login Key,GitHub,Github
-apps/frappe/frappe/model/base_document.py +548,"{0}, Row {1}","{0}, Σειρά {1}"
+apps/frappe/frappe/model/base_document.py +557,"{0}, Row {1}","{0}, Σειρά {1}"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Παρακαλώ δώστε ένα Ονοματεπώνυμο.
-apps/frappe/frappe/model/document.py +1057,Beginning with,Ξεκινώντας με
+apps/frappe/frappe/model/document.py +1058,Beginning with,Ξεκινώντας με
 apps/frappe/frappe/core/doctype/data_import/exporter.py +53,Data Import Template,Πρότυπο εισαγωγής δεδομένων
 apps/frappe/frappe/public/js/frappe/model/model.js +33,Parent,Γονέας
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Αν είναι ενεργοποιημένη, η ισχύς του κωδικού θα επιβληθεί με βάση την τιμή του ελάχιστου αριθμού κωδικού πρόσβασης. Μια τιμή 2 είναι μέτρια ισχυρή και 4 είναι πολύ ισχυρή."
 DocType: About Us Settings,"""Team Members"" or ""Management""","""Μέλη ομάδας"" ή ""διαχείριση"""
-apps/frappe/frappe/core/doctype/doctype/doctype.py +504,Default for 'Check' type of field must be either '0' or '1',Η προεπιλογή για τον τύπο πεδίου 'ελέγχου' πρέπει να είναι είτε «0» είτε «1»
+apps/frappe/frappe/core/doctype/doctype/doctype.py +547,Default for 'Check' type of field must be either '0' or '1',Η προεπιλογή για τον τύπο πεδίου 'ελέγχου' πρέπει να είναι είτε «0» είτε «1»
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,Yesterday,Χθες
 DocType: Contact,Designation,Ονομασία
 DocType: Test Runner,Test Runner,Δοκιμή Runner
@@ -66,10 +65,11 @@ DocType: Auto Repeat,Monthly,Μηνιαίος
 DocType: Address,Uttarakhand,Uttarakhand
 DocType: Email Account,Enable Incoming,Ενεργοποίηση εισερχομένων
 apps/frappe/frappe/core/doctype/version/version_view.html +47,Danger,Κίνδυνος
-apps/frappe/frappe/www/login.html +20,Email Address,Διεύθυνση ηλεκτρονικού ταχυδρομείου
+apps/frappe/frappe/www/login.html +21,Email Address,Διεύθυνση ηλεκτρονικού ταχυδρομείου
 DocType: Workflow State,th-large,Th-large
 DocType: Communication,Unread Notification Sent,Μη αναγνωσμένα γνωστοποίησης που της απέστειλε
 apps/frappe/frappe/public/js/frappe/misc/tools.js +10,Export not allowed. You need {0} role to export.,Η εξαγωγή δεν επιτρέπεται. Χρειάζεται ο ρόλος {0} για την εξαγωγή.
+DocType: System Settings,In seconds,Σε δευτερόλεπτα
 apps/frappe/frappe/public/js/frappe/list/list_view.js +999,Cancel {0} documents?,Ακύρωση εγγράφων {0};
 DocType: DocType,Is Published Field,Δημοσιεύεται πεδίο
 DocType: GCalendar Settings,GCalendar Settings,Ρυθμίσεις GCalendar
@@ -77,17 +77,18 @@ DocType: Email Group,Email Group,email Ομάδα
 DocType: Note,Seen By,Θεάθηκε από
 apps/frappe/frappe/public/js/frappe/form/grid.js +69,Add Multiple,Προσθήκη πολλαπλών
 apps/frappe/frappe/core/doctype/user/user.py +87,Not a valid User Image.,Δεν είναι έγκυρη εικόνα χρήστη.
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Ρύθμιση> Χρήστης
 DocType: Success Action,First Success Message,Πρώτο μήνυμα επιτυχίας
 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +13,Not Like,Όχι σαν
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Set the display label for the field,Ρυθμίστε την ετικέτα που εμφανίζεται για το πεδίο
-apps/frappe/frappe/model/document.py +1074,Incorrect value: {0} must be {1} {2},Λανθασμένη τιμή: το {0} πρέπει να είναι {1} {2}
+apps/frappe/frappe/model/document.py +1075,Incorrect value: {0} must be {1} {2},Λανθασμένη τιμή: το {0} πρέπει να είναι {1} {2}
 apps/frappe/frappe/config/setup.py +237,"Change field properties (hide, readonly, permission etc.)","Αλλαγή ιδιοτήτων πεδίου ( απόκρυψη , μόνο για ανάγνωση , την άδεια κλπ. )"
 DocType: Workflow State,lock,Κλειδαριά
 apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Ρυθμίσεις για τη σελίδα επικοινωνίας.
-apps/frappe/frappe/core/doctype/user/user.py +923,Administrator Logged In,Διαχειριστής Logged In
+apps/frappe/frappe/core/doctype/user/user.py +917,Administrator Logged In,Διαχειριστής 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 +34,Add a tag ...,Προσθήκη ετικέτας ...
-apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +262,New {0}: #{1},Νέο {0}: # {1}
+apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +267,New {0}: #{1},Νέο {0}: # {1}
 DocType: Data Migration Run,Insert,Εισαγωγή
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Επιλέξτε {0}
 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +24,Please enter Base URL,Εισαγάγετε τη διεύθυνση URL βάσης
@@ -113,14 +114,14 @@ apps/frappe/frappe/model/db_schema.py +357,"{0} field cannot be set as unique in
 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Document Types,Τύποι εγγράφων
 DocType: Address,Jammu and Kashmir,Τζαμού και Κασμίρ
 DocType: Workflow,Workflow State Field,Πεδίο κατάστασης ροής εργασίας
-apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +56,Please sign-up or login to begin,Παρακαλούμε εγγραφείτε ή συνδεθείτε για να ξεκινήσετε
+apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +59,Please sign-up or login to begin,Παρακαλούμε εγγραφείτε ή συνδεθείτε για να ξεκινήσετε
 DocType: Blog Post,Guest,Επισκέπτης
 DocType: DocType,Title Field,Πεδίο τίτλου
 DocType: Error Log,Error Log,Αρχείο καταγραφής σφαλμάτων
 apps/frappe/frappe/utils/password_strength.py +108,"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 +3,"If you think this is unauthorized, please change the Administrator password.","Αν νομίζετε ότι αυτό είναι μη εξουσιοδοτημένη, παρακαλούμε να αλλάξετε τον κωδικό πρόσβασης διαχειριστή."
-apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} Είναι υποχρεωτικά
+apps/frappe/frappe/email/doctype/email_account/email_account.py +80,{0} is mandatory,{0} Είναι υποχρεωτικά
 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. concatenate:[fieldname1],[fieldname2],...[fieldnameX] - By fieldname concatenation (you can concatenate as many fields as you like. Series option also works)
","Επιλογές ονοματοθεσίας:
  1. πεδίο: [fieldname] - Ανά πεδία
  2. naming_series: - Με την Ονοματοδοσία Σειρά (πεδίο που ονομάζεται names_series πρέπει να είναι παρών
  3. Προτροπή - Προτροπή χρήστη για ένα όνομα
  4. [σειρά] - Σειρά με πρόθεμα (διαχωρισμένη με τελεία). για παράδειγμα PRE. #####
  5. Συνδυάστε: [fieldname1], [fieldname2], ... [fieldnameX] - Με συμβιβασμό με το όνομα πεδίου (μπορείτε να συγκολλήσετε όσα πεδία θέλετε όπως επίσης και η επιλογή Series)
" @@ -130,7 +131,6 @@ DocType: Chat Room,Owner,Ιδιοκτήτης DocType: Communication,Visit,Επίσκεψη DocType: LDAP Settings,LDAP Search String,LDAP Αναζήτηση String DocType: Translation,Translation,Μετάφραση -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Κ DocType: Custom Script,Client,Πελάτης apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +199,Select Column,Επιλέξτε Στήλη @@ -143,7 +143,7 @@ DocType: Data Import,Import Log,Αρχείο καταγραφής εισαγωγ apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Ενσωμάτωση slideshows εικόνας σε ιστοσελίδες. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,Αποστολή DocType: Workflow Action Master,Workflow Action Name,Όνομα ενέργειας ροής εργασιών -apps/frappe/frappe/core/doctype/doctype/doctype.py +323,DocType can not be merged,Οι τύποι εγγράφου δεν μπορούν να συγχωνευθούν +apps/frappe/frappe/core/doctype/doctype/doctype.py +342,DocType can not be merged,Οι τύποι εγγράφου δεν μπορούν να συγχωνευθούν DocType: Web Form Field,Fieldtype,Τύπος πεδίου apps/frappe/frappe/core/doctype/file/file.py +270,Not a zip file,Δεν είναι ένα αρχείο zip DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -166,10 +166,10 @@ DocType: Webhook,Doc Event,Εγγράφου Doc apps/frappe/frappe/public/js/frappe/misc/user.js +58,You,Εσείς DocType: Braintree Settings,Braintree Settings,Ρυθμίσεις Braintree DocType: Website Theme,lowercase,Πεζά -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +218,Please select Columns Based On,Επιλέξτε Στήλες με βάση apps/frappe/frappe/public/js/frappe/list/list_filter.js +22,Save Filter,Αποθήκευση φίλτρου DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +82,Cannot delete {0},Δεν είναι δυνατή η διαγραφή {0} +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +20,Not Ancestors Of,Δεν Πρόγονοι του DocType: Address,Jharkhand,Jharkhand apps/frappe/frappe/email/doctype/newsletter/newsletter.py +40,Newsletter has already been sent,Το ενημερωτικό δελτίο έχει ήδη αποσταλεί apps/frappe/frappe/twofactor.py +129,"Login session expired, refresh page to retry","Η περίοδος σύνδεσης έκλεισε, ανανεώστε τη σελίδα για να δοκιμάσετε ξανά" @@ -179,16 +179,19 @@ DocType: Email Unsubscribe,Email Unsubscribe,Email Διαγραφή DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Επιλέξτε μια εικόνα πλάτους 150px περ. Με ένα διαφανές φόντο για καλύτερα αποτελέσματα. apps/frappe/frappe/www/third_party_apps.html +3,Third Party Apps,Εφαρμογές τρίτου μέρους apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +426,The first user will become the System Manager (you can change this later).,Ο πρώτος χρήστης θα γίνει ο διαχειριστής του συστήματος ( μπορείτε να το αλλάξετε αυτό αργότερα ). +apps/frappe/frappe/contacts/doctype/address/address.py +194,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/integrations/doctype/webhook/webhook.py +29,DocType must be Submittable for the selected Doc Event,Το DocType πρέπει να είναι Υποβάλλεται για το επιλεγμένο συμβάν στο Doc ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,Circle-arrow-up DocType: Email Domain,Email Domain,τομέα email DocType: Workflow State,italic,Πλάγια γραφή -apps/frappe/frappe/core/doctype/doctype/doctype.py +763,{0}: Cannot set Import without Create,{0} : Δεν είναι δυνατή η ρύθμιση εισαγωγής χωρίς δημιουργία +apps/frappe/frappe/core/doctype/doctype/doctype.py +806,{0}: Cannot set Import without Create,{0} : Δεν είναι δυνατή η ρύθμιση εισαγωγής χωρίς δημιουργία DocType: SMS Settings,Enter url parameter for message,Εισάγετε παράμετρο url για το μήνυμα apps/frappe/frappe/templates/emails/auto_email_report.html +50,View report in your browser,Προβολή αναφοράς στο πρόγραμμα περιήγησής σας apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Εκδήλωση και άλλα ημερολόγια. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Όλα τα πεδία είναι απαραίτητα για την υποβολή του σχολίου. +DocType: Print Settings,Printer Name,Όνομα εκτυπωτή +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +865,Drag to sort columns,Σύρετε για να ταξινομήσετε στήλες apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Τα πλάτη μπορούν να ρυθμιστούν σε px ή %. apps/frappe/frappe/public/js/frappe/form/print.js +102,Start,Αρχή DocType: Contact,First Name,Όνομα @@ -198,12 +201,13 @@ apps/frappe/frappe/core/doctype/file/file.py +184,Cannot delete Home and Attachm apps/frappe/frappe/config/desk.py +19,Files,αρχεία apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Τα δικαιώματα εφαρμόζονται σε χρήστες με βάση τους ρόλους που τους έχουν ανατεθεί. apps/frappe/frappe/public/js/frappe/views/communication.js +529,You are not allowed to send emails related to this document,Δεν επιτρέπεται να στείλετε μηνύματα ηλεκτρονικού ταχυδρομείου που σχετίζονται με αυτό το έγγραφο -apps/frappe/frappe/model/db_query.py +561,Please select atleast 1 column from {0} to sort/group,Επιλέξτε atleast 1 στήλη από {0} έως ταξινόμηση / ομάδα +apps/frappe/frappe/model/db_query.py +593,Please select atleast 1 column from {0} to sort/group,Επιλέξτε atleast 1 στήλη από {0} έως ταξινόμηση / ομάδα DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Ελέγξτε αυτό εάν δοκιμάζετε την πληρωμή σας χρησιμοποιώντας το API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Δεν επιτρέπεται να διαγράψετε ένα πρότυπο ιστοσελίδας Θέμα DocType: Data Import,Log Details,Στοιχεία καταγραφής DocType: Feedback Trigger,Example,Παράδειγμα DocType: Webhook Header,Webhook Header,Επικεφαλίδα Webhook +DocType: Print Settings,Print Server,Print Server DocType: Workflow State,gift,Δώρο DocType: Workflow Action,Completed By,Ολοκληρώθηκε από apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +240,Reqd,Απαιτείται @@ -223,12 +227,13 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS DocType: Bulk Update,Bulk Update,Μαζική Ενημέρωση DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Αφήστε επισκεπτών για να δείτε -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +64,Documentation,Τεκμηρίωση +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +65,Documentation,Τεκμηρίωση DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js +986,Delete {0} items permanently?,Διαγραφή {0} αντικείμενα μόνιμα; apps/frappe/frappe/core/doctype/user/user.py +107,Not Allowed,Δεν επιτρέπεται DocType: DocShare,Internal record of document shares,Εσωτερική εγγραφή των κοινοποιήσεων εγγράφου DocType: Workflow State,Comment,Σχόλιο +DocType: Data Migration Plan,Postprocess Method,Μέθοδος μετά την επεξεργασία apps/frappe/frappe/public/js/frappe/ui/capture.js +196,Take Photo,Βγάλε φωτογραφία apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.",Μπορείτε να αλλάξετε υποβληθέντα έγγραφα ακυρώνοντας τα και στη συνέχεια τροποποιώντας τα. DocType: Data Import,Update records,Ενημέρωση αρχείων @@ -236,20 +241,20 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Εμφάνιση DocType: Email Group,Total Subscribers,Σύνολο Συνδρομητές apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"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 +901,Save As,Αποθήκευση ως +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +749,Save As,Αποθήκευση ως DocType: Communication,Seen,Επίσκεψη apps/frappe/frappe/public/js/frappe/form/layout.js +162,Show more details,Δείτε περισσότερες λεπτομέρειες DocType: System Settings,Run scheduled jobs only if checked,Εκτέλεση χρονοπρογραμματισμένων εργασιών μόνο αν είναι επιλεγμένο apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Θα εμφανίζεται μόνο εάν είναι ενεργοποιημένη τίτλοι των ενοτήτων apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Αρχείο -apps/frappe/frappe/public/js/frappe/socketio_client.js +341,File Upload,Ανέβασμα αρχείου +apps/frappe/frappe/public/js/frappe/socketio_client.js +357,File Upload,Ανέβασμα αρχείου DocType: Activity Log,Message,Μήνυμα DocType: Communication,Rating,Εκτίμηση DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Πλάτος εκτύπωσης του πεδίου, εάν το πεδίο είναι μια στήλη σε έναν πίνακα" DocType: Dropbox Settings,Dropbox Access Key,Dropbox access key -apps/frappe/frappe/desk/form/utils.py +49,Wrong fieldname {0} in add_fetch configuration of custom script,Λανθασμένο όνομα πεδίου {0} στη διαμόρφωση add_fetch προσαρμοσμένου σεναρίου +apps/frappe/frappe/desk/form/utils.py +50,Wrong fieldname {0} in add_fetch configuration of custom script,Λανθασμένο όνομα πεδίου {0} στη διαμόρφωση add_fetch προσαρμοσμένου σεναρίου DocType: Workflow State,headphones,Ακουστικά -apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,Απαιτείται κωδικός πρόσβασης ή επιλέξτε Αναμονή κωδικό πρόσβασης +apps/frappe/frappe/email/doctype/email_account/email_account.py +76,Password is required or select Awaiting Password,Απαιτείται κωδικός πρόσβασης ή επιλέξτε Αναμονή κωδικό πρόσβασης DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,Π.Χ. replies@yourcomany.Com. Όλες οι απαντήσεις θα έρθουν σε αυτόν τον φάκελο εισερχομένων. DocType: Slack Webhook URL,Slack Webhook URL,Slack URL Webhook DocType: Data Migration Run,Current Mapping,Τρέχουσα χαρτογράφηση @@ -260,15 +265,15 @@ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Ομάδες doctypes apps/frappe/frappe/config/integrations.py +93,Google Maps integration,Η ενσωμάτωση των Χαρτών Google DocType: Auto Email Report,XLSX,XLSX apps/frappe/frappe/templates/emails/password_reset.html +3,Reset your password,Επαναφορά του κωδικού πρόσβασής σας +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Show Weekends,Εμφάνιση Σαββατοκύριακων DocType: Workflow State,remove-circle,Remove-circle DocType: Help Article,Beginner,Αρχάριος DocType: Contact,Is Primary Contact,Είναι η κύρια επαφή apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,Javascript για να προσθέσετε στο τμήμα head της σελίδας. -apps/frappe/frappe/www/printview.py +81,Not allowed to print draft documents,Δεν επιτρέπεται να εκτυπώσετε σχέδια εγγράφων +apps/frappe/frappe/www/printview.py +80,Not allowed to print draft documents,Δεν επιτρέπεται να εκτυπώσετε σχέδια εγγράφων apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +12,Reset to defaults,Επαναφορά στις προεπιλογές DocType: Workflow,Transition Rules,Κανόνες μετάβασης apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Παράδειγμα: -DocType: Google Maps,Google Maps,Χάρτες Google DocType: Workflow,Defines workflow states and rules for a document.,Καθορίζει τις καταστάσεις ροής εργασίας και τους κανόνες για ένα έγγραφο. DocType: Workflow State,Filter,φίλτρο apps/frappe/frappe/model/db_schema.py +596,Fieldname {0} cannot have special characters like {1},"FIELDNAME {0} δεν μπορεί να έχει ειδικούς χαρακτήρες, όπως {1}" @@ -276,18 +281,18 @@ apps/frappe/frappe/config/setup.py +133,Update many values at one time.,Ενημ apps/frappe/frappe/model/document.py +637,Error: Document has been modified after you have opened it,Σφάλμα: το έγγραφο έχει τροποποιηθεί αφού το έχετε ανοίξει apps/frappe/frappe/core/doctype/activity_log/feed.py +56,{0} logged out: {1},{0} αποσυνδεθεί: {1} DocType: Address,West Bengal,Δυτική Βεγγάλη -apps/frappe/frappe/core/doctype/doctype/doctype.py +782,{0}: Cannot set Assign Submit if not Submittable,{0} : Δεν είναι δυνατή η ανάθεση υποβολής αν δεν είναι υποβλητέα +apps/frappe/frappe/core/doctype/doctype/doctype.py +825,{0}: Cannot set Assign Submit if not Submittable,{0} : Δεν είναι δυνατή η ανάθεση υποβολής αν δεν είναι υποβλητέα DocType: Transaction Log,Row Index,Δείκτης σειράς DocType: Social Login Key,Facebook,Facebook -apps/frappe/frappe/www/list.py +66,"Filtered by ""{0}""",Φιλτράρισμα κατά "{0}" +apps/frappe/frappe/www/list.py +41,"Filtered by ""{0}""",Φιλτράρισμα κατά "{0}" DocType: Salutation,Administrator,Διαχειριστής DocType: Activity Log,Closed,Κλειστό DocType: Blog Settings,Blog Title,Τίτλος blog apps/frappe/frappe/core/doctype/role/role.py +20,Standard roles cannot be disabled,Πρότυπο ρόλοι δεν μπορεί να απενεργοποιηθεί -apps/frappe/frappe/public/js/frappe/chat.js +1604,Chat Type,Τύπος συνομιλίας +apps/frappe/frappe/public/js/frappe/chat.js +1603,Chat Type,Τύπος συνομιλίας DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Ενημερωτικό δελτίο -apps/frappe/frappe/model/db_query.py +552,Cannot use sub-query in order by,Δεν είναι δυνατή η χρήση υπο-ερώτημα για από +apps/frappe/frappe/model/db_query.py +584,Cannot use sub-query in order by,Δεν είναι δυνατή η χρήση υπο-ερώτημα για από DocType: Web Form,Button Help,κουμπί Βοήθεια DocType: Kanban Board Column,purple,μωβ DocType: About Us Settings,Team Members,Μέλη της ομάδας @@ -302,27 +307,28 @@ DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",Όροι SQL. Π DocType: User,Get your globally recognized avatar from Gravatar.com,Πάρτε παγκοσμίως αναγνωρισμένο avatar σας από Gravatar.com apps/frappe/frappe/limits.py +32,"Your subscription expired on {0}. To renew, {1}.","Η συνδρομή σας έληξε στις {0}. Για την ανανέωση, {1}." DocType: Workflow State,plus-sign,Plus-sign -apps/frappe/frappe/__init__.py +918,App {0} is not installed,App {0} δεν είναι εγκατεστημένο +apps/frappe/frappe/__init__.py +994,App {0} is not installed,App {0} δεν είναι εγκατεστημένο DocType: Data Migration Plan,Mappings,Χαρτογραφήσεις DocType: Notification Recipient,Notification Recipient,Παραλήπτης ειδοποίησης DocType: Workflow State,Refresh,Ανανέωση DocType: Event,Public,Δημόσιο -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +594,Nothing to show,Δεν έχει τίποτα να δείξει +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +703,Nothing to show,Δεν έχει τίποτα να δείξει DocType: System Settings,Enable Two Factor Auth,Ενεργοποιήστε την εξαίρεση δύο παραγόντων -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +280,[Urgent] Error while creating recurring %s for %s,[Urgent] Σφάλμα κατά τη δημιουργία επαναλαμβανόμενων %s για %s +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +285,[Urgent] Error while creating recurring %s for %s,[Urgent] Σφάλμα κατά τη δημιουργία επαναλαμβανόμενων %s για %s apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Άρεσε DocType: DocField,Print Hide If No Value,Εκτύπωση Απόκρυψη Αν Όχι Αξία DocType: Kanban Board Column,yellow,κίτρινο -apps/frappe/frappe/core/doctype/doctype/doctype.py +616,Is Published Field must be a valid fieldname,Δημοσιεύεται πεδίο πρέπει να είναι μια έγκυρη ΌνομαΠεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,Is Published Field must be a valid fieldname,Δημοσιεύεται πεδίο πρέπει να είναι μια έγκυρη ΌνομαΠεδίου apps/frappe/frappe/public/js/frappe/upload.js +26,Upload Attachment,Ανεβάστε Συνημμένο DocType: Block Module,Block Module,Block Ενότητα apps/frappe/frappe/core/doctype/version/version_view.html +14,New Value,νέα τιμή +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +513,No permission to edit,Δεν έχετε άδεια για να επεξεργαστείτε apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +4,Add a column,Προσθέστε μια στήλη apps/frappe/frappe/www/contact.html +34,Your email address,Η διεύθυνση email σας DocType: Desktop Icon,Module,Λειτουργική μονάδα DocType: Notification,Send Alert On,Αποστολή ειδοποίησης στις DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Προσαρμογή ετικέτας, απόκρυψη εκτύπωσης, προεπιλογή κλπ." -apps/frappe/frappe/core/doctype/communication/communication.py +64,Please make sure the Reference Communication Docs are not circularly linked.,Βεβαιωθείτε ότι τα Έγγραφα Αναφοράς Αναφοράς δεν είναι κυκλικά συνδεδεμένα. +apps/frappe/frappe/core/doctype/communication/communication.py +83,Please make sure the Reference Communication Docs are not circularly linked.,Βεβαιωθείτε ότι τα Έγγραφα Αναφοράς Αναφοράς δεν είναι κυκλικά συνδεδεμένα. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Δημιουργία μιας νέα μορφής apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +39,Unable to create bucket: {0}. Change it to a more unique name.,Δεν είναι δυνατή η δημιουργία κάδου: {0}. Αλλάξτε το σε ένα πιο μοναδικό όνομα. DocType: Webhook,Request URL,Αίτημα URL @@ -330,7 +336,7 @@ DocType: Customize Form,Is Table,είναι πίνακας apps/frappe/frappe/core/doctype/user_permission/user_permission.js +70,Apply User Permission for following DocTypes,Εφαρμόστε την άδεια χρήστη για τα ακόλουθα DocTypes DocType: Email Account,Total number of emails to sync in initial sync process ,Συνολικός αριθμός των μηνυμάτων ηλεκτρονικού ταχυδρομείου προς συγχρονισμό κατά την αρχική διαδικασία συγχρονισμού DocType: Website Settings,Set Banner from Image,Ορισμός banner από την εικόνα -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Καθολική αναζήτηση +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +359,Global Search,Καθολική αναζήτηση DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +2,A new account has been created for you at {0},Ένας νέος λογαριασμός έχει δημιουργηθεί για εσάς σε {0} apps/frappe/frappe/templates/includes/login/login.js +193,Instructions Emailed,Οδηγίες μέσω ηλεκτρονικού ταχυδρομείου @@ -339,8 +345,8 @@ DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Ουρά Σημαία apps/frappe/frappe/config/setup.py +205,Stylesheets for Print Formats,Φύλλα στυλ για μορφές εκτύπωσης apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,δεν μπορεί να εντοπίσει ανοικτή {0}. Δοκιμάστε κάτι άλλο. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +172,Your information has been submitted,Οι πληροφορίες σας έχει υποβληθεί -apps/frappe/frappe/core/doctype/user/user.py +311,User {0} cannot be deleted,Ο χρήστης {0} δεν μπορεί να διαγραφεί +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +188,Your information has been submitted,Οι πληροφορίες σας έχει υποβληθεί +apps/frappe/frappe/core/doctype/user/user.py +305,User {0} cannot be deleted,Ο χρήστης {0} δεν μπορεί να διαγραφεί DocType: System Settings,Currency Precision,Νόμισμα ακρίβειας apps/frappe/frappe/public/js/frappe/request.js +143,Another transaction is blocking this one. Please try again in a few seconds.,Μια άλλη συναλλαγή μπλοκάροντας αυτό. Παρακαλώ δοκιμάστε ξανά σε λίγα δευτερόλεπτα. DocType: DocType,App,App @@ -361,8 +367,8 @@ apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Εμφά DocType: Workflow State,Print,Εκτύπωση DocType: User,Restrict IP,Περιορισμός IP apps/frappe/frappe/public/js/frappe/form/layout.js +108,Dashboard,Ταμπλό -apps/frappe/frappe/email/smtp.py +231,Unable to send emails at this time,Δεν μπορεί να γίνει αποστοή e-mail αυτή τη στιγμή -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +93,Search or type a command,Αναζήτηση ή πληκτρολόγηση μιας εντολής +apps/frappe/frappe/email/smtp.py +234,Unable to send emails at this time,Δεν μπορεί να γίνει αποστοή e-mail αυτή τη στιγμή +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,Search or type a command,Αναζήτηση ή πληκτρολόγηση μιας εντολής DocType: Activity Log,Timeline Name,Timeline Όνομα DocType: Email Account,e.g. smtp.gmail.com,π.χ. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +364,Add A New Rule,Προσθήκη νέου κανόνα @@ -377,11 +383,12 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help, DocType: Top Bar Item,Parent Label,Γονική ετικέτα apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Η ερώτησή σας έχει παραληφθεί. Θα απαντήσουμε άμεσα σύντομα. Εάν έχετε οποιεσδήποτε πρόσθετες πληροφορίες, απαντήστε σε αυτό το μήνυμα." DocType: GCalendar Account,Allow GCalendar Access,Επιτρέψτε την πρόσβαση στο GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py +225,{0} is a mandatory field,Το {0} είναι υποχρεωτικό πεδίο +apps/frappe/frappe/core/doctype/data_import/importer.py +224,{0} is a mandatory field,Το {0} είναι υποχρεωτικό πεδίο apps/frappe/frappe/templates/includes/login/login.js +251,Login token required,Απαιτείται ένα διακριτικό σύνδεσης DocType: Event,Repeat Till,Επανάληψη εως apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +111,New,Νέο apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,Ορίστε τη διεύθυνση URL δέσμης ενεργειών στις ρυθμίσεις Gsuite +DocType: Google Maps Settings,Google Maps Settings,Ρυθμίσεις Χαρτών Google apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Φόρτωση... DocType: DocField,Password,Κωδικός apps/frappe/frappe/utils/response.py +185,Your system is being updated. Please refresh again after a few moments,Το σύστημά σας είναι υπό ενημέρωση. Ανανεώστε ξανά μετά από λίγα λεπτά @@ -407,7 +414,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30 apps/frappe/frappe/templates/includes/search_template.html +45,No matching records. Search something new,Δεν υπάρχουν στοιχεία που να ταιριάζουν. Αναζήτηση κάτι νέο DocType: Chat Profile,Away,Μακριά DocType: Currency,Fraction Units,Μονάδες κλάσματος -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +461,{0} from {1} to {2},{0} από {1} έως {2} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +468,{0} from {1} to {2},{0} από {1} έως {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js +116,Mark as Done,Επισημάνετε ως τελείωσε DocType: Chat Message,Type,Τύπος DocType: Activity Log,Subject,Θέμα @@ -416,19 +423,20 @@ DocType: Web Form,Amount Based On Field,Ποσό με βάση το πεδίο apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Ο χρήστης είναι υποχρεωτική για το μερίδιο DocType: DocField,Hidden,κρυμμένο DocType: Web Form,Allow Incomplete Forms,Επιτρέψτε Ελλιπής Έντυπα -apps/frappe/frappe/model/base_document.py +438,{0} must be set first,{0} Πρέπει να ορίσετε πρώτα +apps/frappe/frappe/utils/print_format.py +126,PDF generation failed,Η δημιουργία PDF απέτυχε +apps/frappe/frappe/model/base_document.py +447,{0} must be set first,{0} Πρέπει να ορίσετε πρώτα apps/frappe/frappe/utils/password_strength.py +38,"Use a few words, avoid common phrases.","Χρησιμοποιήστε λίγα λόγια, αποφύγετε κοινά φράσεις." DocType: Workflow State,plane,Αεροπλάνο apps/frappe/frappe/core/doctype/data_import/exporter.py +66,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Αν ανεβάζετε νέες εγγραφές, η ""σειρά ονομασίας"" είναι απαραίτητη, εφόσον υπάρχει." -apps/frappe/frappe/email/doctype/notification/notification.js +87,Get Alerts for Today,Λάβετε ειδοποιήσεις για σήμερα -apps/frappe/frappe/core/doctype/doctype/doctype.py +316,DocType can only be renamed by Administrator,DocType μπορεί να μετονομαστεί μόνο από Administrator +apps/frappe/frappe/email/doctype/notification/notification.js +97,Get Alerts for Today,Λάβετε ειδοποιήσεις για σήμερα +apps/frappe/frappe/core/doctype/doctype/doctype.py +336,DocType can only be renamed by Administrator,DocType μπορεί να μετονομαστεί μόνο από Administrator DocType: Chat Message,Chat Message,Μήνυμα συζήτησης apps/frappe/frappe/utils/oauth.py +146,Email not verified with {0},Το email δεν επαληθεύτηκε με {0} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +472,changed value of {0},αλλαγμένη τιμή του {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +479,changed value of {0},αλλαγμένη τιμή του {0} DocType: User,"If the user has any role checked,then the user becomes a ""System User"". ""System User"" has access to the desktop","Αν ο χρήστης ελέγξει κάποιο ρόλο, τότε ο χρήστης γίνεται "Χρήστης συστήματος". Ο "Χρήστης συστήματος" έχει πρόσβαση στην επιφάνεια εργασίας" DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/user/user.py +803,Please check your email for verification,Παρακαλώ ελέγξτε το email σας για επαλήθευση -apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Fold can not be at the end of the form,Η αναδίπλωση δεν μπορεί να είναι στο τέλος της φόρμας +apps/frappe/frappe/core/doctype/user/user.py +797,Please check your email for verification,Παρακαλώ ελέγξτε το email σας για επαλήθευση +apps/frappe/frappe/core/doctype/doctype/doctype.py +599,Fold can not be at the end of the form,Η αναδίπλωση δεν μπορεί να είναι στο τέλος της φόρμας DocType: Communication,Bounced,Ακάλυπτες DocType: Deleted Document,Deleted Name,διαγράφεται Όνομα apps/frappe/frappe/config/setup.py +14,System and Website Users,Χρήστες συστήματος και ιστοσελίδας @@ -436,48 +444,50 @@ DocType: Workflow Document State,Doc Status,Κατάσταση εγγράφου DocType: Data Migration Run,Pull Update,Τραβήξτε την ενημέρωση DocType: Auto Email Report,No of Rows (Max 500),Αριθμός σειρών (Max 500) DocType: Language,Language Code,Κωδικός γλώσσας +DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Σημείωση: Από προεπιλογή, στέλνονται μηνύματα ηλεκτρονικού ταχυδρομείου για αποτυχημένα αντίγραφα ασφαλείας." apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +281,"Your download is being built, this may take a few moments...","Η λήψη σας δημιουργείται, αυτό μπορεί να διαρκέσει λίγα λεπτά ..." apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js +144,Add Filter,Προσθήκη φίλτρου apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py +86,SMS sent to following numbers: {0},SMS αποστέλλονται στην παρακάτω αριθμούς: {0} -apps/frappe/frappe/public/js/frappe/ui/comment.js +230,Your rating: ,Η βαθμολογία σας: -apps/frappe/frappe/utils/data.py +641,{0} and {1},{0} και {1} -apps/frappe/frappe/public/js/frappe/chat.js +2150,Start a conversation.,Ξεκινήστε μια συζήτηση. +apps/frappe/frappe/public/js/frappe/ui/comment.js +234,Your rating: ,Η βαθμολογία σας: +apps/frappe/frappe/email/smtp.py +191,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account +apps/frappe/frappe/utils/data.py +643,{0} and {1},{0} και {1} +apps/frappe/frappe/public/js/frappe/chat.js +2149,Start a conversation.,Ξεκινήστε μια συζήτηση. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Πάντα προσθέστε "Σχέδιο" Τομέας για σχέδιο εκτύπωση εγγράφων DocType: Data Migration Run,Current Mapping Start,Τρέχουσα εκκίνηση χαρτογράφησης apps/frappe/frappe/core/doctype/communication/communication.js +240,Email has been marked as spam,Το μήνυμα ηλεκτρονικού ταχυδρομείου έχει επισημανθεί ως ανεπιθύμητο DocType: About Us Settings,Website Manager,Διαχειριστής ιστοσελίδας -apps/frappe/frappe/public/js/frappe/socketio_client.js +342,File Upload Disconnected. Please try again.,Η αποστολή του αρχείου αποσυνδέθηκε. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα. -apps/frappe/frappe/desk/search.py +17,Invalid Search Field,Μη έγκυρο πεδίο αναζήτησης +apps/frappe/frappe/public/js/frappe/socketio_client.js +358,File Upload Disconnected. Please try again.,Η αποστολή του αρχείου αποσυνδέθηκε. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα. apps/frappe/frappe/public/js/frappe/views/translation_manager.js +48,Translations,Μεταφράσεις apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +23,You selected Draft or Cancelled documents,Έχετε επιλέξει Έγγραφα ή Άκυρα έγγραφα -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +94,Document {0} has been set to state {1} by {2},Το έγγραφο {0} έχει οριστεί σε κατάσταση {1} έως {2} -apps/frappe/frappe/model/document.py +1211,Document Queued,έγγραφο ουρά +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +122,Document {0} has been set to state {1} by {2},Το έγγραφο {0} έχει οριστεί σε κατάσταση {1} έως {2} +apps/frappe/frappe/model/document.py +1212,Document Queued,έγγραφο ουρά DocType: GSuite Templates,Destination ID,Αναγνωριστικό προορισμού DocType: Desktop Icon,List,Λίστα DocType: Activity Log,Link Name,Όνομα σύνδεσμο -apps/frappe/frappe/core/doctype/doctype/doctype.py +480,Field {0} in row {1} cannot be hidden and mandatory without default,Το πεδίο {0} στη γραμμή {1} δεν μπορεί να είναι κρυφό και υποχρεωτικό χωρίς προεπιλογμένη τιμή +apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Field {0} in row {1} cannot be hidden and mandatory without default,Το πεδίο {0} στη γραμμή {1} δεν μπορεί να είναι κρυφό και υποχρεωτικό χωρίς προεπιλογμένη τιμή DocType: System Settings,mm/dd/yyyy,μμ/ηη/εεεε -apps/frappe/frappe/core/doctype/user/user.py +939,Invalid Password: ,Λανθασμένος κωδικός: +apps/frappe/frappe/core/doctype/user/user.py +934,Invalid Password: ,Λανθασμένος κωδικός: DocType: Print Settings,Send document web view link in email,Αποστολή εγγράφου σύνδεσμο προβολή ιστοσελίδων στο email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Σχόλια για το έγγραφο {0} έχει αποθηκευτεί με επιτυχία apps/frappe/frappe/public/js/frappe/ui/slides.js +321,Previous,Προηγούμενο -apps/frappe/frappe/email/doctype/email_account/email_account.py +560,Re:,Απ: -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +526,{0} rows for {1},{0} γραμμές για {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py +565,Re:,Απ: +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +533,{0} rows for {1},{0} γραμμές για {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Υπο-νόμισμα. Για παράδειγμα "cent" apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js +15,Connection Name,Όνομα σύνδεσης -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +220,Select uploaded file,Επιλέξτε προστιθέμενο αρχείο +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Επιλέξτε προστιθέμενο αρχείο DocType: Letter Head,Check this to make this the default letter head in all prints,Επιλέξτε αυτό για να γίνει η προεπιλεγμένη κεφαλίδα επιστολόχαρτου σε όλες τις εκτυπώσεις DocType: Print Format,Server,Διακομιστής -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +205,New Kanban Board,Νέος Πίνακας Kanban +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +193,New Kanban Board,Νέος Πίνακας Kanban DocType: Desktop Icon,Link,Σύνδεσμος apps/frappe/frappe/utils/file_manager.py +122,No file attached,Δεν βρέθηκε συνημμένο αρχείο DocType: Version,Version,Έκδοση +DocType: S3 Backup Settings,Endpoint URL,Διεύθυνση URL τελικού σημείου apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +56,Charts,Διαγράμματα DocType: User,Fill Screen,Γέμισε την οθόνη apps/frappe/frappe/chat/doctype/chat_profile/chat_profile.py +87,Chat Profile for User {user} exists.,Το προφίλ συνομιλίας για το χρήστη {user} υπάρχει. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically applied to Standard Reports and searches.,Οι άδειες εφαρμόζονται αυτόματα σε τυπικές αναφορές και αναζητήσεις. apps/frappe/frappe/public/js/frappe/socketio_client.js +267,Upload Failed,Η μεταφόρτωση απέτυχε -apps/frappe/frappe/public/js/frappe/form/grid.js +666,Edit via Upload,Επεξεργασία μέσω Ανεβάστε +apps/frappe/frappe/public/js/frappe/form/grid.js +667,Edit via Upload,Επεξεργασία μέσω Ανεβάστε apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Τύπος εγγράφου ..., π.χ. πελατών" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Η Κατάσταση '{0}' δεν είναι έγκυρη DocType: Workflow State,barcode,Barcode @@ -486,22 +496,24 @@ DocType: Country,Country Name,Όνομα χώρας DocType: About Us Team Member,About Us Team Member,Μέλος της ομάδας σχετικά με εμάς apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"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,Τετάρτη -apps/frappe/frappe/core/doctype/doctype/doctype.py +607,Image field must be a valid fieldname,πεδίο εικόνας πρέπει να είναι μια έγκυρη ΌνομαΠεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +650,Image field must be a valid fieldname,πεδίο εικόνας πρέπει να είναι μια έγκυρη ΌνομαΠεδίου DocType: Chat Token,Token,Ένδειξη DocType: Property Setter,ID (name) of the entity whose property is to be set,Id (όνομα) της οντότητας της οποίας η ιδιότητα είναι να καθοριστεί apps/frappe/frappe/limits.py +84,"To renew, {0}.","Για την ανανέωση, {0}." DocType: Website Settings,Website Theme Image Link,Ιστοσελίδα Σύνδεσμος Θέμα Εικόνα DocType: Web Form,Sidebar Items,Αντικείμενα της sidebar +DocType: Web Form,Show as Grid,Εμφάνιση ως πλέγμα apps/frappe/frappe/installer.py +129,App {0} already installed,Η εφαρμογή {0} έχει ήδη εγκατασταθεί -apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +11,No Preview,Δεν υπάρχει προεπισκόπηση +apps/frappe/frappe/printing/doctype/print_settings/print_settings.js +12,No Preview,Δεν υπάρχει προεπισκόπηση DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Εμφάνιση Δικαιώματα -apps/frappe/frappe/core/doctype/doctype/doctype.py +627,Timeline field must be a Link or Dynamic Link,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένας σύνδεσμος ή Dynamic Link +DocType: Data Import,New data will be inserted.,Θα εισαχθούν νέα δεδομένα. +apps/frappe/frappe/core/doctype/doctype/doctype.py +670,Timeline field must be a Link or Dynamic Link,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένας σύνδεσμος ή Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Εύρος ημερομηνιών apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +10,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Σελίδα {0} από {1} DocType: About Us Settings,Introduce your company to the website visitor.,Συστήστε την εταιρεία σας στον επισκέπτη της ιστοσελίδας -apps/frappe/frappe/utils/password.py +144,"Encryption key is invalid, Please check site_config.json","Το κλειδί κρυπτογράφησης δεν είναι έγκυρο, ελέγξτε το site_config.json" +apps/frappe/frappe/utils/password.py +150,"Encryption key is invalid, Please check site_config.json","Το κλειδί κρυπτογράφησης δεν είναι έγκυρο, ελέγξτε το site_config.json" DocType: SMS Settings,Receiver Parameter,Παράμετρος παραλήπτη DocType: Data Migration Mapping Detail,Remote Fieldname,Απομακρυσμένο όνομα πεδίου DocType: Communication,To,Έως @@ -515,27 +527,28 @@ DocType: Print Settings,Font Size,Μέγεθος γραμματοσειράς DocType: System Settings,Disable Standard Email Footer,Απενεργοποίηση Πρότυπο Τελικοί Email DocType: Workflow State,facetime-video,Facetime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 Σχόλιο -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +424,viewed,βλέπετε +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,viewed,βλέπετε DocType: Notification,Days Before,Ημέρες Πριν DocType: Workflow State,volume-down,Volume-down -apps/frappe/frappe/desk/reportview.py +268,No Tags,Δεν υπάρχουν ετικέτες +apps/frappe/frappe/desk/reportview.py +270,No Tags,Δεν υπάρχουν ετικέτες DocType: DocType,List View Settings,Λίστα Ρυθμίσεις προβολής DocType: Email Account,Send Notification to,Αποστολή ειδοποίησης σε DocType: DocField,Collapsible,Αναδιπλούμενο apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Αποθηκεύτηκε -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +57,What do you need help with?,Σε τι χρειάζεσαι βοήθεια? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,What do you need help with?,Σε τι χρειάζεσαι βοήθεια? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Επιλογές για επιλεγμένες. Κάθε επιλογή σε μια νέα γραμμή. apps/frappe/frappe/public/js/legacy/form.js +813,Permanently Cancel {0}?,Μόνιμα Ακύρωση {0} ; DocType: Workflow State,music,Μουσική +DocType: Website Theme,Text Styles,Στυλ κειμένου apps/frappe/frappe/www/qrcode.html +3,QR Code,QR Code -apps/frappe/frappe/email/doctype/notification/notification.js +24,Last Modified Date,Τελευταία τροποποιημένη ημερομηνία +apps/frappe/frappe/email/doctype/notification/notification.js +34,Last Modified Date,Τελευταία τροποποιημένη ημερομηνία DocType: Chat Profile,Settings,Ρυθμίσεις DocType: Print Format,Style Settings,Ρυθμίσεις στυλ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +343,Y Axis Fields,Πεδία άξονα Υ -apps/frappe/frappe/core/doctype/doctype/doctype.py +638,Sort field {0} must be a valid fieldname,πεδίο Ταξινόμηση {0} πρέπει να είναι μια έγκυρη ΌνομαΠεδίου -apps/frappe/frappe/public/js/frappe/list/base_list.js +279,More,Περισσότερο +apps/frappe/frappe/core/doctype/doctype/doctype.py +681,Sort field {0} must be a valid fieldname,πεδίο Ταξινόμηση {0} πρέπει να είναι μια έγκυρη ΌνομαΠεδίου +apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Περισσότερο DocType: Contact,Sales Manager,Διευθυντής πωλήσεων -apps/frappe/frappe/public/js/frappe/model/model.js +545,Rename,Μετονομασία +apps/frappe/frappe/public/js/frappe/model/model.js +544,Rename,Μετονομασία DocType: Print Format,Format Data,Μορφοποίηση δεδομένων DocType: List Filter,Filter Name,Όνομα φίλτρου apps/frappe/frappe/utils/bot.py +91,Like,σαν @@ -544,7 +557,7 @@ DocType: Website Settings,Chat Room Name,Όνομα αίθουσας συνομ DocType: OAuth Client,Grant Type,Είδος επιδότησης apps/frappe/frappe/config/setup.py +57,Check which Documents are readable by a User,Ελέγξτε ποια έγγραφα είναι δυνατόν να αναγνωσθούν από έναν χρήστη DocType: Deleted Document,Hub Sync ID,Αναγνωριστικό συγχρονισμού Hub -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +280,use % as wildcard,χρησιμοποιήστε% ως μπαλαντέρ +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +282,use % as wildcard,χρησιμοποιήστε% ως μπαλαντέρ DocType: Auto Repeat,Quarterly,Τριμηνιαίος apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Τομέα email δεν έχει ρυθμιστεί για αυτόν το λογαριασμό, δημιουργήστε έναν;" DocType: User,Reset Password Key,Επαναφορά κωδικού @@ -560,12 +573,13 @@ apps/frappe/frappe/www/qrcode.html +14,Scan the QR Code and enter the resulting DocType: System Settings,Minimum Password Score,Ελάχιστη βαθμολογία κωδικού πρόσβασης DocType: DocType,Fields,Πεδία DocType: System Settings,Your organization name and address for the email footer.,Το όνομα του οργανισμού σας και τη διεύθυνση για την ηλεκτρονική υποσέλιδο. -apps/frappe/frappe/core/doctype/data_import/importer.py +27,Parent Table,Γονικός πίνακας +apps/frappe/frappe/core/doctype/data_import/importer.py +26,Parent Table,Γονικός πίνακας apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +18,S3 Backup complete!,Το S3 Backup ολοκληρώθηκε! apps/frappe/frappe/config/desktop.py +60,Developer,Προγραμματιστής -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +147,Created,Δημιουργήθηκε +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +146,Created,Δημιουργήθηκε apps/frappe/frappe/client.py +101,No permission for {doctype},Δεν υπάρχει άδεια για το {doctype} apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{0} in row {1} cannot have both URL and child items,{0} Στη γραμμή {1} δεν μπορεί να έχει και url και θυγατρικά είδη +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +22,Ancestors Of,Πρόγονοι του apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Η ρίζα {0} δεν μπορεί να διαγραφεί apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,Δεν υπάρχουν ακόμη σχόλια apps/frappe/frappe/core/doctype/system_settings/system_settings.py +32,"Please setup SMS before setting it as an authentication method, via SMS Settings","Ρυθμίστε το SMS προτού το ορίσετε ως μέθοδο ελέγχου ταυτότητας, μέσω Ρυθμίσεων SMS" @@ -576,6 +590,7 @@ DocType: Contact,Open,Ανοιχτό DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,"Καθορίζει τις ενέργειες για τις καταστάσεις, το επόμενο βήμα και τους ρόλους που επιτρέπονται." DocType: Data Migration Mapping,Remote Objectname,Απομακρυσμένο όνομα αντικειμένου apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Ως βέλτιστη πρακτική, μην αποδίδετε το ίδιο σύνολο κανόνων δικαιωμάτων σε διαφορετικούς ρόλους. Αντ'αυτού , ορίστε περισσότερους ρόλους στον ίδιο χρήστη." +apps/frappe/frappe/www/confirm_workflow_action.html +4,Please confirm your action to {0} this document.,Επιβεβαιώστε τη δράση σας στο {0} αυτό το έγγραφο. DocType: Success Action,Next Actions HTML,Επόμενες ενέργειες HTML apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +43,Only {0} emailed reports are allowed per user,Μόνο {0} σταλούν οι αναφορές που επιτρέπονται ανά χρήστη DocType: Address,Address Title,Τίτλος διεύθυνσης @@ -586,32 +601,33 @@ DocType: DefaultValue,DefaultValue,Προεπιλεγμένη τιμή DocType: Auto Repeat,Daily,Καθημερινά apps/frappe/frappe/config/setup.py +19,User Roles,Ρόλοι χρηστών DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Ο ρυθμιστής ιδιότητας παρακάμπτει έναν πρότυπο τύπο εγγράφου ή μια ιδιότητα πεδίου -apps/frappe/frappe/core/doctype/user/user.py +735,Cannot Update: Incorrect / Expired Link.,Δεν είναι δυνατή η ενημέρωση : εσφαλμένος / ληγμένος υπερσύνδεσμος. +apps/frappe/frappe/core/doctype/user/user.py +729,Cannot Update: Incorrect / Expired Link.,Δεν είναι δυνατή η ενημέρωση : εσφαλμένος / ληγμένος υπερσύνδεσμος. apps/frappe/frappe/utils/password_strength.py +70,Better add a few more letters or another word,Καλύτερα να προσθέσετε μερικά ακόμη γράμματα ή κάποια άλλη λέξη apps/frappe/frappe/twofactor.py +233,One Time Password (OTP) Registration Code from {},Κωδικός εγγραφής μίας ώρας (OTP) από {} DocType: DocField,Set Only Once,Ορισμός μόνο μία φορά DocType: Email Queue Recipient,Email Queue Recipient,Email Ουρά Παραλήπτη DocType: Address,Nagaland,Nagaland DocType: Slack Webhook URL,Webhook URL,Webhook URL -apps/frappe/frappe/core/doctype/user/user.py +424,Username {0} already exists,Όνομα Χρήστη {0} υπάρχει ήδη -apps/frappe/frappe/core/doctype/doctype/doctype.py +788,{0}: Cannot set import as {1} is not importable,{0} : Δεν είναι δυνατή η ρύθμιση των εισαγωγών καθώς το {1} δεν είναι δυνατόν να εισαχθεί +apps/frappe/frappe/core/doctype/user/user.py +418,Username {0} already exists,Όνομα Χρήστη {0} υπάρχει ήδη +apps/frappe/frappe/core/doctype/doctype/doctype.py +831,{0}: Cannot set import as {1} is not importable,{0} : Δεν είναι δυνατή η ρύθμιση των εισαγωγών καθώς το {1} δεν είναι δυνατόν να εισαχθεί apps/frappe/frappe/contacts/doctype/address/address.py +114,There is an error in your Address Template {0},Υπάρχει ένα σφάλμα στο Πρότυπο σας Διεύθυνση {0} apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +82,{0} is an invalid email address in 'Recipients',"{0} μη έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στους ""Παραλήπτες""" DocType: User,Allow Desktop Icon,Να επιτρέπεται το εικονίδιο επιφάνειας εργασίας DocType: Footer Item,"target = ""_blank""","Target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Πλήθος -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Στήλη {0} υπάρχει ήδη. +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +57,Column {0} already exist.,Στήλη {0} υπάρχει ήδη. DocType: ToDo,High,Υψηλός DocType: S3 Backup Settings,Secret Access Key,Κλειδί μυστικής πρόσβασης apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +15,Male,Άντρας -apps/frappe/frappe/core/doctype/user/user.py +1022,OTP Secret has been reset. Re-registration will be required on next login.,Το OTP Secret έχει επαναφερθεί. Κατά την επόμενη είσοδο θα απαιτείται επανέγκριση. +apps/frappe/frappe/core/doctype/user/user.py +1017,OTP Secret has been reset. Re-registration will be required on next login.,Το OTP Secret έχει επαναφερθεί. Κατά την επόμενη είσοδο θα απαιτείται επανέγκριση. DocType: Communication,From Full Name,Από Ονοματεπώνυμο -apps/frappe/frappe/desk/query_report.py +21,You don't have access to Report: {0},Δεν έχετε πρόσβαση στην έκθεση: {0} +apps/frappe/frappe/desk/query_report.py +23,You don't have access to Report: {0},Δεν έχετε πρόσβαση στην έκθεση: {0} DocType: User,Send Welcome Email,Αποστολή Καλώς Email -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +266,Remove Filter,Κατάργηση φίλτρου +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +268,Remove Filter,Κατάργηση φίλτρου +DocType: Web Form Field,Show in filter,Εμφάνιση στο φίλτρο DocType: Address,Daman and Diu,Δαμάν και Ντιού -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +178,Project,Έργο +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +226,Project,Έργο DocType: Address,Personal,Προσωπικός apps/frappe/frappe/config/setup.py +125,Bulk Rename,Μαζική Μετονομασία DocType: Email Queue,Show as cc,Εμφάνιση ως cc @@ -625,12 +641,14 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Prof,Καθ apps/frappe/frappe/core/doctype/page/page.py +37,Not in Developer Mode,Δεν είναι σε κατάσταση προγραμματιστή apps/frappe/frappe/desk/page/backups/backups.py +79,File backup is ready,Το αρχείο αντιγράφων ασφαλείας είναι έτοιμο DocType: DocField,In Global Search,Στην Σφαιρική Αναζήτηση +DocType: System Settings,Brute Force Security,Ασφάλεια βίαιης βίας DocType: Workflow State,indent-left,Εσοχή-αριστερά apps/frappe/frappe/utils/file_manager.py +282,It is risky to delete this file: {0}. Please contact your System Manager.,Είναι επικίνδυνο να διαγράψετε αυτό το αρχείο: {0}. Επικοινωνήστε με το διαχειριστή του συστήματός σας. DocType: Currency,Currency Name,Όνομα νομίσματος apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +175,No Emails,Δεν Emails -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +93,Link Expired,Η σύνδεση έληξε -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +458,Select File Format,Επιλέξτε Μορφή αρχείου +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +55,> {0} year(s) ago,> {0} χρόνια πριν +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +121,Link Expired,Η σύνδεση έληξε +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +555,Select File Format,Επιλέξτε Μορφή αρχείου DocType: Report,Javascript,Javascript DocType: File,Content Hash,Hash περιεχομένου DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Αποθηκεύει το JSON του τελευταίου γνωστού εκδόσεις των διαφόρων εγκατεστημένων εφαρμογών. Χρησιμοποιείται για να δείξει τις σημειώσεις έκδοσης. @@ -642,16 +660,15 @@ DocType: Auto Repeat,Stopped,Σταματημένη apps/frappe/frappe/core/page/permission_manager/permission_manager.js +318,Did not remove,Δεν έγινε η αφαίρεση apps/frappe/frappe/desk/like.py +89,Liked,Άρεσε apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Αποστολή τώρα -apps/frappe/frappe/core/doctype/doctype/doctype.py +81,"Standard DocType cannot have default print format, use Customize Form","Το τυπικό DocType δεν μπορεί να έχει προεπιλεγμένη μορφή εκτύπωσης, χρησιμοποιήστε τη ρύθμιση Customize Form" +apps/frappe/frappe/core/doctype/doctype/doctype.py +82,"Standard DocType cannot have default print format, use Customize Form","Το τυπικό DocType δεν μπορεί να έχει προεπιλεγμένη μορφή εκτύπωσης, χρησιμοποιήστε τη ρύθμιση Customize Form" DocType: Report,Query,Ερώτημα DocType: DocType,Sort Order,Σειρά ταξινόμησης -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,'In List View' not allowed for type {0} in row {1},«Σε προβολή λίστας» δεν επιτρέπεται για τον τύπο {0} στη γραμμή {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +531,'In List View' not allowed for type {0} in row {1},«Σε προβολή λίστας» δεν επιτρέπεται για τον τύπο {0} στη γραμμή {1} DocType: Custom Field,Select the label after which you want to insert new field.,Επιλέξτε την ετικέτα μετά την οποία θέλετε να εισαγάγετε νέο πεδίο. ,Document Share Report,Αναφορά κοινοποίησης εγγράφου DocType: Social Login Key,Base URL,Βασική διεύθυνση URL DocType: User,Last Login,Τελευταία είσοδος apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +217,You can't set 'Translatable' for field {0},Δεν μπορείτε να ορίσετε "Μεταφράσιμο" για το πεδίο {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +663,Fieldname is required in row {0},Το όνομα πεδίου είναι απαραίτητο στη γραμμή {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Στήλη DocType: Chat Profile,Chat Profile,Προφίλ συνομιλίας DocType: Custom Field,Adds a custom field to a DocType,Προσθέτει ένα προσαρμοσμένο πεδίο σε έναν τύπο εγγράφου @@ -660,6 +677,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a val apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +63,Select atleast 1 record for printing,Επιλέξτε atleast 1 εγγραφή για εκτύπωση apps/frappe/frappe/core/doctype/has_role/has_role.py +12,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 +7,First set the name and save the record.,Αρχικά ορίστε το όνομα και αποθηκεύστε την εγγραφή. apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Κοινή χρήση με {0} apps/frappe/frappe/email/queue.py +269,Unsubscribe,Κατάργηση DocType: View log,Reference Name,Όνομα αναφοράς @@ -681,17 +699,18 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Επ apps/frappe/frappe/public/js/frappe/form/formatters.js +135,{0} to {1},{0} έως {1} apps/frappe/frappe/config/setup.py +87,Log of error during requests.,Συνδεθείτε σφάλματος κατά τη διάρκεια αιτήσεων. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +219,{0} has been successfully added to the Email Group.,{0} έχει προστεθεί με επιτυχία τον Όμιλο Email. -apps/frappe/frappe/public/js/frappe/form/grid.js +682,Do not edit headers which are preset in the template,Μην επεξεργάζεστε κεφαλίδες που έχουν προκαθοριστεί στο πρότυπο +apps/frappe/frappe/public/js/frappe/form/grid.js +683,Do not edit headers which are preset in the template,Μην επεξεργάζεστε κεφαλίδες που έχουν προκαθοριστεί στο πρότυπο apps/frappe/frappe/twofactor.py +221,Login Verification Code from {},Κωδικός επαλήθευσης σύνδεσης από {} DocType: Address,Uttar Pradesh,Uttar Pradesh +apps/frappe/frappe/www/confirm_workflow_action.html +8,Note:,Σημείωση: DocType: Address,Pondicherry,Pondicherry DocType: Data Import,Import Status,Κατάσταση εισαγωγής -apps/frappe/frappe/public/js/frappe/upload.js +419,Make file(s) private or public?,Κάντε το αρχείο (ες) ιδιωτικό ή δημόσιο; +apps/frappe/frappe/public/js/frappe/upload.js +420,Make file(s) private or public?,Κάντε το αρχείο (ες) ιδιωτικό ή δημόσιο; apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Scheduled to send to {0},Προγραμματισμένη για να αποσταλεί σε {0} DocType: Kanban Board Column,Indicator,Δείκτης DocType: DocShare,Everyone,Όλοι DocType: Workflow State,backward,Πίσω -apps/frappe/frappe/core/doctype/doctype/doctype.py +737,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Μόνο ένας κανόνας είναι επιτρεπτός με τον ίδιο Ρόλο, Επίπεδο και {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +780,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Μόνο ένας κανόνας είναι επιτρεπτός με τον ίδιο Ρόλο, Επίπεδο και {1}" DocType: Email Queue,Add Unsubscribe Link,Προσθήκη Διαγραφή Σύνδεσμος apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Δεν υπάρχουν ακόμη σχόλια. Ξεκινήστε μια νέα συζήτηση. DocType: Workflow State,share,Κοινοποίηση @@ -703,6 +722,7 @@ DocType: User,Last IP,Τελευταία IP apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Ανανεώστε / Αναβάθμιση apps/frappe/frappe/share.py +148,A new document {0} has been shared by with you {1}.,Ένα νέο έγγραφο {0} έχει μοιραστεί μαζί σας {1}. DocType: Data Migration Connector,Data Migration Connector,Υποδοχή μετεγκατάστασης δεδομένων +DocType: Email Account,Track Email Status,Παρακολούθηση Κατάστασης Email DocType: Note,Notify Users On Every Login,Ειδοποιήστε τους χρήστες σε κάθε σύνδεση DocType: PayPal Settings,API Password,API Κωδικός apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py +16,Enter python module or select connector type,Εισαγάγετε την ενότητα python ή επιλέξτε τύπο συνδετήρα @@ -711,6 +731,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Τελε apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Προβολή Συνδρομητές DocType: Webhook,after_insert,after_insert apps/frappe/frappe/core/doctype/file/file.py +249,Cannot delete file as it belongs to {0} {1} for which you do not have permissions,Δεν είναι δυνατή η διαγραφή του αρχείου καθώς ανήκει στην {0} {1} για την οποία δεν έχετε δικαιώματα +DocType: Website Theme,Custom JS,Custom JS apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Κα DocType: Website Theme,Background Color,Χρώμα φόντου apps/frappe/frappe/public/js/frappe/views/communication.js +589,There were errors while sending email. Please try again.,Υπήρξαν σφάλματα κατά την αποστολή ηλεκτρονικού ταχυδρομείου. Παρακαλώ δοκιμάστε ξανά . @@ -719,21 +740,23 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +24,Cannot update {0} DocType: Data Migration Mapping,Mapping,Χαρτογράφηση DocType: Web Page,0 is highest,0 Είναι η υψηλότερη apps/frappe/frappe/core/doctype/communication/communication.js +127,Are you sure you want to relink this communication to {0}?,Είστε σίγουροι ότι θέλετε να επανασύνδεση αυτή την ανακοίνωση σε {0}; -apps/frappe/frappe/www/login.html +86,Send Password,Αποστολή Κωδικού +apps/frappe/frappe/www/login.html +87,Send Password,Αποστολή Κωδικού +apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account +DocType: Print Settings,Server IP,IP διακομιστή DocType: Email Queue,Attachments,Συνημμένα apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Δεν έχετε τα δικαιώματα πρόσβασης σε αυτό το έγγραφο DocType: Language,Language Name,γλώσσα Όνομα DocType: Email Group Member,Email Group Member,Στείλτε e-mail Μέλος του Ομίλου +apps/frappe/frappe/auth.py +393,Your account has been locked and will resume after {0} seconds,Ο λογαριασμός σας έχει κλειδωθεί και θα συνεχιστεί μετά από {0} δευτερόλεπτα apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,User Permissions are used to limit users to specific records.,Τα δικαιώματα χρήστη χρησιμοποιούνται για τον περιορισμό των χρηστών σε συγκεκριμένες εγγραφές. DocType: Notification,Value Changed,Η τιμή άλλαξε -apps/frappe/frappe/model/base_document.py +313,Duplicate name {0} {1},Διπλότυπο όνομα {0} {1} +apps/frappe/frappe/model/base_document.py +322,Duplicate name {0} {1},Διπλότυπο όνομα {0} {1} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +281,Retry,Ξαναδοκιμάσετε DocType: Web Form Field,Web Form Field,Πεδίο φόρμας ιστοσελίδας apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +257,Hide field in Report Builder,Απόκρυψη πεδίου στο εργαλείο δημιουργίας εκθέσεων apps/frappe/frappe/templates/emails/new_message.html +1,You have a new message from: ,Έχετε ένα νέο μήνυμα από: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Επεξεργασία κώδικα HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +30,Please enter Redirect URL,Εισαγάγετε τη διεύθυνση URL ανακατεύθυνσης -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Ρύθμιση> Δικαιώματα χρήστη apps/frappe/frappe/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field of this","να δημιουργηθεί. Εάν καθυστερήσετε, θα πρέπει να αλλάξετε με μη αυτόματο τρόπο το πεδίο "Επαναλάβετε την ημέρα του μήνα"" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +416,Restore Original Permissions,Επαναφορά των αρχικών δικαιωμάτων @@ -758,23 +781,25 @@ DocType: Address,Rajasthan,Ρατζαστάν DocType: Email Template,Email Reply Help,Βοήθεια ηλεκτρονικού ταχυδρομείου απάντησης apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Οι εκθέσεις του δημιουργού εκθέσεων είναι διαχειρίσημες απευθείας από τον δημιουργό εκθέσεων. Δεν υπάρχει τίποτα να κάνετε. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +189,Please verify your Email Address,Παρακαλούμε επιβεβαιώστε σας Διεύθυνση E-mail -apps/frappe/frappe/model/document.py +1056,none of,Κανένας από +apps/frappe/frappe/model/document.py +1057,none of,Κανένας από apps/frappe/frappe/public/js/frappe/views/communication.js +87,Send Me A Copy,Στείλτε μου ένα αντίγραφο DocType: Dropbox Settings,App Secret Key,App μυστικό κλειδί DocType: Webhook,on_submit,on_submit apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Τα επιλεγμένα στοιχεία θα εμφανίζονται στην επιφάνεια εργασίας -apps/frappe/frappe/core/doctype/doctype/doctype.py +778,{0} cannot be set for Single types,{0} Δεν μπορεί να οριστεί για μοναδιαίους τύπους +apps/frappe/frappe/core/doctype/doctype/doctype.py +821,{0} cannot be set for Single types,{0} Δεν μπορεί να οριστεί για μοναδιαίους τύπους DocType: Data Import,Data Import,Εισαγωγή δεδομένων apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +333,Configure Chart,Ρύθμιση διαγράμματος apps/frappe/frappe/public/js/frappe/form/form_viewers.js +55,{0} are currently viewing this document,{0} Αυτή τη στιγμή βλέπετε αυτό το έγγραφο DocType: ToDo,Assigned By Full Name,Ανατεθεί Με Ονοματεπώνυμο apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +156,{0} updated,{0} Ενημερώθηκε -apps/frappe/frappe/core/doctype/doctype/doctype.py +770,Report cannot be set for Single types,Η έκθεση δεν μπορεί να οριστεί για μοναδιαίους τύπους +apps/frappe/frappe/core/doctype/doctype/doctype.py +813,Report cannot be set for Single types,Η έκθεση δεν μπορεί να οριστεί για μοναδιαίους τύπους +DocType: System Settings,Allow Consecutive Login Attempts ,Επιτρέψτε τις προσπάθειες συνεχούς σύνδεσης apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +50,An error occured during the payment process. Please contact us.,Παρουσιάστηκε σφάλμα κατά τη διαδικασία πληρωμής. Παρακαλώ επικοινωνήστε μαζί μας. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} days ago,{0} ημέρες πριν DocType: Email Account,Awaiting Password,Εν αναμονή Κωδικός DocType: Address,Address Line 1,Γραμμή διεύθυνσης 1 +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +18,Not Descendants Of,Δεν είναι απόγονοι του DocType: Custom DocPerm,Role,Ρόλος apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +21,Settings...,Ρυθμίσεις... apps/frappe/frappe/utils/data.py +507,Cent,Σεντ @@ -794,10 +819,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed DocType: Workflow State,Stop,Διακοπή DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Σύνδεσμο προς τη σελίδα που θέλετε να ανοίξετε. Αφήστε κενό αν θέλετε να γίνει μια ομάδα γονέων κάνουν. DocType: DocType,Is Single,Είναι μονό -apps/frappe/frappe/core/doctype/user/user.py +766,Sign Up is disabled,Εγγραφείτε είναι απενεργοποιημένη -apps/frappe/frappe/email/queue.py +328,{0} has left the conversation in {1} {2},{0} έχει αποχώρησε από τη συζήτηση στο {1} {2} +apps/frappe/frappe/core/doctype/user/user.py +760,Sign Up is disabled,Εγγραφείτε είναι απενεργοποιημένη +apps/frappe/frappe/email/queue.py +331,{0} has left the conversation in {1} {2},{0} έχει αποχώρησε από τη συζήτηση στο {1} {2} DocType: Blogger,User ID of a Blogger,Αναγνωριστικό χρήστη του blogger -apps/frappe/frappe/core/doctype/user/user.py +306,There should remain at least one System Manager,Θα πρέπει να παραμείνει τουλάχιστον ένας διαχειριστής συστήματος +apps/frappe/frappe/core/doctype/user/user.py +300,There should remain at least one System Manager,Θα πρέπει να παραμείνει τουλάχιστον ένας διαχειριστής συστήματος DocType: GCalendar Account,Authorization Code,Κωδικός Εξουσιοδότησης DocType: PayPal Settings,Mention transaction completion page URL,Αναφέρουμε συναλλαγή URL της σελίδας ολοκλήρωση DocType: Help Article,Expert,Ειδικός @@ -818,8 +843,11 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","Για να προσθέσετε δυναμικά το θέμα, χρησιμοποιήστε τις ετικέτες όπως Τζίντζα
 {{ doc.name }} Delivered 
" -DocType: Report,Apply User Permissions,Εφαρμογή δικαιωμάτων χρηστών +apps/frappe/frappe/desk/search.py +19,Invalid Search Field {0},Μη έγκυρο πεδίο αναζήτησης {0} DocType: User,Modules HTML,Ενότητες HTML +DocType: Email Account,"Track if your email has been opened by the recipient. +
+Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Παρακολουθήστε αν το email σας έχει ανοιχτεί από τον παραλήπτη.
Σημείωση: Εάν στέλνετε σε πολλούς παραλήπτες, ακόμη και αν ένας παραλήπτης διαβάζει το μήνυμα ηλεκτρονικού ταχυδρομείου, θα θεωρείται "Άνοιγμα"" apps/frappe/frappe/public/js/frappe/ui/field_group.js +91,Missing Values Required,Οι τιμές που λείπουν είναι απαραίτητες DocType: DocType,Other Settings,άλλες ρυθμίσεις DocType: Data Migration Connector,Frappe,Φραπέ @@ -829,15 +857,13 @@ DocType: Customize Form,Change Label (via Custom Translation),Αλλαγή Label apps/frappe/frappe/share.py +137,No permission to {0} {1} {2},Δεν έχετε άδεια για {0} {1} {2} DocType: Address,Permanent,Μόνιμος apps/frappe/frappe/public/js/frappe/form/workflow.js +44,Note: Other permission rules may also apply,Σημείωση: Άλλοι κανόνες άδεια μπορεί επίσης να εφαρμοστεί -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/templates/emails/print_link.html +2,View this in your browser,Δείτε αυτό στο πρόγραμμα περιήγησής σας DocType: DocType,Search Fields,Πεδία αναζήτησης DocType: System Settings,OTP Issuer Name,Όνομα Εκδότη OTP DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Φορέας Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Δεν έχει επιλεγεί το έγγραφο apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr -apps/frappe/frappe/public/js/frappe/dom.js +291,You are connected to internet.,Είστε συνδεδεμένοι στο Διαδίκτυο. +apps/frappe/frappe/public/js/frappe/dom.js +301,You are connected to internet.,Είστε συνδεδεμένοι στο Διαδίκτυο. DocType: Social Login Key,Enable Social Login,Ενεργοποίηση της κοινωνικής σύνδεσης DocType: Event,Event,Συμβάν apps/frappe/frappe/public/js/frappe/views/communication.js +651,"On {0}, {1} wrote:","Στις {0}, ο {1} έγραψε:" @@ -852,7 +878,7 @@ DocType: Print Settings,In points. Default is 9.,Στα σημεία. Η προ DocType: OAuth Client,Redirect URIs,ανακατεύθυνση URIs apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +47,Submiting {0},Υποβολή {0} DocType: Workflow State,heart,Καρδιά -apps/frappe/frappe/www/update-password.html +64,Old Password Required.,Απαιτείται παλιός κωδικός πρόσβασης. +apps/frappe/frappe/www/update-password.html +56,Old Password Required.,Απαιτείται παλιός κωδικός πρόσβασης. DocType: Role,Desk Access,Επιφάνεια Access DocType: Workflow State,minus,Πλην DocType: S3 Backup Settings,Bucket,Κάδος @@ -860,8 +886,9 @@ apps/frappe/frappe/public/js/frappe/request.js +167,Server Error: Please check y apps/frappe/frappe/public/js/frappe/ui/capture.js +152,Unable to load camera.,Δεν είναι δυνατή η φόρτωση της κάμερας. apps/frappe/frappe/core/doctype/user/user.py +207,Welcome email sent,Το email καλωσορίσματος εστάλη. apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +354,Let's prepare the system for first use.,Ας προετοιμαστεί το σύστημα για την πρώτη χρήση. -apps/frappe/frappe/core/doctype/user/user.py +773,Already Registered,Ήδη εγγεγραμμένος +apps/frappe/frappe/core/doctype/user/user.py +767,Already Registered,Ήδη εγγεγραμμένος DocType: System Settings,Float Precision,Ακρίβεια αριθμού κινητής υποδιαστολής +DocType: Notification,Sender Email,Email αποστολέα apps/frappe/frappe/core/doctype/page/page.py +41,Only Administrator can edit,Μόνο διαχειριστής μπορεί να επεξεργαστεί apps/frappe/frappe/public/js/frappe/upload.js +87,Filename,Ονομα αρχείου DocType: DocType,Editable Grid,Επεξεργάσιμη Grid @@ -872,17 +899,19 @@ DocType: Communication,Clicked,Έγινε κλικ apps/frappe/frappe/public/js/legacy/form.js +995,No permission to '{0}' {1},Δεν έχετε άδεια για '{0} ' {1} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Προγραμματισμένη για να στείλετε DocType: DocType,Track Seen,Track Seen -apps/frappe/frappe/desk/form/utils.py +64,This method can only be used to create a Comment,Αυτή η μέθοδος μπορεί να χρησιμοποιηθεί μόνο για να δημιουργήσει ένα σχόλιο +DocType: Dropbox Settings,File Backup,Αρχείο αντιγράφων ασφαλείας +apps/frappe/frappe/desk/form/utils.py +67,This method can only be used to create a Comment,Αυτή η μέθοδος μπορεί να χρησιμοποιηθεί μόνο για να δημιουργήσει ένα σχόλιο DocType: Kanban Board Column,orange,πορτοκάλι apps/frappe/frappe/public/js/frappe/list/list_renderer.js +629,No {0} found,Δεν βρέθηκαν {0} apps/frappe/frappe/config/setup.py +259,Add custom forms.,Προσθέστε προσαρμοσμένες φόρμες. apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} στο {2} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +449,submitted this document,υπέβαλε αυτό το έγγραφο +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +456,submitted this document,υπέβαλε αυτό το έγγραφο apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Το σύστημα παρέχει πολλούς προκαθορισμένες ρόλους. Μπορείτε να προσθέσετε νέους ρόλους για να ορίσετε ειδικότερα δικαιώματα . DocType: Communication,CC,CC DocType: Country,Geo,Γεωγραφία +DocType: Data Migration Run,Trigger Name,Όνομα ενεργοποίησης DocType: Blog Category,Blog Category,Κατηγορία blog -apps/frappe/frappe/model/mapper.py +120,Cannot map because following condition fails: ,Δεν είναι δυνατή η χαρτογράφηση γιατί ακόλουθο όρο αποτυγχάνει: +apps/frappe/frappe/model/mapper.py +123,Cannot map because following condition fails: ,Δεν είναι δυνατή η χαρτογράφηση γιατί ακόλουθο όρο αποτυγχάνει: DocType: Role Permission for Page and Report,Roles HTML,Html ρόλων apps/frappe/frappe/website/doctype/website_settings/website_settings.js +10,Select a Brand Image first.,Επιλέξτε πρώτα μια Brand Image. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,Ενεργός @@ -906,16 +935,17 @@ DocType: Address,Other Territory,Άλλα εδάφη ,Messages,Μηνύματα apps/frappe/frappe/config/website.py +83,Portal,Πύλη DocType: Email Account,Use Different Email Login ID,Χρησιμοποιήστε διαφορετικό αναγνωριστικό σύνδεσης ηλεκτρονικού ταχυδρομείου -apps/frappe/frappe/desk/query_report.py +84,Must specify a Query to run,Πρέπει να ορίσετε ένα ερώτημα για να τρέξει +apps/frappe/frappe/desk/query_report.py +48,Must specify a Query to run,Πρέπει να ορίσετε ένα ερώτημα για να τρέξει apps/frappe/frappe/integrations/doctype/braintree_settings/braintree_settings.py +65,"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Φαίνεται ότι υπάρχει πρόβλημα με τη διαμόρφωση του διακομιστή braintree. Μην ανησυχείτε, σε περίπτωση αποτυχίας, το ποσό θα επιστραφεί στο λογαριασμό σας." apps/frappe/frappe/www/me.html +25,Manage Third Party Apps,Διαχείριση εφαρμογών τρίτου μέρους apps/frappe/frappe/config/setup.py +76,"Language, Date and Time settings","Γλώσσα, ρυθμίσεις ημερομηνίας και ώρας" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions,Ρύθμιση> Δικαιώματα χρήστη DocType: User Email,User Email,Ο χρήστης E-mail DocType: Event,Saturday,Σάββατο DocType: User,Represents a User in the system.,Αντιπροσωπεύει ένα χρήστη στο σύστημα. DocType: Communication,Label,Ετικέτα -apps/frappe/frappe/desk/form/assign_to.py +145,"The task {0}, that you assigned to {1}, has been closed.","Το έργο {0}, που έχετε αντιστοιχίσει {1}, έχει κλείσει." -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +282,Please close this window,Κλείστε αυτό το παράθυρο +apps/frappe/frappe/desk/form/assign_to.py +148,"The task {0}, that you assigned to {1}, has been closed.","Το έργο {0}, που έχετε αντιστοιχίσει {1}, έχει κλείσει." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +291,Please close this window,Κλείστε αυτό το παράθυρο DocType: Print Format,Print Format Type,Τύπος μορφοποίησης εκτύπωσης DocType: Newsletter,A Lead with this Email Address should exist,Μια Σύσταση με αυτή την διεύθυνση ηλεκτρονικού ταχυδρομείου θα πρέπει να υπάρχει apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +7,Open Source Applications for the Web,Εφαρμογές Ανοικτού Κώδικα για το Web @@ -931,8 +961,8 @@ DocType: Data Export,Excel,Προέχω apps/frappe/frappe/templates/emails/password_update.html +2,Your password has been updated. Here is your new password,Ο κωδικός σας έχει ενημερωθεί. Εδώ είναι ο νέος κωδικός σας DocType: Email Account,Auto Reply Message,Μήνυμα αυτόματης απάντησης DocType: Feedback Trigger,Condition,Συνθήκη -apps/frappe/frappe/utils/data.py +619,{0} hours ago,Πριν από {0} ώρες -apps/frappe/frappe/utils/data.py +629,1 month ago,Πριν από 1 μηνά +apps/frappe/frappe/utils/data.py +621,{0} hours ago,Πριν από {0} ώρες +apps/frappe/frappe/utils/data.py +631,1 month ago,Πριν από 1 μηνά DocType: Contact,User ID,ID χρήστη DocType: Communication,Sent,Εστάλη DocType: Address,Kerala,Κεράλα @@ -951,7 +981,7 @@ DocType: GSuite Templates,Related DocType,Σχετικό πρότυπο DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Επεξεργασία για να προσθέσετε περιεχόμενο apps/frappe/frappe/public/js/frappe/views/communication.js +101,Select Languages,Επιλέξτε Γλώσσες apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +41,Card Details,Στοιχεία κάρτας -apps/frappe/frappe/__init__.py +538,No permission for {0},Δεν άδεια για {0} +apps/frappe/frappe/__init__.py +564,No permission for {0},Δεν άδεια για {0} DocType: DocType,Advanced,Για προχωρημένους apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +79,Seems API Key or API Secret is wrong !!!,Φαίνεται κλειδί API ή API μυστικό είναι λάθος !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Παραπομπή: {0} {1} @@ -961,13 +991,13 @@ DocType: Address,Address Type,Τύπος διεύθυνσης apps/frappe/frappe/email/receive.py +94,Invalid User Name or Support Password. Please rectify and try again.,Μη έγκυρο όνομα χρήστη ή κωδικός υποστήριξης. Παρακαλώ διορθώστε και δοκιμάστε ξανά . DocType: Email Account,Yahoo Mail,Yahoo mail apps/frappe/frappe/limits.py +77,Your subscription will expire tomorrow.,Η συνδρομή σας θα λήξει αύριο. -apps/frappe/frappe/email/doctype/notification/notification.py +198,Error in Notification,Σφάλμα στην ειδοποίηση +apps/frappe/frappe/email/doctype/notification/notification.py +202,Error in Notification,Σφάλμα στην ειδοποίηση apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Κυρία apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Ενημερώθηκε {0}: {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Κύρια εγγραφή DocType: DocType,User Cannot Create,Ο χρήστης δεν μπορεί να δημιουργήσει apps/frappe/frappe/core/doctype/file/file.py +320,Folder {0} does not exist,Φάκελο {0} δεν υπάρχει -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +307,Dropbox access is approved!,πρόσβαση Dropbox έχει εγκριθεί! +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +316,Dropbox access is approved!,πρόσβαση Dropbox έχει εγκριθεί! DocType: Customize Form,Enter Form Type,Εισάγετε τύπο φόρμας apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +13,Missing parameter Kanban Board Name,Λείπει η παράμετρος Kanban Board Name apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Δεν υπάρχουν αρχεία ετικέτα. @@ -976,14 +1006,16 @@ apps/frappe/frappe/public/js/frappe/request.js +31,You are not connected to Inte DocType: User,Send Password Update Notification,Αποστολή Κωδικού Ειδοποίηση ενημέρωσης apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Επιτρέποντας DocType , DocType . Να είστε προσεκτικοί !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Προσαρμοσμένες μορφές για την εκτύπωση, e-mail" -apps/frappe/frappe/public/js/frappe/desk.js +471,Updated To New Version,Ενημέρωση στη νέα έκδοση +apps/frappe/frappe/public/js/frappe/desk.js +475,Updated To New Version,Ενημέρωση στη νέα έκδοση DocType: Custom Field,Depends On,Εξαρτάται από DocType: Kanban Board Column,Green,Πράσινος DocType: Custom DocPerm,Additional Permissions,Πρόσθετα δικαιώματα DocType: Email Account,Always use Account's Email Address as Sender,Πάντα να χρησιμοποιείτε Λογαριασμού διεύθυνση ηλεκτρονικού ταχυδρομείου ως αποστολέα apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Συνδεθείτε για να σχολιάσετε -apps/frappe/frappe/core/doctype/data_import/importer.py +25,Start entering data below this line,Ξεκινήστε την εισαγωγή δεδομένων κάτω από αυτή τη γραμμή -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +504,changed values for {0},μεταβολή των τιμών για {0} +apps/frappe/frappe/core/doctype/data_import/importer.py +24,Start entering data below this line,Ξεκινήστε την εισαγωγή δεδομένων κάτω από αυτή τη γραμμή +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +511,changed values for {0},μεταβολή των τιμών για {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +55,"Email ID must be unique, Email Account already exists \ + for {0}","Το αναγνωριστικό ηλεκτρονικού ταχυδρομείου πρέπει να είναι μοναδικό, ο λογαριασμός ηλεκτρονικού ταχυδρομείου υπάρχει ήδη \ για {0}" DocType: Workflow State,retweet,Retweet apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +23,Customize...,Προσαρμογή ... DocType: Print Format,Align Labels to the Right,Ευθυγραμμίστε τις ετικέτες στα δεξιά @@ -1002,39 +1034,41 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +43,Editing Row,Επε DocType: Workflow Action Master,Workflow Action Master,Κύρια εγγραφή ενέργειας ροής εργασίας DocType: Custom Field,Field Type,Τύπος πεδίου apps/frappe/frappe/utils/data.py +537,only.,Μόνο. -apps/frappe/frappe/core/doctype/user/user.py +1024,OTP secret can only be reset by the Administrator.,Το μυστικό OTP μπορεί να επαναφερθεί μόνο από το διαχειριστή. +apps/frappe/frappe/core/doctype/user/user.py +1019,OTP secret can only be reset by the Administrator.,Το μυστικό OTP μπορεί να επαναφερθεί μόνο από το διαχειριστή. apps/frappe/frappe/utils/password_strength.py +135,Avoid years that are associated with you.,Αποφύγετε χρόνια που σχετίζονται με σας. apps/frappe/frappe/config/setup.py +44,Restrict user for specific document,Περιορίστε τον χρήστη για συγκεκριμένο έγγραφο DocType: GSuite Templates,GSuite Templates,Πρότυπα GSuite +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +669,Descending,Φθίνουσα apps/frappe/frappe/utils/goal.py +110,Goal,Στόχος apps/frappe/frappe/email/receive.py +60,Invalid Mail Server. Please rectify and try again.,Άκυρος διακομιστής mail. Παρακαλώ διορθώστε και δοκιμάστε ξανά . DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","Για τις συνδέσεις, εισάγετε το DocType και εύρος. Για Επιλογή, μπείτε στη λίστα των επιλογών, το καθένα σε μια νέα γραμμή." DocType: Workflow State,film,Ταινία -apps/frappe/frappe/model/db_query.py +415,No permission to read {0},Δεν έχετε άδεια για να διαβάσετε {0} +apps/frappe/frappe/model/db_query.py +447,No permission to read {0},Δεν έχετε άδεια για να διαβάσετε {0} apps/frappe/frappe/config/desktop.py +8,Tools,Εργαλεία apps/frappe/frappe/utils/password_strength.py +134,Avoid recent years.,Αποφύγετε τα τελευταία χρόνια. apps/frappe/frappe/utils/nestedset.py +240,Multiple root nodes not allowed.,Δεν επιτρέπονται πολλαπλοί κόμβοι ρίζες. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Εάν είναι ενεργοποιημένη, οι χρήστες θα ενημερώνονται κάθε φορά που θα συνδεθούν. Εάν δεν είναι ενεργοποιημένη, οι χρήστες θα ειδοποιηθούν μόνο μία φορά." -apps/frappe/frappe/core/doctype/doctype/doctype.py +648,Invalid {0} condition,Μη έγκυρη προϋπόθεση {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +691,Invalid {0} condition,Μη έγκυρη προϋπόθεση {0} DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Αν επιλεγεί, οι χρήστες δεν θα δείτε το παράθυρο διαλόγου Επιβεβαίωση πρόσβασης." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +542,ID field is required to edit values using Report. Please select the ID field using the Column Picker,Πεδίο απαιτείται ταυτότητα για να επεξεργαστείτε τις τιμές χρησιμοποιώντας Έκθεση. Παρακαλώ επιλέξτε το πεδίο ID χρησιμοποιώντας τον επιλογέα Στήλη apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Σχόλια -apps/frappe/frappe/public/js/frappe/dom.js +264,Confirm,Επιβεβαίωση -apps/frappe/frappe/www/login.html +58,Forgot Password?,Ξέχασες τον κωδικό? +apps/frappe/frappe/public/js/frappe/dom.js +274,Confirm,Επιβεβαίωση +apps/frappe/frappe/www/login.html +59,Forgot Password?,Ξέχασες τον κωδικό? DocType: System Settings,yyyy-mm-dd,Εεεε-μμ-ηη apps/frappe/frappe/desk/report/todo/todo.py +19,ID,ταυτότητα apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +100,Server Error,Σφάλμα Διακομιστή -apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Είσοδος απαιτείται ταυτότητα +apps/frappe/frappe/email/doctype/email_account/email_account.py +46,Login Id is required,Είσοδος απαιτείται ταυτότητα DocType: Website Slideshow,Website Slideshow,Παρουσίαση ιστοσελίδας apps/frappe/frappe/public/js/frappe/form/grid.js +58,No Data,Δεν υπάρχουν δεδομένα DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Σύνδεσμος που είναι η αρχική σελίδα του ιστοτόπου. Τυπικοί σύνδεσμοι (index, login, τα προϊόντα, το blog, προφίλ, επικοινωνία)" -apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Απέτυχε ο έλεγχος ταυτότητας, ενώ λαμβάνετε μηνύματα ηλεκτρονικού ταχυδρομείου από το λογαριασμό email {0}. Μήνυμα από το διακομιστή: {1}" +apps/frappe/frappe/email/doctype/email_account/email_account.py +173,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Απέτυχε ο έλεγχος ταυτότητας, ενώ λαμβάνετε μηνύματα ηλεκτρονικού ταχυδρομείου από το λογαριασμό email {0}. Μήνυμα από το διακομιστή: {1}" DocType: Custom Field,Custom Field,Προσαρμοσμένο πεδίο -apps/frappe/frappe/email/doctype/notification/notification.py +37,Please specify which date field must be checked,Παρακαλώ ορίστε ποιο πεδίο ημερομηνίας πρέπει να ελεγχθεί +apps/frappe/frappe/email/doctype/notification/notification.py +36,Please specify which date field must be checked,Παρακαλώ ορίστε ποιο πεδίο ημερομηνίας πρέπει να ελεγχθεί DocType: Custom DocPerm,Set User Permissions,Ορίστε τα δικαιώματα χρήστη apps/frappe/frappe/permissions.py +200,Not allowed for {0} = {1},Δεν επιτρέπεται για {0} = {1} DocType: Email Account,Email Account Name,Όνομα λογαριασμού ηλεκτρονικού ταχυδρομείου -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +257,Something went wrong while generating dropbox access token. Please check error log for more details.,Κάτι πήγε στραβά κατά τη δημιουργία του διακριτικού πρόσβασης στο dropbox. Ελέγξτε το αρχείο καταγραφής σφαλμάτων για περισσότερες λεπτομέρειες. +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +266,Something went wrong while generating dropbox access token. Please check error log for more details.,Κάτι πήγε στραβά κατά τη δημιουργία του διακριτικού πρόσβασης στο dropbox. Ελέγξτε το αρχείο καταγραφής σφαλμάτων για περισσότερες λεπτομέρειες. DocType: File,old_parent,Παλαιός γονέας apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",Ενημερωτικά δελτία για επαφές.συστάσεις. DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","Π.Χ. ""Υποστήριξη "","" Πωλήσεις "","" jerry yang """ @@ -1043,19 +1077,20 @@ DocType: DocField,Description,Περιγραφή DocType: Print Settings,Repeat Header and Footer in PDF,Επαναλάβετε και υποσέλιδο σε μορφή PDF DocType: Address Template,Is Default,Είναι προεπιλογή DocType: Data Migration Connector,Connector Type,Τύπος συνδέσμου -apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,Στήλη Όνομα δεν μπορεί να είναι κενό -apps/frappe/frappe/email/doctype/email_account/email_account.py +253,Error while connecting to email account {0},Σφάλμα κατά τη σύνδεση με λογαριασμό ηλεκτρονικού ταχυδρομείου {0} +apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +24,Column Name cannot be empty,Στήλη Όνομα δεν μπορεί να είναι κενό +apps/frappe/frappe/email/doctype/email_account/email_account.py +255,Error while connecting to email account {0},Σφάλμα κατά τη σύνδεση με λογαριασμό ηλεκτρονικού ταχυδρομείου {0} DocType: Workflow State,fast-forward,Fast-forward DocType: Communication,Communication,Επικοινωνία apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Ελέγξτε τις στήλες για να επιλέξετε, σύρετε για να αλλάξετε την σειρά." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +807,This is PERMANENT action and you cannot undo. Continue?,Αυτό είναι μόνιμη δράση και δεν μπορείτε να αναιρέσετε. Συνέχεια; apps/frappe/frappe/templates/emails/new_message.html +4,Login and view in Browser,Συνδεθείτε και προβάλετε στο πρόγραμμα περιήγησης DocType: Event,Every Day,Κάθε μέρα DocType: LDAP Settings,Password for Base DN,Κωδικό πρόσβασης για το DN Βάσης apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Πίνακας πεδίο -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +187,Columns based on,Στήλες με βάση +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +242,Columns based on,Στήλες με βάση apps/frappe/frappe/config/integrations.py +108,Enter keys to enable integration with Google GSuite,Εισαγάγετε πλήκτρα για να ενεργοποιήσετε την ενοποίηση με το Google GSuite DocType: Workflow State,move,Μεταφορά -apps/frappe/frappe/model/document.py +1254,Action Failed,Ενέργεια απέτυχε +apps/frappe/frappe/model/document.py +1255,Action Failed,Ενέργεια απέτυχε DocType: List Filter,For User,για χρήστη DocType: View log,View log,Προβολή αρχείου καταγραφής apps/frappe/frappe/public/js/frappe/views/treeview.js +380,Chart of Accounts,Λογιστικό σχέδιο @@ -1063,11 +1098,11 @@ DocType: Address,Assam,Assam apps/frappe/frappe/core/page/usage_info/usage_info.html +5,You have {0} days left in your subscription,Έχετε αφήσει {0} ημέρες στη συνδρομή σας apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,Ο λογαριασμός εξερχόμενου ηλεκτρονικού ταχυδρομείου δεν είναι σωστός DocType: Transaction Log,Chaining Hash,Αλυσίδα με αλυσίδα -apps/frappe/frappe/core/doctype/user/user.py +778,Temperorily Disabled,άτομα με ειδικές ανάγκες Temperorily +apps/frappe/frappe/core/doctype/user/user.py +772,Temperorily Disabled,άτομα με ειδικές ανάγκες Temperorily apps/frappe/frappe/contacts/doctype/contact/contact.py +85,Please set Email Address,Παρακαλούμε να ορίσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου DocType: System Settings,Date and Number Format,Ημερομηνία και μορφή αριθμών -apps/frappe/frappe/model/document.py +1055,one of,Ένας από -apps/frappe/frappe/public/js/frappe/desk.js +150,Checking one moment,Έλεγχος μια στιγμή +apps/frappe/frappe/model/document.py +1056,one of,Ένας από +apps/frappe/frappe/public/js/frappe/desk.js +154,Checking one moment,Έλεγχος μια στιγμή apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +21,Show Tags,Δείτε τις ετικέτες DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Εάν επιλεγεί η άδεια χρήσης αυστηρού χρήστη και η άδεια χρήστη είναι ορισμένη για ένα έγγραφο τύπου DocType για έναν χρήστη, τότε όλα τα έγγραφα όπου η τιμή του συνδέσμου είναι κενή, δεν θα εμφανίζονται στον εν λόγω χρήστη" DocType: Address,Billing,Χρέωση @@ -1078,7 +1113,7 @@ DocType: User,Middle Name (Optional),Πατρώνυμο (προαιρετικό) apps/frappe/frappe/public/js/frappe/request.js +118,Not Permitted,Δεν επιτρέπεται apps/frappe/frappe/public/js/frappe/ui/field_group.js +92,Following fields have missing values:,Μετά πεδία έχουν τις τιμές που λείπουν: apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py +29,First Transaction,Πρώτη συναλλαγή -apps/frappe/frappe/app.py +164,You do not have enough permissions to complete the action,Δεν έχετε επαρκή δικαιώματα για την ολοκλήρωση της δράσης +apps/frappe/frappe/app.py +163,You do not have enough permissions to complete the action,Δεν έχετε επαρκή δικαιώματα για την ολοκλήρωση της δράσης apps/frappe/frappe/public/js/frappe/form/link_selector.js +103,No Results,Δεν υπάρχουν αποτελέσματα DocType: System Settings,Security,Ασφάλεια apps/frappe/frappe/email/doctype/newsletter/newsletter.py +54,Scheduled to send to {0} recipients,Προγραμματισμένη για να αποσταλεί σε {0} αποδέκτες @@ -1099,6 +1134,7 @@ DocType: Kanban Board Column,lightblue,γαλάζιο apps/frappe/frappe/integrations/doctype/webhook/webhook.py +46,Same Field is entered more than once,Το ίδιο πεδίο εισάγεται περισσότερες από μία φορές apps/frappe/frappe/templates/includes/list/filters.html +19,clear,σαφής apps/frappe/frappe/desk/doctype/event/event.py +31,Every day events should finish on the same day.,Τα καθημερινά συμβάντα θα πρέπει να ολοκληρώνονται την ίδια ημέρα. +DocType: Prepared Report,Filter Values,Τιμές φίλτρου DocType: Communication,User Tags,Ετικέτες χρηστών DocType: Data Migration Run,Fail,Αποτυγχάνω DocType: Workflow State,download-alt,Download-alt @@ -1106,13 +1142,13 @@ DocType: Data Migration Run,Pull Failed,Το τράβηγμα απέτυχε DocType: Communication,Feedback Request,feedback Αίτηση apps/frappe/frappe/config/setup.py +107,Import Data from CSV / Excel files.,Εισαγωγή δεδομένων από αρχεία CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Ακόλουθα πεδία λείπουν: -apps/frappe/frappe/www/login.html +28,Sign in,Συνδεθείτε +apps/frappe/frappe/www/login.html +29,Sign in,Συνδεθείτε apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +50,Cancelling {0},Ακύρωση {0} DocType: Web Page,Main Section,Κύριο τμήμα DocType: Page,Icon,Εικονίδιο -apps/frappe/frappe/core/doctype/user/user.py +938,"Hint: Include symbols, numbers and capital letters in the password","Συμβουλή: Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης" +apps/frappe/frappe/core/doctype/user/user.py +933,"Hint: Include symbols, numbers and capital letters in the password","Συμβουλή: Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης" DocType: DocField,Allow in Quick Entry,Να επιτρέπεται στη Γρήγορη Καταχώρηση -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +528,PDF,PDF +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +628,PDF,PDF DocType: System Settings,dd/mm/yyyy,Ηη/μμ/εεεε apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite script test,Δοκιμή σεναρίου GSuite DocType: System Settings,Backups,αντίγραφα ασφαλείας @@ -1129,23 +1165,24 @@ apps/frappe/frappe/model/workflow.py +73,Not a valid Workflow Action,Δεν εί DocType: Footer Item,Target,Στόχος DocType: System Settings,Number of Backups,Αριθμός αντιγράφων ασφαλείας DocType: Website Settings,Copyright,Πνευματική ιδιοκτησία -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +58,Go,Πάω +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +59,Go,Πάω DocType: OAuth Authorization Code,Invalid,Άκυρος DocType: ToDo,Due Date,Ημερομηνία λήξης προθεσμίας apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +145,Quarter Day,Ημέρα τρίμηνο DocType: Website Settings,Hide Footer Signup,Απόκρυψη Υποσέλιδο Εγγραφή -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +451,cancelled this document,ακυρωθεί αυτό το έγγραφο +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +458,cancelled this document,ακυρωθεί αυτό το έγγραφο apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Γράψτε ένα αρχείο python στον ίδιο φάκελο όπου αυτό αποθηκεύεται και επέστρεψε στήλη και αποτέλεσμα. +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +31,Add to table,Προσθήκη στον πίνακα DocType: DocType,Sort Field,Πεδίο ταξινόμησης DocType: Razorpay Settings,Razorpay Settings,Ρυθμίσεις Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +263,Edit Filter,Επεξεργασία φίλτρου -apps/frappe/frappe/core/doctype/doctype/doctype.py +462,Field {0} of type {1} cannot be mandatory,Το πεδίο {0} με τύπο {1} δεν μπορεί να είναι υποχρεωτικό +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +265,Edit Filter,Επεξεργασία φίλτρου +apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Field {0} of type {1} cannot be mandatory,Το πεδίο {0} με τύπο {1} δεν μπορεί να είναι υποχρεωτικό apps/frappe/frappe/public/js/frappe/ui/slides.js +29,Add More,Πρόσθεσε περισσότερα DocType: System Settings,Session Expiry Mobile,Συνεδρία λήξης Κινητό apps/frappe/frappe/utils/password.py +66,Incorrect User or Password,Λανθασμένος χρήστης ή κωδικός πρόσβασης apps/frappe/frappe/templates/includes/search_box.html +18,Search results for,Αποτελέσματα αναζήτησης για apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py +28,Please enter Access Token URL,Πληκτρολογήστε τη διεύθυνση URL πρόσβασης Token -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +820,Select To Download:,Επιλέξτε για να κατεβάσετε : +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +821,Select To Download:,Επιλέξτε για να κατεβάσετε : DocType: Notification,Slack,Χαλαρότητα DocType: Custom DocPerm,If user is the owner,Εάν ο χρήστης είναι ο ιδιοκτήτης ,Activity,Δραστηριότητα @@ -1154,7 +1191,7 @@ DocType: User Permission,Allow,Επιτρέπω apps/frappe/frappe/utils/password_strength.py +117,Let's avoid repeated words and characters,Ας αποφεύγουν επαναλαμβανόμενες λέξεις και χαρακτήρες DocType: Communication,Delayed,Καθυστερημένη apps/frappe/frappe/config/setup.py +140,List of backups available for download,Κατάλογος των αντιγράφων ασφαλείας διαθέσιμο για download -apps/frappe/frappe/www/login.html +71,Sign up,Εγγραφή +apps/frappe/frappe/www/login.html +72,Sign up,Εγγραφή apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +189,Row {0}: Not allowed to disable Mandatory for standard fields,Γραμμή {0}: Δεν επιτρέπεται να απενεργοποιήσετε την επιλογή Υποχρεωτική για τυπικά πεδία DocType: Test Runner,Output,Παραγωγή DocType: Notification,Set Property After Alert,Ορισμός ιδιότητας μετά την ειδοποίηση @@ -1165,7 +1202,6 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Data Export,File Type,Τύπος αρχείου DocType: Workflow State,leaf,Φύλλο DocType: Portal Menu Item,Portal Menu Item,Portal Στοιχείο Μενού -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +559,Clear User Settings,Εκκαθάριση ρυθμίσεων χρήστη DocType: Contact Us Settings,Email ID,Email ID DocType: Activity Log,Keep track of all update feeds,Παρακολουθήστε όλες τις ροές ενημέρωσης DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Ο κατάλογος των πόρων που θα έχει η εφαρμογή πελάτη πρόσβαση σε αφού ο χρήστης το επιτρέπει.
π.χ. έργου @@ -1175,7 +1211,7 @@ DocType: Error Snapshot,Timestamp,Χρονοθέτηση DocType: Patch Log,Patch Log,Αρχείο καταγραφής patch DocType: Data Migration Mapping,Local Primary Key,Τοπικό κύριο κλειδί apps/frappe/frappe/utils/bot.py +164,Hello {0},Γεια σας {0} -apps/frappe/frappe/core/doctype/user/user.py +266,Welcome to {0},Καλώς να {0} +apps/frappe/frappe/core/doctype/user/user.py +263,Welcome to {0},Καλώς να {0} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Προσθήκη apps/frappe/frappe/www/me.html +40,Profile,Προφίλ DocType: Communication,Sent or Received,Απεσταλμένα ή ληφθέντα @@ -1199,7 +1235,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +116,At lea apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +14,Setup for,Ρύθμιση για DocType: Workflow State,minus-sign,Minus-sign apps/frappe/frappe/public/js/frappe/request.js +108,Not Found,Δεν βρέθηκε -apps/frappe/frappe/www/printview.py +200,No {0} permission,Δεν υπάρχει το δικαίωμα {0} +apps/frappe/frappe/www/printview.py +199,No {0} permission,Δεν υπάρχει το δικαίωμα {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +92,Export Custom Permissions,Εξαγωγή Προσαρμοσμένη Δικαιώματα DocType: Data Export,Fields Multicheck,Πεδία Multilack DocType: Activity Log,Login,Σύνδεση @@ -1207,7 +1243,7 @@ DocType: Web Form,Payments,Πληρωμές apps/frappe/frappe/www/qrcode.html +9,Hi {0},Γεια σας {0} DocType: System Settings,Enable Scheduled Jobs,Ενεργοποίηση χρονοπρογραμματισμένων εργασιών apps/frappe/frappe/core/doctype/data_import/exporter.py +62,Notes:,Σημειώσεις: -apps/frappe/frappe/www/message.html +65,Status: {0},Κατάσταση: {0} +apps/frappe/frappe/www/message.html +38,Status: {0},Κατάσταση: {0} DocType: DocShare,Document Name,Όνομα εγγράφου apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Επισήμανση ως ανεπιθύμητο DocType: ToDo,Medium,Μέσο @@ -1225,7 +1261,7 @@ apps/frappe/frappe/model/naming.py +210,Name of {0} cannot be {1},Το όνομ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Από ημερομηνία apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Επιτυχία apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},Feedback Αίτηση {0} έχει αποσταλεί στο {1} -apps/frappe/frappe/public/js/frappe/desk.js +390,Session Expired,Η συνεδρία έληξε +apps/frappe/frappe/public/js/frappe/desk.js +394,Session Expired,Η συνεδρία έληξε DocType: Kanban Board Column,Kanban Board Column,Kanban Διοικητικό Στήλη apps/frappe/frappe/utils/password_strength.py +98,Straight rows of keys are easy to guess,Ευθείες γραμμές των πλήκτρων είναι εύκολο να μαντέψει DocType: Communication,Phone No.,Αριθμός τηλεφώνου @@ -1248,17 +1284,17 @@ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +59,{type} room must have apps/frappe/frappe/model/rename_doc.py +433,Ignored: {0} to {1},Αγνοείται: {0} έως {1} DocType: Address,Gujarat,Γκουτζαράτ apps/frappe/frappe/config/setup.py +82,Log of error on automated events (scheduler).,Αρχείο καταγραφής σφάλματος για αυτοματοποιημένα συμβάντα (scheduler). -apps/frappe/frappe/utils/csvutils.py +80,Not a valid Comma Separated Value (CSV File),Μη έγκυρο αρχείο διαχωρισμένο με κόμματα (csv αρχείο) +apps/frappe/frappe/utils/csvutils.py +82,Not a valid Comma Separated Value (CSV File),Μη έγκυρο αρχείο διαχωρισμένο με κόμματα (csv αρχείο) DocType: Address,Postal,Ταχυδρομικός DocType: Email Account,Default Incoming,Προεπιλεγμένα εισερχόμενα DocType: Workflow State,repeat,Επανάληψη DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Αν απενεργοποιηθεί, ο ρόλος αυτός θα πρέπει να αφαιρεθεί από όλους τους χρήστες." apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Βοήθεια για αναζήτηση -apps/frappe/frappe/core/doctype/user/user.py +771,Registered but disabled,Εγγεγραμμένοι αλλά άτομα με ειδικές ανάγκες +apps/frappe/frappe/core/doctype/user/user.py +765,Registered but disabled,Εγγεγραμμένοι αλλά άτομα με ειδικές ανάγκες DocType: DocType,Hide Copy,Απόκρυψη αντιγράφου apps/frappe/frappe/public/js/frappe/roles_editor.js +40,Clear all roles,Καταργήστε όλους τους ρόλους -apps/frappe/frappe/model/base_document.py +363,{0} must be unique,{0} Πρέπει να είναι μοναδικό +apps/frappe/frappe/model/base_document.py +372,{0} must be unique,{0} Πρέπει να είναι μοναδικό apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,Row,Γραμμή apps/frappe/frappe/public/js/frappe/views/communication.js +72,"CC, BCC & Email Template","CC, BCC & πρότυπο ηλεκτρονικού ταχυδρομείου" DocType: Data Migration Mapping Detail,Local Fieldname,Τοπικό όνομα πεδίου @@ -1266,7 +1302,7 @@ DocType: User Permission,Linked Doctypes,Συνδεδεμένοι Δόκτυπο DocType: DocType,Track Changes,Παρακολούθηση αλλαγών DocType: Workflow State,Check,Έλεγχος DocType: Chat Profile,Offline,offline -DocType: Razorpay Settings,API Key,Κλειδί API +DocType: User,API Key,Κλειδί API DocType: Email Account,Send unsubscribe message in email,Αποστολή unsubscribe μήνυμα ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/form/toolbar.js +82,Edit Title,Επεξεργασία τίτλου apps/frappe/frappe/desk/page/modules/modules.js +22,Install Apps,εγκαταστήστε Apps @@ -1274,6 +1310,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Τα έγγραφα που σας έχουν ανατεθεί και από εσάς. DocType: User,Email Signature,Υπογραφή email DocType: Website Settings,Google Analytics ID,Google analytics ID +DocType: Web Form,"For help see Client Script API and Examples","Για βοήθεια, ανατρέξτε στο API Client Script and Examples" DocType: Website Theme,Link to your Bootstrap theme,Σύνδεσμος για Bootstrap το θέμα σας DocType: Custom DocPerm,Delete,Διαγραφή apps/frappe/frappe/public/js/frappe/views/treeview.js +242,New {0},Νέο {0} @@ -1283,10 +1320,10 @@ DocType: Print Settings,PDF Page Size,Μέγεθος σελίδας pdf DocType: Data Import,Attach file for Import,Επισύναψη αρχείου για εισαγωγή DocType: Communication,Recipient Unsubscribed,Παραλήπτης Αδιάθετων DocType: Feedback Request,Is Sent,αποστέλλεται -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +68,About,Σχετικά +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +69,About,Σχετικά apps/frappe/frappe/core/doctype/data_import/exporter.py +68,"For updating, you can update only selective columns.","Για ενημέρωση, μπορείτε να ενημερώσετε επιλεκτικές μόνο στήλες." DocType: Chat Token,Country,Χώρα -apps/frappe/frappe/contacts/doctype/address/address.py +135,Addresses,Διευθύνσεις +apps/frappe/frappe/contacts/doctype/address/address.py +136,Addresses,Διευθύνσεις DocType: Communication,Shared,κοινόχρηστο apps/frappe/frappe/public/js/frappe/views/communication.js +97,Attach Document Print,Επισύναψη εκτύπωσης εγγράφου DocType: Bulk Update,Field,Πεδίο @@ -1297,12 +1334,12 @@ DocType: Chat Message,URLs,URLs DocType: Data Migration Run,Total Pages,Συνολικές Σελίδες DocType: DocField,Attach Image,Επισύναψη εικόνας DocType: Workflow State,list-alt,List-alt -apps/frappe/frappe/www/update-password.html +87,Password Updated,Ο κωδικός ενημερώθηκε +apps/frappe/frappe/www/update-password.html +79,Password Updated,Ο κωδικός ενημερώθηκε apps/frappe/frappe/www/qrcode.html +11,Steps to verify your login,Βήματα για την επαλήθευση της σύνδεσής σας apps/frappe/frappe/utils/password.py +50,Password not found,Ο κωδικός πρόσβασης δεν βρέθηκε DocType: Data Migration Mapping,Page Length,Μήκος σελίδας DocType: Email Queue,Expose Recipients,εκθέτουν Παραλήπτες -apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is mandatory for incoming mails,Προσάρτηση να είναι υποχρεωτική για τα εισερχόμενα μηνύματα +apps/frappe/frappe/email/doctype/email_account/email_account.py +62,Append To is mandatory for incoming mails,Προσάρτηση να είναι υποχρεωτική για τα εισερχόμενα μηνύματα DocType: Contact,Salutation,Χαιρετισμός DocType: Communication,Rejected,Απορρίφθηκε apps/frappe/frappe/public/js/frappe/ui/tags.js +112,Remove Tag,Κατάργηση ετικέτας @@ -1313,14 +1350,14 @@ DocType: User,Set New Password,Ορισμός νέου κωδικού πρόσβ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +49,"%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/doctype/doctype/doctype.py +455,Fieldname {0} appears multiple times in rows {1},Το όνομα πεδίου {0} εμφανίζεται πολλαπλές φορές στις γραμμές {1} -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +490,{0} from {1} to {2} in row #{3},{0} από {1} έως {2} στη σειρά # {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +498,Fieldname {0} appears multiple times in rows {1},Το όνομα πεδίου {0} εμφανίζεται πολλαπλές φορές στις γραμμές {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +497,{0} from {1} to {2} in row #{3},{0} από {1} έως {2} στη σειρά # {3} DocType: Communication,Expired,Έληξε apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py +32,Seems token you are using is invalid!,Φαίνεται ότι το διακριτικό που χρησιμοποιείτε δεν είναι έγκυρο! DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Αριθμό των στηλών για ένα πεδίο σε ένα πλέγμα (Σύνολο Στήλες σε ένα πλέγμα πρέπει να είναι μικρότερο από 11) DocType: DocType,System,Σύστημα DocType: Web Form,Max Attachment Size (in MB),Max Συνημμένο Μέγεθος (σε MB) -apps/frappe/frappe/www/login.html +75,Have an account? Login,Έχετε λογαριασμό; Σύνδεση +apps/frappe/frappe/www/login.html +76,Have an account? Login,Έχετε λογαριασμό; Σύνδεση apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Άγνωστη μορφή Εκτύπωση: {0} DocType: Workflow State,arrow-down,Βέλος προς τα κάτω apps/frappe/frappe/model/delete_doc.py +171,User not allowed to delete {0}: {1},Ο χρήστης δεν επιτρέπεται να διαγράψει {0}: {1} @@ -1332,30 +1369,30 @@ DocType: Help Article,Likes,Μου αρέσουν DocType: Website Settings,Top Bar,Top bar DocType: GSuite Settings,Script Code,Κώδικα δέσμης ενεργειών apps/frappe/frappe/core/doctype/user/user.js +136,Create User Email,Δημιουργία ηλεκτρονικού ταχυδρομείου χρήστη -apps/frappe/frappe/core/doctype/doctype/doctype.py +712,No Permissions Specified,Δεν καθορίζονται δικαιώματα +apps/frappe/frappe/core/doctype/doctype/doctype.py +755,No Permissions Specified,Δεν καθορίζονται δικαιώματα apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +299,{0} not found,Το {0} δεν βρέθηκε DocType: Custom Role,Custom Role,Προσαρμοσμένη ρόλος apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Αρχική Σελίδα / φάκελο Test 2 apps/frappe/frappe/public/js/frappe/form/controls/attach.js +48,Please save the document before uploading.,Παρακαλώ να αποθηκεύσετε το έγγραφο πριν από την αποστολή. -apps/frappe/frappe/public/js/frappe/ui/messages.js +213,Enter your password,Εισάγετε τον κωδικό σας +apps/frappe/frappe/public/js/frappe/ui/messages.js +215,Enter your password,Εισάγετε τον κωδικό σας DocType: Dropbox Settings,Dropbox Access Secret,Dropbox access secret DocType: Social Login Key,Social Login Provider,Παροχέας κοινωνικής σύνδεσης apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Προσθέστε άλλο ένα σχόλιο -apps/frappe/frappe/core/doctype/data_import/importer.py +81,No data found in the file. Please reattach the new file with data.,Δεν βρέθηκαν δεδομένα στο αρχείο. Επανατοποθετήστε ξανά το νέο αρχείο με δεδομένα. +apps/frappe/frappe/core/doctype/data_import/importer.py +80,No data found in the file. Please reattach the new file with data.,Δεν βρέθηκαν δεδομένα στο αρχείο. Επανατοποθετήστε ξανά το νέο αρχείο με δεδομένα. apps/frappe/frappe/public/js/frappe/form/toolbar.js +179,Edit DocType,Επεξεργασία DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +160,Unsubscribed from Newsletter,Αδιάθετες από Ενημερωτικό Δελτίο -apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Fold must come before a Section Break,Διπλώστε πρέπει να προηγηθεί μια αλλαγή ενότητας +apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fold must come before a Section Break,Διπλώστε πρέπει να προηγηθεί μια αλλαγή ενότητας apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Υπό ανάπτυξη apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +25,Go to the document,Μεταβείτε στο έγγραφο apps/frappe/frappe/public/js/frappe/model/meta.js +185,Last Modified By,Τροποποιήθηκε τελευταία από apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +179,Customizations Reset,Προσαρμογές προσαρμογών DocType: Workflow State,hand-down,Hand-down DocType: Address,GST State,Κράτος GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +756,{0}: Cannot set Cancel without Submit,{0} : Δεν είναι δυνατή η ακύρωση χωρίς υποβολή +apps/frappe/frappe/core/doctype/doctype/doctype.py +799,{0}: Cannot set Cancel without Submit,{0} : Δεν είναι δυνατή η ακύρωση χωρίς υποβολή DocType: Website Theme,Theme,Θέμα DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Ανακατεύθυνση URI αναγκασμένοι να Auth Code DocType: DocType,Is Submittable,Είναι υποβλητέο -apps/frappe/frappe/core/doctype/communication/comment.py +110,New Mention,Νέα αναφορά +apps/frappe/frappe/core/doctype/communication/comment.py +109,New Mention,Νέα αναφορά apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Η τιμή για ένα πεδίο ελέγχου μπορεί να είναι είτε 0 είτε 1 apps/frappe/frappe/model/document.py +733,Could not find {0},Δεν μπόρεσα να βρω {0} apps/frappe/frappe/core/doctype/data_import/exporter.py +268,Column Labels:,Ετικέτες στήλης: @@ -1375,7 +1412,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +27,Session E DocType: Chat Message,Group,Ομάδα DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Επιλέξτε target = "" _blank "" για να ανοίξει σε μια νέα σελίδα ." apps/frappe/frappe/core/page/usage_info/usage_info.html +60,Database Size:,Μέγεθος βάσης δεδομένων: -apps/frappe/frappe/public/js/frappe/model/model.js +519,Permanently delete {0}?,Οριστική διαγραφή {0} ; +apps/frappe/frappe/public/js/frappe/model/model.js +518,Permanently delete {0}?,Οριστική διαγραφή {0} ; apps/frappe/frappe/core/doctype/file/file.py +168,Same file has already been attached to the record,Το ίδιο αρχείο έχει ήδη επισυναφθεί στην εγγραφή apps/frappe/frappe/model/workflow.py +126,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} δεν είναι έγκυρη κατάσταση ροής εργασίας. Ενημερώστε τη ροή εργασίας σας και δοκιμάστε ξανά. DocType: Workflow State,wrench,Wrench @@ -1389,27 +1426,28 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Πρόσθεσε σχόλιο DocType: DocField,Mandatory,Υποχρεωτικό apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Ενότητα για Εξαγωγή -apps/frappe/frappe/core/doctype/doctype/doctype.py +724,{0}: No basic permissions set,{0}: Δεν ρυθμίστηκαν βασικά δικαιώματα +apps/frappe/frappe/core/doctype/doctype/doctype.py +767,{0}: No basic permissions set,{0}: Δεν ρυθμίστηκαν βασικά δικαιώματα apps/frappe/frappe/limits.py +80,Your subscription will expire on {0}.,Η συνδρομή σας θα λήξει στις {0}. apps/frappe/frappe/utils/backups.py +166,Download link for your backup will be emailed on the following email address: {0},Ο σύνδεσμος λήψης του αντιγράφου ασφαλείας θα σας αποσταλεί στην ακόλουθη διεύθυνση ηλεκτρονικού ταχυδρομείου: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Σημασία των υποβολή, ακύρωση, τροποποίηση" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Εκκρεμότητες DocType: Test Runner,Module Path,Διαδρομή μονάδας DocType: Social Login Key,Identity Details,Στοιχεία ταυτότητας +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +671,Then By (optional),"Στη συνέχεια, με (προαιρετικό)" DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-έκθεση -apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Ανατέθηκε σε {0}: {1} DocType: DocField,Percent,Τοις εκατό apps/frappe/frappe/public/js/frappe/form/linked_with.js +28,Linked With,Συνδέεται με την apps/frappe/frappe/templates/emails/auto_email_report.html +53,Edit Auto Email Report Settings,Επεξεργασία ρυθμίσεων αυτόματης αναφοράς ηλεκτρονικού ταχυδρομείου DocType: Chat Room,Message Count,Καταμέτρηση μηνυμάτων DocType: Workflow State,book,Καταχώρηση +DocType: Communication,Read by Recipient,Διαβάστε από τον παραλήπτη DocType: Website Settings,Landing Page,Σελίδα προσέλευσης apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Σφάλμα στην προσαρμοσμένη δέσμη ενεργειών apps/frappe/frappe/public/js/frappe/form/quick_entry.js +90,{0} Name,{0} Όνομα apps/frappe/frappe/core/page/permission_manager/permission_manager.js +171,No Permissions set for this criteria.,Δεν έχουν οριστεί δικαιώματα για τα εν λόγω κριτήρια. DocType: Auto Email Report,Auto Email Report,Auto Email Έκθεση -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +593,Delete comment?,Διαγραφή σχόλιο; +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +600,Delete comment?,Διαγραφή σχόλιο; DocType: Address Template,This format is used if country specific format is not found,Αυτή η μορφοποίηση χρησιμοποιείται εάν δεν βρεθεί ειδική μορφοποίηση χώρας DocType: System Settings,Allow Login using Mobile Number,Να επιτρέπεται η σύνδεση χρησιμοποιώντας τον αριθμό κινητού τηλεφώνου apps/frappe/frappe/public/js/frappe/request.js +135,You do not have enough permissions to access this resource. Please contact your manager to get access.,Δεν έχετε επαρκή δικαιώματα για να αποκτήσετε πρόσβαση σε αυτόν τον πόρο. Επικοινωνήστε με το διαχειριστή σας για να αποκτήσετε πρόσβαση. @@ -1426,7 +1464,7 @@ DocType: Letter Head,Printing,Εκτύπωση DocType: Workflow State,thumbs-up,Thumbs-up DocType: DocPerm,DocPerm,Άδεια εγγράφου DocType: Print Settings,Fonts,Γραμματοσειρές -apps/frappe/frappe/core/doctype/doctype/doctype.py +510,Precision should be between 1 and 6,Η ακρίβεια πρέπει να είναι μεταξύ 1 και 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +553,Precision should be between 1 and 6,Η ακρίβεια πρέπει να είναι μεταξύ 1 και 6 apps/frappe/frappe/core/doctype/communication/communication.js +190,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +165,and,Και apps/frappe/frappe/templates/emails/auto_email_report.html +47,This report was generated on {0},Αυτή η αναφορά δημιουργήθηκε στις {0} @@ -1438,16 +1476,16 @@ DocType: Auto Email Report,Report Filters,Φίλτρα έκθεση apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +16,now,τώρα DocType: Workflow State,step-backward,Βήμα προς τα πίσω apps/frappe/frappe/utils/boilerplate.py +265,{app_title},{app_title} -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please set Dropbox access keys in your site config,Παρακαλώ ορίστε τα κλειδιά πρόσβασης dropbox στις ρυθμίσεις του site σας +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +248,Please set Dropbox access keys in your site config,Παρακαλώ ορίστε τα κλειδιά πρόσβασης dropbox στις ρυθμίσεις του site σας apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Διαγραφή αυτής της εγγραφής για να επιτρέψει την αποστολή σε αυτήν τη διεύθυνση ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/core/doctype/data_import/exporter.py +67,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Μόνο τα υποχρεωτικά πεδία είναι απαραίτητα για νέες εγγραφές. Μπορείτε να διαγράψετε μη υποχρεωτικές στήλες εάν το επιθυμείτε. -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +335,Unable to update event,Δεν είναι δυνατή η ενημέρωση εκδήλωση -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +119,Payment Complete,Πλήρης πληρωμή +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +380,Unable to update event,Δεν είναι δυνατή η ενημέρωση εκδήλωση +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +134,Payment Complete,Πλήρης πληρωμή apps/frappe/frappe/twofactor.py +209,Verification code has been sent to your registered email address.,Ο κωδικός επαλήθευσης έχει σταλεί στην εγγεγραμμένη διεύθυνση ηλεκτρονικού ταχυδρομείου σας. -apps/frappe/frappe/core/doctype/user/user.py +1031,Throttled,Τραυματισμένος -apps/frappe/frappe/utils/data.py +807,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Το φίλτρο πρέπει να έχει 4 τιμές (doctype, όνομα πεδίου, χειριστής, τιμή): {0}" +apps/frappe/frappe/core/doctype/user/user.py +1026,Throttled,Τραυματισμένος +apps/frappe/frappe/utils/data.py +811,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Το φίλτρο πρέπει να έχει 4 τιμές (doctype, όνομα πεδίου, χειριστής, τιμή): {0}" apps/frappe/frappe/utils/bot.py +89,show,προβολή -apps/frappe/frappe/utils/data.py +858,Invalid field name {0},Μη έγκυρο όνομα πεδίου {0} +apps/frappe/frappe/utils/data.py +863,Invalid field name {0},Μη έγκυρο όνομα πεδίου {0} DocType: Address Template,Address Template,Πρότυπο διεύθυνσης DocType: Workflow State,text-height,Text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Χαρτογράφηση σχεδίου μετεγκατάστασης δεδομένων @@ -1457,13 +1495,14 @@ DocType: Workflow State,map-marker,Σήμανση χάρτη apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Υποβολή Θέματος DocType: Event,Repeat this Event,Επανάληψη αυτού του συμβάντος DocType: Address,Maintenance User,Χρήστης συντήρησης +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Sorting Preferences,Προτιμήσεις ταξινόμησης apps/frappe/frappe/utils/password_strength.py +143,Avoid dates and years that are associated with you.,Αποφύγετε τις ημερομηνίες και τα χρόνια που σχετίζονται με σας. DocType: Custom DocPerm,Amend,Τροποποίηση DocType: Data Import,Generated File,Δημιουργία αρχείου DocType: Transaction Log,Previous Hash,Προηγούμενη διαγραφή DocType: File,Is Attachments Folder,Είναι Συνημμένα Φάκελος apps/frappe/frappe/public/js/frappe/views/treeview.js +75,Expand All,Ανάπτυξη όλων -apps/frappe/frappe/public/js/frappe/chat.js +2159,Select a chat to start messaging.,Επιλέξτε μια συνομιλία για να ξεκινήσετε την ανταλλαγή μηνυμάτων. +apps/frappe/frappe/public/js/frappe/chat.js +2158,Select a chat to start messaging.,Επιλέξτε μια συνομιλία για να ξεκινήσετε την ανταλλαγή μηνυμάτων. apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +20,Please select Entity Type first,Επιλέξτε πρώτα τον Τύπο οντότητας apps/frappe/frappe/templates/includes/login/login.js +52,Valid Login id required.,Απαιτείται ένα έγκυρο id σύνδεσης. apps/frappe/frappe/model/rename_doc.py +417,Please select a valid csv file with data,Παρακαλώ επιλέξτε ένα έγκυρο αρχείο csv με τα δεδομένα @@ -1476,26 +1515,26 @@ apps/frappe/frappe/model/document.py +625,Record does not exist,Δεν υπάρ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Πρωτότυπη Αξία DocType: Help Category,Help Category,Βοήθεια Κατηγορία apps/frappe/frappe/utils/oauth.py +240,User {0} is disabled,Ο χρήστης {0} είναι απενεργοποιημένος -apps/frappe/frappe/www/404.html +20,Page missing or moved,Η σελίδα λείπει ή έχει μετακινηθεί +apps/frappe/frappe/www/404.html +21,Page missing or moved,Η σελίδα λείπει ή έχει μετακινηθεί DocType: DocType,Route,Διαδρομή apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Ρυθμίσεις πύλη πληρωμής Razorpay +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +12,Fetch attached images from document,Λήψη προσαρτημένων εικόνων από το έγγραφο DocType: Chat Room,Name,Όνομα DocType: Contact Us Settings,Skype,Skype apps/frappe/frappe/limits.py +195,You have exceeded the max space of {0} for your plan. {1}.,Έχετε υπερβεί το μέγιστο χώρο του {0} για το σχέδιό σας. {1}. DocType: Chat Profile,Notification Tones,Ήχοι ειδοποίησης -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Αναζήτηση στα έγγραφα +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +380,Search the docs,Αναζήτηση στα έγγραφα DocType: OAuth Authorization Code,Valid,Έγκυρος apps/frappe/frappe/public/js/frappe/form/controls/link.js +16,Open Link,Άνοιγμα συνδέσμου apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +357,Your Language,Η γλώσσα σου apps/frappe/frappe/public/js/frappe/form/grid.js +72,Add Row,Προσθήκη Γραμμής DocType: Tag Category,Doctypes,doctypes -apps/frappe/frappe/desk/query_report.py +88,Query must be a SELECT,Το ερώτημα πρέπει να είναι μια εντολή select -apps/frappe/frappe/core/doctype/data_import/data_import.js +36,Please attach a file to import,Επισυνάψτε ένα αρχείο για εισαγωγή -DocType: Auto Repeat,Completed,Ολοκληρώθηκε +apps/frappe/frappe/desk/query_report.py +52,Query must be a SELECT,Το ερώτημα πρέπει να είναι μια εντολή select +DocType: Prepared Report,Completed,Ολοκληρώθηκε DocType: File,Is Private,Είναι ιδιωτικό DocType: Data Export,Select DocType,Επιλέξτε τύπο εγγράφου apps/frappe/frappe/public/js/frappe/request.js +146,File size exceeded the maximum allowed size of {0} MB,Το μέγεθος αρχείου υπερέβη το μέγιστο επιτρεπόμενο μέγεθος των {0} mb -apps/frappe/frappe/email/doctype/notification/notification.js +23,Created On,Δημιουργήθηκε στις +apps/frappe/frappe/email/doctype/notification/notification.js +33,Created On,Δημιουργήθηκε στις DocType: Workflow State,align-center,Ευθυγράμμιση στο κέντρο DocType: Feedback Request,Is Feedback request triggered manually ?,Είναι αίτημα Σχόλια ενεργοποιείται χειροκίνητα; DocType: Address,Lakshadweep Islands,Νήσοι Lakshadweep @@ -1503,7 +1542,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Ορισμένα έγγραφα, όπως ένα τιμολόγιο, δεν θα πρέπει να αλλάξουν αφού οριστικοποιηθούν. Η τελική κατάσταση των εν λόγω εγγράφων ονομάζεται υποβεβλημένο. Μπορείτε να ορίσετε ποιοι ρόλοι έχουν δικαίωμα υποβολής." DocType: Newsletter,Test Email Address,Δοκιμή διεύθυνση ηλεκτρονικού ταχυδρομείου DocType: ToDo,Sender,Αποστολέας -apps/frappe/frappe/email/doctype/notification/notification.py +286,Error while evaluating Notification {0}. Please fix your template.,Σφάλμα κατά την αξιολόγηση της ειδοποίησης {0}. Διορθώστε το πρότυπο. +apps/frappe/frappe/email/doctype/notification/notification.py +290,Error while evaluating Notification {0}. Please fix your template.,Σφάλμα κατά την αξιολόγηση της ειδοποίησης {0}. Διορθώστε το πρότυπο. DocType: GSuite Settings,Google Apps Script,Σενάριο Google Apps apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Αφήστε ένα σχόλιο DocType: Web Page,Description for search engine optimization.,Περιγραφή για τη βελτιστοποίηση μηχανών αναζήτησης. @@ -1513,7 +1552,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import_list.js +11,Pending,Εκ DocType: System Settings,Allow only one session per user,Επιτρέπουν μόνο μια συνεδρία ανά χρήστη apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Αρχική Σελίδα / Δοκιμή Φάκελος 1 / Έλεγχος φακέλου 3 DocType: Website Settings,<head> HTML,<head> HTML -apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +126,Select or drag across time slots to create a new event.,Επιλέξτε ή σύρετε χρονοθυρίδες για να δημιουργήσετε ένα νέο συμβάν. +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +141,Select or drag across time slots to create a new event.,Επιλέξτε ή σύρετε χρονοθυρίδες για να δημιουργήσετε ένα νέο συμβάν. DocType: DocField,In Filter,Στο φίλτρο apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Εμφάνιση στο τμήμα Module @@ -1525,17 +1564,18 @@ apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again DocType: Web Page,"Page to show on the website ",Σελίδα για να δείτε στην ιστοσελίδα DocType: Note,Seen By Table,Φαίνεται από τον πίνακα -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +253,Select template,Επιλέξτε πρότυπο +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,Select template,Επιλέξτε πρότυπο apps/frappe/frappe/www/third_party_apps.html +47,Logged in,Συνδεδεμένος apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +41,Incorrect UserId or Password,Εσφαλμένη UserId ή Κωδικός apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,Εξερευνώ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Προεπιλογή αποστολής και εισερχομένων DocType: System Settings,OTP App,OTP App +DocType: Dropbox Settings,Send Email for Successful Backup,Αποστολή μηνύματος ηλεκτρονικού ταχυδρομείου για επιτυχημένη δημιουργία αντιγράφων ασφαλείας apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,έγγραφο ταυτότητας DocType: Print Settings,Letter,Επιστολή -apps/frappe/frappe/core/doctype/doctype/doctype.py +609,Image field must be of type Attach Image,πεδίο εικόνας πρέπει να είναι τύπου Επισύναψη εικόνας +apps/frappe/frappe/core/doctype/doctype/doctype.py +652,Image field must be of type Attach Image,πεδίο εικόνας πρέπει να είναι τύπου Επισύναψη εικόνας DocType: DocField,Columns,Στήλες -apps/frappe/frappe/desk/form/assign_to.py +71,Shared with user {0} with read access,Κοινή χρήση με τον χρήστη {0} με πρόσβαση ανάγνωσης +apps/frappe/frappe/desk/form/assign_to.py +74,Shared with user {0} with read access,Κοινή χρήση με τον χρήστη {0} με πρόσβαση ανάγνωσης DocType: Async Task,Succeeded,Πετυχημένος apps/frappe/frappe/public/js/frappe/form/save.js +150,Mandatory fields required in {0},Υποχρεωτικά πεδία είναι υποχρεωτικά σε {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +102,Reset Permissions for {0}?,Επαναφορά δικαιωμάτων για {0} ; @@ -1553,14 +1593,14 @@ DocType: DocType,ASC,ASC DocType: Workflow State,align-left,Ευθυγράμμιση αριστερά DocType: User,Defaults,Προεπιλογές DocType: Feedback Request,Feedback Submitted,feedback Υποβλήθηκε -apps/frappe/frappe/public/js/frappe/model/model.js +542,Merge with existing,Συγχώνευση με τις υπάρχουσες +apps/frappe/frappe/public/js/frappe/model/model.js +541,Merge with existing,Συγχώνευση με τις υπάρχουσες DocType: User,Birth Date,Ημερομηνία γέννησης DocType: Dynamic Link,Link Title,Τίτλος Σύνδεσμος DocType: Workflow State,fast-backward,Fast-backward DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,Παρασκευή -apps/frappe/frappe/public/js/frappe/form/quick_entry.js +213,Edit in full page,Επεξεργασία σε πλήρη σελίδα +apps/frappe/frappe/public/js/frappe/form/quick_entry.js +216,Edit in full page,Επεξεργασία σε πλήρη σελίδα DocType: Report,Add Total Row,Προσθήκη γραμμής συνόλου apps/frappe/frappe/twofactor.py +206,Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it.,Ελέγξτε τη διεύθυνση ηλεκτρονικού ταχυδρομείου που καταχωρίσατε για οδηγίες σχετικά με το πώς να προχωρήσετε. Μην κλείσετε αυτό το παράθυρο καθώς θα πρέπει να επιστρέψετε σε αυτό. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,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.,"Για παράδειγμα, αν έχετε ακυρώσει και τροποποιήσει το «inv004» θα γίνει ένα νέο έγγραφο «inv004-1». Αυτό σας βοηθά να παρακολουθείτε κάθε τροπολογία." @@ -1582,11 +1622,10 @@ DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent","1 Νόμισμα = [?] κλάσμα για παράδειγμα 1 usd = 100 cent" DocType: Data Import,Partially Successful,Μερικώς επιτυχής -apps/frappe/frappe/core/doctype/user/user.py +779,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Πάρα πολλοί χρήστες υπογράψει πρόσφατα, οπότε η εγγραφή είναι απενεργοποιημένη. Παρακαλώ δοκιμάστε ξανά σε μια ώρα" +apps/frappe/frappe/core/doctype/user/user.py +773,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Πάρα πολλοί χρήστες υπογράψει πρόσφατα, οπότε η εγγραφή είναι απενεργοποιημένη. Παρακαλώ δοκιμάστε ξανά σε μια ώρα" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +368,Add New Permission Rule,Προσθήκη νέου κανόνα άδειας apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Μπορείτε να χρησιμοποιήσετε το χαρακτήρα μπαλαντέρ% DocType: Chat Message Attachment,Chat Message Attachment,Συνημμένο μήνυμα συζήτησης -apps/frappe/frappe/email/smtp.py +85,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account apps/frappe/frappe/public/js/frappe/upload.js +293,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Μόνο επεκτάσεις εικόνα (.gif, .jpg, .jpeg, .tiff, .png, .svg) επιτρέπονται" DocType: Address,Manipur,Manipur DocType: DocType,Database Engine,Μηχανισμός διαχείρισης βάσης δεδομένων @@ -1607,7 +1646,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +235,Width of DocType: Address,Subsidiary,Θυγατρική DocType: System Settings,In Hours,Σε ώρες apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +32,With Letterhead,Με κεφαλίδα επιστολόχαρτου -apps/frappe/frappe/email/smtp.py +221,Invalid Outgoing Mail Server or Port,Μη έγκυρος διακομιστής εξερχόμενης αλληλογραφίας ή θύρα +apps/frappe/frappe/email/smtp.py +224,Invalid Outgoing Mail Server or Port,Μη έγκυρος διακομιστής εξερχόμενης αλληλογραφίας ή θύρα DocType: Custom DocPerm,Write,Γράφω apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed to create Query / Script Reports,Μόνο ο διαχειριστής έχει τη δυνατότητα να δημιουργήσει εκθέσεις με βάση query / script apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,Ενημέρωση @@ -1616,28 +1655,31 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Χρησιμοποιήστε αυτό το πεδίο με όνομα για τη δημιουργία του τίτλου apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Εισαγωγή e-mail από apps/frappe/frappe/contacts/doctype/contact/contact.js +24,Invite as User,Πρόσκληση ως χρήστη -apps/frappe/frappe/integrations/doctype/google_maps/google_maps.py +17,Home Address is required,Απαιτείται διεύθυνση κατοικίας +apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py +18,Home Address is required,Απαιτείται διεύθυνση κατοικίας DocType: Data Migration Run,Started,Ξεκίνησε +DocType: Data Migration Run,End Time,Ώρα λήξης apps/frappe/frappe/public/js/frappe/views/communication.js +104,Select Attachments,Επιλογή συνημμένων apps/frappe/frappe/model/naming.py +113, for {0},για {0} -apps/frappe/frappe/website/js/web_form.js +107,There were errors. Please report this.,Υπήρξαν λάθη. Παρακαλούμε αναφέρετε αυτό. +apps/frappe/frappe/website/js/web_form.js +140,There were errors. Please report this.,Υπήρξαν λάθη. Παρακαλούμε αναφέρετε αυτό. apps/frappe/frappe/public/js/legacy/form.js +173,You are not allowed to print this document,Δεν επιτρέπεται να εκτυπώσετε το έγγραφο apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js +11,Currently updating {0},Επί του παρόντος ενημερώνει {0} -apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +120,Please set filters value in Report Filter table.,Παρακαλούμε να ορίσετε την αξία φίλτρα στον πίνακα Έκθεση Φίλτρο. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +283,Loading Report,Φόρτωση Έκθεση +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +121,Please set filters value in Report Filter table.,Παρακαλούμε να ορίσετε την αξία φίλτρα στον πίνακα Έκθεση Φίλτρο. +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +284,Loading Report,Φόρτωση Έκθεση apps/frappe/frappe/limits.py +74,Your subscription will expire today.,Η συνδρομή σας θα λήξει σήμερα. DocType: Page,Standard,Πρότυπο -apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Επισυνάψετε Το Αρχείο +apps/frappe/frappe/core/doctype/data_import/data_import.js +40,Attach File,Επισυνάψετε Το Αρχείο +DocType: Data Migration Plan,Preprocess Method,Μέθοδος προεπεξεργασίας apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Μέγεθος apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Εκχώρηση Ολοκλήρωση DocType: Desktop Icon,Idx,idx +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +361,

No results found for '

,

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

DocType: Address,Madhya Pradesh,Μάντια Πραντές DocType: Deleted Document,New Name,Νέο Όνομα DocType: System Settings,Is First Startup,Είναι η πρώτη εκκίνηση DocType: Communication,Email Status,Κατάσταση email apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,Παρακαλούμε να αποθηκεύσετε το έγγραφο πριν από την αφαίρεση εκχώρηση apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +49,Insert Above,Εισαγωγή Πάνω -apps/frappe/frappe/desk/form/utils.py +76,Comment can only be edited by the owner,Το σχόλιο μπορεί να επεξεργαστεί μόνο ο κάτοχος +apps/frappe/frappe/desk/form/utils.py +79,Comment can only be edited by the owner,Το σχόλιο μπορεί να επεξεργαστεί μόνο ο κάτοχος DocType: Data Import,Do not send Emails,Μην στείλετε μηνύματα ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/utils/password_strength.py +191,Common names and surnames are easy to guess.,Κοινά ονόματα και επίθετα είναι εύκολο να μαντέψει κανείς. DocType: Auto Repeat,Draft,Προσχέδιο @@ -1649,14 +1691,14 @@ apps/frappe/frappe/www/third_party_apps.html +51,Revoke,Ανακαλώ DocType: Contact,Replied,Απαντήθηκε DocType: Newsletter,Test,Δοκιμή DocType: Custom Field,Default Value,Προεπιλεγμένη τιμή -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify,Επαλήθευση +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify,Επαλήθευση DocType: Workflow Document State,Update Field,Ενημέρωση πεδίου DocType: Chat Profile,Enable Chat,Ενεργοποίηση συνομιλίας DocType: LDAP Settings,Base Distinguished Name (DN),Βάση διακεκριμένο όνομα (DN) apps/frappe/frappe/core/doctype/communication/email.py +156,Leave this conversation,Αφήστε αυτή τη συζήτηση -apps/frappe/frappe/model/base_document.py +434,Options not set for link field {0},Οι επιλογές δεν έχουν οριστεί για το πεδίο συνδέσμου {0} +apps/frappe/frappe/model/base_document.py +443,Options not set for link field {0},Οι επιλογές δεν έχουν οριστεί για το πεδίο συνδέσμου {0} DocType: Customize Form,"Must be of type ""Attach Image""",Πρέπει να είναι του τύπου "Επισύναψη εικόνας" -apps/frappe/frappe/core/doctype/data_import/data_import.js +207,Unselect All,Κατάργηση επιλογής όλων +apps/frappe/frappe/core/doctype/data_import/data_import.js +210,Unselect All,Κατάργηση επιλογής όλων apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +209,You cannot unset 'Read Only' for field {0},Δεν μπορείτε να επανέρχεστε «μόνο για ανάγνωση» για το πεδίο {0} DocType: Auto Email Report,Zero means send records updated at anytime,Το μηδέν σημαίνει αποστολή ενημερωμένων εκδόσεων ανά πάσα στιγμή apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +55,Complete Setup,Ολοκλήρωση της εγκατάστασης @@ -1672,7 +1714,7 @@ DocType: Social Login Key,Google,Google DocType: Email Domain,Example Email Address,Παράδειγμα διεύθυνση ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Περισσότερο χρησιμοποιημένο apps/frappe/frappe/email/doctype/newsletter/newsletter.py +156,Unsubscribe from Newsletter,Διαγραφή από το ενημερωτικό δελτίο -apps/frappe/frappe/www/login.html +83,Forgot Password,Ξεχάσατε τον κωδικό +apps/frappe/frappe/www/login.html +84,Forgot Password,Ξεχάσατε τον κωδικό DocType: Dropbox Settings,Backup Frequency,Συχνότητα Αντιγράφων ασφαλείας DocType: Workflow State,Inverse,Αντίστροφος DocType: DocField,User permissions should not apply for this Link,Τα δικαιώματα χρήστη δεν πρέπει να εφαρμόζονται για αυτή την σύνδεση @@ -1689,6 +1731,7 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Κατάλ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,επιτυχής ενημέρωση DocType: Activity Log,Logout,Αποσύνδεση apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,Τα δικαιώματα σε υψηλότερα επίπεδα είναι τα δικαιώματα σε 'επίπεδο πεδίου'. Όλα τα πεδία έχουν ένα επίπεδο δικαιώματος ορισμένο και οι κανόνες δικαιωμάτων εφαρμόζονται στο πεδίο. Αυτό χρησιμεύει σε περίπτωση που θέλετε να κρύψετε ή να κάνετε κάποια πεδία μόνο αναγνώσιμα για συγκεκριμμένους ρόλους. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Εισάγετε στατικές παραμέτρους url εδώ (π.Χ. Αποστολέα = erpnext, όνομα = erpnext, password = 1234 κλπ.)" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Εάν αυτές οι οδηγίες δεν ήταν χρήσιμες, Παρακαλώ να προσθέσετε τις δικές σας προτάσεις σχετικά με τα θέματα github." DocType: Workflow State,bookmark,Σελιδοδείκτης @@ -1700,12 +1743,12 @@ apps/frappe/frappe/www/qrcode.html +19,Authentication Apps you can use are: ,Ο apps/frappe/frappe/public/js/frappe/form/controls/data.js +46,{0} already exists. Select another name,{0} υπάρχει ήδη. Επιλέξτε ένα άλλο όνομα apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +137,Feedback conditions do not match,Οι συνθήκες ανάδρασης δεν ταιριάζουν DocType: S3 Backup Settings,None,Κανένας -apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Timeline field must be a valid fieldname,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένα έγκυρο ΌνομαΠεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +666,Timeline field must be a valid fieldname,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένα έγκυρο ΌνομαΠεδίου DocType: GCalendar Account,Session Token,Token περιόδου σύνδεσης DocType: Currency,Symbol,Σύμβολο -apps/frappe/frappe/model/base_document.py +504,Row #{0}:,Γραμμή #{0}: +apps/frappe/frappe/model/base_document.py +513,Row #{0}:,Γραμμή #{0}: apps/frappe/frappe/core/doctype/user/user.py +158,New password emailed,Ο νέος κωδικός απεστάλη μέσω e-mail -apps/frappe/frappe/auth.py +272,Login not allowed at this time,Η είσοδος δεν επιτρέπεται αυτή τη στιγμή +apps/frappe/frappe/auth.py +286,Login not allowed at this time,Η είσοδος δεν επιτρέπεται αυτή τη στιγμή DocType: Data Migration Run,Current Mapping Action,Τρέχουσα δράση χαρτογράφησης DocType: Email Account,Email Sync Option,Email επιλογή Sync apps/frappe/frappe/core/doctype/data_import/log_details.html +5,Row No,Αριθμός σειράς @@ -1721,12 +1764,12 @@ DocType: Address,Fax,Φαξ apps/frappe/frappe/config/setup.py +263,Custom Tags,προσαρμοσμένες ετικέτες DocType: Communication,Submitted,Υποβλήθηκε DocType: System Settings,Email Footer Address,Email Τελικοί Διεύθυνση -apps/frappe/frappe/public/js/frappe/form/grid.js +664,Table updated,Πίνακας ενημερώνεται +apps/frappe/frappe/public/js/frappe/form/grid.js +665,Table updated,Πίνακας ενημερώνεται DocType: Activity Log,Timeline DocType,Χρονοδιάγραμμα DocType DocType: DocField,Text,Κείμενο apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Προεπιλογή αποστολής DocType: Workflow State,volume-off,Volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +181,Liked by {0},Άρεσε {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +183,Liked by {0},Άρεσε {0} DocType: Footer Item,Footer Item,υποσέλιδο Στοιχείο ,Download Backups,Λήψη αντιγράφων ασφαλείας apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Αρχική Σελίδα / Δοκιμή Φάκελος 1 @@ -1734,7 +1777,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me, DocType: DocField,Dynamic Link,Δυναμικός σύνδεσμος apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,Έως ημερομηνία apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Εμφάνιση απέτυχε θέσεις εργασίας -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +83,Details,Λεπτομέρειες +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +85,Details,Λεπτομέρειες DocType: Property Setter,DocType or Field,Τύπος εγγράφου ή πεδίο DocType: Communication,Soft-Bounced,Soft-Ακάλυπτες DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Εάν είναι ενεργοποιημένη, όλοι οι χρήστες μπορούν να συνδεθούν από οποιαδήποτε διεύθυνση IP χρησιμοποιώντας την επιλογή Two Factor Auth. Αυτό μπορεί επίσης να οριστεί μόνο για συγκεκριμένους χρήστες στη σελίδα χρήστη" @@ -1745,7 +1788,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapse apps/frappe/frappe/core/doctype/communication/communication.js +253,Email has been moved to trash,Το μήνυμα ηλεκτρονικού ταχυδρομείου έχει μεταφερθεί στον κάδο απορριμμάτων DocType: Report,Report Builder,Δημιουργός εκθέσεων DocType: Async Task,Task Name,Όνομα Εργασία -apps/frappe/frappe/app.py +158,"Your session has expired, please login again to continue.","Η συνεδρία σας έχει λήξει, παρακαλούμε συνδεθείτε ξανά για να συνεχίσετε." +apps/frappe/frappe/app.py +157,"Your session has expired, please login again to continue.","Η συνεδρία σας έχει λήξει, παρακαλούμε συνδεθείτε ξανά για να συνεχίσετε." DocType: Communication,Workflow,Ροή εργασίας DocType: Website Settings,Welcome Message,Μήνυμα υποδοχής DocType: Webhook,Webhook Headers,Κεφαλίδες Webhook @@ -1762,10 +1805,11 @@ apps/frappe/frappe/model/naming.py +215,Name cannot contain special characters l apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +29,Print Documents,Εκτύπωση εγγράφων DocType: Contact Us Settings,Forward To Email Address,Προώθηση στις διευθύνσεις ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Εμφάνιση όλων των δεδομένων -apps/frappe/frappe/core/doctype/doctype/doctype.py +580,Title field must be a valid fieldname,Το πεδίο τίτλου πρέπει να είναι ένα έγκυρο όνομα πεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +623,Title field must be a valid fieldname,Το πεδίο τίτλου πρέπει να είναι ένα έγκυρο όνομα πεδίου apps/frappe/frappe/config/core.py +7,Documents,Έγγραφα DocType: Social Login Key,Custom Base URL,Προσαρμοσμένη διεύθυνση URL βάσης DocType: Email Flag Queue,Is Completed,έχει ολοκληρωθεί +apps/frappe/frappe/website/doctype/web_form/web_form.js +45,Get Fields,Αποκτήστε πεδία apps/frappe/frappe/core/doctype/communication/comment.py +95,{0} mentioned you in a comment,Το {0} σας ανέφερε σε ένα σχόλιο apps/frappe/frappe/www/me.html +22,Edit Profile,Επεξεργασία προφίλ DocType: Kanban Board Column,Archived,Αρχειοθετήθηκε @@ -1775,17 +1819,18 @@ myfield 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/form/controls/date.js +49,Today,Σήμερα +apps/frappe/frappe/public/js/frappe/form/controls/date.js +48,Today,Σήμερα apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"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: Error Log,Log of Scheduler Errors,Αρχείο καταγραφής των σφαλμάτων του scheduler DocType: User,Bio,Βιογραφικό DocType: OAuth Client,App Client Secret,App μυστικό πελάτη apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Υποβολή +apps/frappe/frappe/core/doctype/data_export/exporter.py +158,Parent is the name of the document to which the data will get added to.,Ο γονέας είναι το όνομα του εγγράφου στο οποίο θα προστεθούν τα δεδομένα. apps/frappe/frappe/desk/page/activity/activity.js +58,Show Likes,Εμφάνιση Likes DocType: DocType,UPPER CASE,ΚΕΦΑΛΑΊΑ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,Προσαρμοσμένος κώδικας HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js +79,Enter folder name,Πληκτρολογήστε το όνομα του φακέλου -apps/frappe/frappe/auth.py +228,Unknown User,Αγνωστος χρήστης +apps/frappe/frappe/auth.py +233,Unknown User,Αγνωστος χρήστης apps/frappe/frappe/core/page/permission_manager/permission_manager.js +55,Select Role,Επιλέξτε ρόλο DocType: Communication,Deleted,Διεγραμμένο DocType: Workflow State,adjust,Προσαρμογή @@ -1807,21 +1852,21 @@ DocType: Data Migration Connector,Database Name,Όνομα βάσης δεδομ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Ανανέωση φόρμας DocType: DocField,Select,Επιλογή apps/frappe/frappe/utils/csvutils.py +29,File not attached,Δεν έχει γίνει επισύναψη του αρχείου -apps/frappe/frappe/public/js/frappe/dom.js +298,Connection lost. Some features might not work.,Η σύνδεση χάθηκε. Ορισμένες λειτουργίες ενδέχεται να μην λειτουργούν. +apps/frappe/frappe/public/js/frappe/dom.js +308,Connection lost. Some features might not work.,Η σύνδεση χάθηκε. Ορισμένες λειτουργίες ενδέχεται να μην λειτουργούν. apps/frappe/frappe/utils/password_strength.py +115,"Repeats like ""aaa"" are easy to guess",Επαναλήψεις όπως "ααα" είναι εύκολο να μαντέψει -apps/frappe/frappe/public/js/frappe/chat.js +1601,New Chat,Νέα συζήτηση +apps/frappe/frappe/public/js/frappe/chat.js +1600,New Chat,Νέα συζήτηση DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Αν ορίσετε αυτό, αυτό το είδος θα έρθει σε ένα πεδίο drop-down κάτω από τον επιλεγμένο γονέα." DocType: Print Format,Show Section Headings,Εμφάνιση Επικεφαλίδες Ενότητας DocType: Bulk Update,Limit,Όριο -apps/frappe/frappe/www/printview.py +226,No template found at path: {0},Δεν βρέθηκε πρότυπο στην διαδρομή: {0} -apps/frappe/frappe/www/update-password.html +26,Logout from all sessions,Αποσύνδεση από όλες τις συνεδρίες +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +22,Add a new section,Προσθέστε μια νέα ενότητα +apps/frappe/frappe/www/printview.py +225,No template found at path: {0},Δεν βρέθηκε πρότυπο στην διαδρομή: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +168,No Email Account,Δεν λογαριασμού ηλεκτρονικού ταχυδρομείου DocType: Communication,Cancelled,Ακυρώθηκε DocType: Chat Room,Avatar,Avatar DocType: Blogger,Posts,Δημοσιεύσεις DocType: Social Login Key,Salesforce,Salesforce DocType: DocType,Has Web View,Έχει Web Προβολή -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Το όνομά DocType θα πρέπει να αρχίζει με ένα γράμμα και μπορεί να αποτελείται μόνο από γράμματα, αριθμούς, διαστήματα και χαρακτήρες υπογράμμισης" +apps/frappe/frappe/core/doctype/doctype/doctype.py +465,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Το όνομά DocType θα πρέπει να αρχίζει με ένα γράμμα και μπορεί να αποτελείται μόνο από γράμματα, αριθμούς, διαστήματα και χαρακτήρες υπογράμμισης" DocType: Communication,Spam,Ανεπιθυμητη αλληλογραφια DocType: Integration Request,Integration Request,Αίτηση ολοκλήρωσης apps/frappe/frappe/public/js/frappe/views/communication.js +631,Dear,Αγαπητέ @@ -1837,16 +1882,18 @@ DocType: Communication,Assigned,ανατεθεί DocType: Print Format,Js,Js apps/frappe/frappe/public/js/frappe/views/communication.js +99,Select Print Format,Επιλέξτε μορφοποίηση εκτύπωσης apps/frappe/frappe/utils/password_strength.py +90,Short keyboard patterns are easy to guess,Σύντομη μοτίβα πληκτρολόγιο είναι εύκολο να μαντέψει +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +278,Generate New Report,Δημιουργία νέας αναφοράς DocType: Portal Settings,Portal Menu,Μενού portal apps/frappe/frappe/model/db_schema.py +122,Length of {0} should be between 1 and 1000,Μήκος {0} πρέπει να είναι μεταξύ 1 και 1000 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Αναζήτηση για τίποτα +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +360,Search for anything,Αναζήτηση για τίποτα DocType: Data Migration Connector,Hostname,Όνομα κεντρικού υπολογιστή DocType: Data Migration Mapping,Condition Detail,Λεπτομέρεια κατάστασης apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +53,"For currency {0}, the minimum transaction amount should be {1}","Για το νόμισμα {0}, το ελάχιστο ποσό συναλλαγής πρέπει να είναι {1}" DocType: DocField,Print Hide,Απόκρυψη εκτύπωσης -apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Εισάγετε τιμή +apps/frappe/frappe/public/js/frappe/ui/messages.js +68,Enter Value,Εισάγετε τιμή DocType: Workflow State,tint,Απόχρωση DocType: Web Page,Style,Στυλ +DocType: Prepared Report,Report End Time,Αναφορά τελικής ώρας apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,e.g.:,π.χ: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +80,{0} comments,{0} Σχόλια apps/frappe/frappe/public/js/frappe/desk.js +94,Version Updated,Ενημερώθηκε η έκδοση @@ -1859,10 +1906,11 @@ DocType: Email Account,Uses the Email Address mentioned in this Account as the S apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +58,Toggle Charts,Εναλλαγή διαγραμμάτων DocType: Website Settings,Sub-domain provided by erpnext.com,Sub-domain που παρέχεται από την erpnext.com apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +270,Setting up your system,Ρύθμιση του συστήματός σας +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +21,Descendants Of,Απόγονοι του DocType: System Settings,dd-mm-yyyy,Ηη/μμ/εεεε -apps/frappe/frappe/desk/query_report.py +78,Must have report permission to access this report.,Πρέπει να έχετε δικαιώματα πρόσβασης σε αυτή την έκθεση. +apps/frappe/frappe/desk/query_report.py +159,Must have report permission to access this report.,Πρέπει να έχετε δικαιώματα πρόσβασης σε αυτή την έκθεση. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Please select Minimum Password Score,Επιλέξτε το Ελάχιστο Βαθμολογία Κωδικού -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,Added,Προστέθηκε +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,Added,Προστέθηκε apps/frappe/frappe/core/page/usage_info/usage_info.html +7,You have subscribed for one user free plan,Έχετε εγγραφεί για ένα ελεύθερο σχέδιο χρήστη DocType: Auto Repeat,Half-yearly,Εξαμηνιαία apps/frappe/frappe/templates/emails/upcoming_events.html +8,Daily Event Digest is sent for Calendar Events where reminders are set.,Το άρθρο καθημερινών γεγονότων απεστάλη για τις εκδηλώσεις του ημερολογίου για τις οποίες έχουν οριστεί υπενθυμίσεις. @@ -1873,7 +1921,7 @@ DocType: Workflow State,remove,Αφαίρεση DocType: Email Domain,If non standard port (e.g. 587),Αν μη τυπική θύρα (π.Χ. 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +153,Reload,Επαναφόρτωση apps/frappe/frappe/config/setup.py +265,Add your own Tag Categories,Προσθέστε το δικό σας Tag Κατηγορίες -apps/frappe/frappe/desk/query_report.py +227,Total,Σύνολο +apps/frappe/frappe/desk/query_report.py +312,Total,Σύνολο DocType: Event,Participants,Οι συμμετέχοντες DocType: Integration Request,Reference DocName,Όνομα εγγράφου αναφοράς DocType: Web Form,Success Message,Μήνυμα επιτυχίας @@ -1887,7 +1935,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +422,Will be your logi apps/frappe/frappe/desk/page/activity/activity.js +45,Build Report,šΚατασκευή έκθεσης DocType: Note,Notify users with a popup when they log in,Ειδοποίηση για τους χρήστες με ένα popup όταν συνδεθείτε apps/frappe/frappe/model/rename_doc.py +155,"{0} {1} does not exist, select a new target to merge","{0} {1} Δεν υπάρχει, επιλέξτε ένα νέο στόχο για τη συγχώνευση" -apps/frappe/frappe/www/search.py +13,"Search Results for ""{0}""",Αποτελέσματα αναζήτησης για «{0}» DocType: Data Migration Connector,Python Module,Μονάδα Python DocType: GSuite Settings,Google Credentials,Τα διαπιστευτήρια Google apps/frappe/frappe/www/qrcode.html +6,QR Code for Login Verification,Κωδικός QR για επαλήθευση σύνδεσης @@ -1896,8 +1943,8 @@ DocType: Footer Item,Company,Εταιρεία apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Που μου ανατίθενται apps/frappe/frappe/config/integrations.py +113,Google GSuite Templates to integration with DocTypes,Τα πρότυπα Google GSuite για την ενσωμάτωση με DocTypes DocType: User,Logout from all devices while changing Password,Αποσύνδεση από όλες τις συσκευές κατά την αλλαγή του κωδικού πρόσβασης -apps/frappe/frappe/public/js/frappe/ui/messages.js +228,Verify Password,Επιβεβαίωσε Τον Κωδικό -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Υπήρξαν σφάλματα +apps/frappe/frappe/public/js/frappe/ui/messages.js +230,Verify Password,Επιβεβαίωσε Τον Κωδικό +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +133,There were errors,Υπήρξαν σφάλματα apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Κλείσιμο apps/frappe/frappe/model/document.py +663,Cannot change docstatus from 0 to 2,Δεν είναι δυνατή η αλλαγή κατάστασης εγγράφου από 0 σε 2 DocType: File,Attached To Field,Επισυνάπτεται στο πεδίο @@ -1907,7 +1954,7 @@ DocType: Transaction Log,Transaction Hash,Χάσμα συναλλαγών DocType: Error Snapshot,Snapshot View,Προβολή στιγμιότυπου apps/frappe/frappe/email/doctype/newsletter/newsletter.py +106,Please save the Newsletter before sending,Παρακαλώ αποθηκεύστε το ενημερωτικό δελτίο πριν από την αποστολή apps/frappe/frappe/config/integrations.py +103,Configure accounts for google calendar,Ρύθμιση λογαριασμών για το ημερολόγιο του Google -apps/frappe/frappe/core/doctype/doctype/doctype.py +473,Options must be a valid DocType for field {0} in row {1},Οι επιλογές θα πρέπει να είναι ένας έγκυρος τύπος εγγράφου για το πεδίο {0} στη γραμμή {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +516,Options must be a valid DocType for field {0} in row {1},Οι επιλογές θα πρέπει να είναι ένας έγκυρος τύπος εγγράφου για το πεδίο {0} στη γραμμή {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Επεξεργασία ιδιοτήτων DocType: Patch Log,List of patches executed,Λίστα των δημοσιεύσεων του φόρουμ της ιστοσελίδας. apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} έχετε ήδη διαγραφή @@ -1926,8 +1973,8 @@ DocType: Data Migration Connector,Authentication Credentials,Πιστοποιη DocType: Role,Two Factor Authentication,Έλεγχος ταυτότητας δύο παραγόντων apps/frappe/frappe/templates/pages/integrations/braintree_checkout.html +29,Pay,Πληρωμή DocType: SMS Settings,SMS Gateway URL,SMS gateway URL -apps/frappe/frappe/model/base_document.py +508,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Δεν μπορεί να είναι ""{2}"". Θα πρέπει να είναι ένα από τα ""{3}""" -apps/frappe/frappe/utils/data.py +638,{0} or {1},{0} ή {1} +apps/frappe/frappe/model/base_document.py +517,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Δεν μπορεί να είναι ""{2}"". Θα πρέπει να είναι ένα από τα ""{3}""" +apps/frappe/frappe/utils/data.py +640,{0} or {1},{0} ή {1} apps/frappe/frappe/core/doctype/user/user.py +250,Password Update,Ενημέρωση κωδικού DocType: Workflow State,trash,Σκουπίδια DocType: System Settings,Older backups will be automatically deleted,Παλαιότερα αντίγραφα ασφαλείας θα διαγραφούν αυτόματα @@ -1943,16 +1990,18 @@ DocType: Website Settings,"Added HTML in the <head> section of the web pag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +9,Relapsed,Υποτροπή apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Το είδος δεν μπορεί να προστεθεί στους δικούς του απογόνους DocType: System Settings,Expiry time of QR Code Image Page,Χρόνος λήξης της σελίδας QR Code Image -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +928,Show Totals,Εμφάνιση Σύνολα +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +614,Show Totals,Εμφάνιση Σύνολα DocType: Error Snapshot,Relapses,Υποτροπές DocType: Address,Preferred Shipping Address,Προτιμώμενη διεύθυνση αποστολής -apps/frappe/frappe/public/js/frappe/form/print.js +263,With Letter head,Με το κεφάλι Επιστολή +apps/frappe/frappe/public/js/frappe/form/print.js +294,With Letter head,Με το κεφάλι Επιστολή apps/frappe/frappe/public/js/frappe/form/form_sidebar.js +62,{0} created this {1},{0} δημιουργήθηκε αυτή η {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 +38,Document is only editable by users of role,Το έγγραφο είναι μόνο επεξεργάσιμη από τους χρήστες του ρόλου -apps/frappe/frappe/desk/form/assign_to.py +151,"The task {0}, that you assigned to {1}, has been closed by {2}.","Το έργο {0}, που έχετε αντιστοιχίσει {1}, έχει κλείσει από {2}." +apps/frappe/frappe/desk/form/assign_to.py +154,"The task {0}, that you assigned to {1}, has been closed by {2}.","Το έργο {0}, που έχετε αντιστοιχίσει {1}, έχει κλείσει από {2}." DocType: Print Format,Show Line Breaks after Sections,Εμφάνιση αλλαγές γραμμής μετά Ενότητες +DocType: Communication,Read by Recipient On,Διαβάστε από τον παραλήπτη στις DocType: Blogger,Short Name,Σύντομη ονομασία -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +75,Page {0},Σελίδα {0} +apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +90,Page {0},Σελίδα {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +110,Linked with {0},Συνδέεται με {0} apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"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\ @@ -1979,20 +2028,20 @@ DocType: Communication,Feedback,Ανατροφοδότηση apps/frappe/frappe/public/js/frappe/form/controls/base_control.js +117,Open Translation,Ανοιχτή μετάφραση apps/frappe/frappe/templates/emails/recurring_document_failed.html +11,This email is autogenerated,Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου δημιουργείται αυτόματα DocType: Workflow State,Icon will appear on the button,Το εικονίδιο θα εμφανιστεί στο κουμπί -apps/frappe/frappe/public/js/frappe/socketio_client.js +290,Socketio is not connected. Cannot upload,Το Socketio δεν είναι συνδεδεμένο. Δεν είναι δυνατή η μεταφόρτωση +apps/frappe/frappe/public/js/frappe/socketio_client.js +295,Socketio is not connected. Cannot upload,Το Socketio δεν είναι συνδεδεμένο. Δεν είναι δυνατή η μεταφόρτωση DocType: Website Settings,Website Settings,Ρυθμίσεις δικτυακού τόπου apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Month,Μήνας DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,PROTIP: Προσθέστε Reference: {{ reference_doctype }} {{ reference_name }} για να στείλει έγγραφο αναφοράς DocType: DocField,Fetch From,Λήψη από apps/frappe/frappe/modules/utils.py +205,App not found,Δεν βρέθηκε η εφαρμογή -apps/frappe/frappe/core/doctype/communication/communication.py +51,Cannot create a {0} against a child document: {1},Δεν μπορείτε να δημιουργήσετε ένα {0} κατά ένα έγγραφο παιδί: {1} +apps/frappe/frappe/core/doctype/communication/communication.py +70,Cannot create a {0} against a child document: {1},Δεν μπορείτε να δημιουργήσετε ένα {0} κατά ένα έγγραφο παιδί: {1} DocType: Social Login Key,Social Login Key,Κλειδί κοινωνικής σύνδεσης DocType: Portal Settings,Custom Sidebar Menu,Προσαρμοσμένη Sidebar Μενού DocType: Workflow State,pencil,Μολύβι apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Συνομιλία μηνύματα και άλλες ειδοποιήσεις. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +85,Insert After cannot be set as {0},Εισάγετε Μετά δεν μπορεί να οριστεί ως {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Μοιραστείτε {0} με -apps/frappe/frappe/public/js/frappe/desk.js +133,Email Account setup please enter your password for: ,"Ρύθμιση λογαριασμού ηλεκτρονικού ταχυδρομείου, παρακαλούμε εισάγετε τον κωδικό σας για:" +apps/frappe/frappe/public/js/frappe/desk.js +137,Email Account setup please enter your password for: ,"Ρύθμιση λογαριασμού ηλεκτρονικού ταχυδρομείου, παρακαλούμε εισάγετε τον κωδικό σας για:" DocType: Workflow State,hand-up,Hand-up DocType: Blog Settings,Writers Introduction,Εισαγωγή συγγραφέων DocType: Address,Phone,Τηλέφωνο @@ -2000,18 +2049,17 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +149,Selec DocType: Contact,Passive,Αδρανής DocType: Contact,Accounts Manager,Διαχειριστής λογαριασμών apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Η πληρωμή σας ακυρώνεται. -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1002,Select File Type,Επιλογή τύπου αρχείου +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +723,Select File Type,Επιλογή τύπου αρχείου apps/frappe/frappe/core/doctype/success_action/success_action.js +58,View All,Προβολή όλων DocType: Help Article,Knowledge Base Editor,Γνώση Επεξεργαστής Βάσης apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Η σελίδα δεν βρέθηκε DocType: DocField,Precision,Ακρίβεια DocType: Website Slideshow,Slideshow Items,Παρουσίαση ειδών apps/frappe/frappe/utils/password_strength.py +110,Try to avoid repeated words and characters,Προσπαθήστε να αποφύγετε επαναλαμβανόμενες λέξεις και χαρακτήρες -apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.py +19,There are failed runs with the same Data Migration Plan,Υπάρχουν αποτυχημένες διαδρομές με το ίδιο Σχέδιο μετεγκατάστασης δεδομένων DocType: Event,Groups,Ομάδες DocType: Workflow Action,Workflow State,Κατάσταση ροής εργασίας apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,σειρές Προστέθηκε -apps/frappe/frappe/www/update-password.html +171,Success! You are good to go 👍,Επιτυχία! Είστε καλά να πάτε 👍 +apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,Επιτυχία! Είστε καλά να πάτε 👍 apps/frappe/frappe/www/me.html +3,My Account,Ο Λογαριασμός Μου DocType: ToDo,Allocated To,Που διατίθενται για apps/frappe/frappe/templates/emails/password_reset.html +2,Please click on the following link to set your new password,Παρακαλώ κάντε κλικ στον παρακάτω σύνδεσμο για να ορίσετε νέο κωδικό πρόσβασης @@ -2019,36 +2067,39 @@ DocType: Notification,Days After,Ημέρες Μετά DocType: Newsletter,Receipient,παραλήπτης DocType: Contact Us Settings,Settings for Contact Us Page,Ρυθμίσεις για τη σελίδα επικοινωνίας. DocType: Custom Script,Script Type,Τύπος script +DocType: Print Settings,Enable Print Server,Ενεργοποιήστε τον διακομιστή εκτύπωσης apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} weeks ago,Πριν από {0} εβδομάδες DocType: Auto Repeat,Auto Repeat Schedule,Πρόγραμμα αυτόματης επανάληψης DocType: Email Account,Footer,Υποσέλιδο apps/frappe/frappe/config/integrations.py +48,Authentication,Αυθεντικοποίηση apps/frappe/frappe/utils/verified_command.py +44,Invalid Link,Άκυρη Σύνδεσμος +DocType: Web Form,Client Script,Σενάριο πελάτη DocType: Web Page,Show Title,Εμφάνιση τίτλου DocType: Chat Message,Direct,Απευθείας DocType: Property Setter,Property Type,Τύπος ιδιότητας DocType: Workflow State,screenshot,Screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Μόνο ο διαχειριστής μπορεί να αποθηκεύσει μια πρότυπη έκθεση. Παρακαλώ να μετονομάσετε και να αποθηκεύσετε. DocType: System Settings,Background Workers,Οι εργαζόμενοι φόντο -apps/frappe/frappe/core/doctype/doctype/doctype.py +842,Fieldname {0} conflicting with meta object,Όνομα πεδίου {0} που έρχεται σε σύγκρουση με αντικείμενο meta +apps/frappe/frappe/core/doctype/doctype/doctype.py +885,Fieldname {0} conflicting with meta object,Όνομα πεδίου {0} που έρχεται σε σύγκρουση με αντικείμενο meta DocType: Deleted Document,Data,Δεδομένα apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Κατάσταση εγγράφου apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Κάνατε {0} από {1} DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Κωδικός Εξουσιοδότησης -apps/frappe/frappe/core/doctype/data_import/importer.py +316,Not allowed to Import,Δεν επιτρέπεται η εισαγωγή +apps/frappe/frappe/core/doctype/data_import/importer.py +315,Not allowed to Import,Δεν επιτρέπεται η εισαγωγή DocType: Deleted Document,Deleted DocType,διαγράφεται DocType apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Επίπεδα δικαιωμάτων DocType: Workflow State,Warning,Προειδοποίηση DocType: Data Migration Run,Percent Complete,Το ποσοστό ολοκληρώνεται DocType: Tag Category,Tag Category,Tag Κατηγορία -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +787,"Ignoring Item {0}, because a group exists with the same name!","Αγνοώντας Θέση {0} , διότι υπάρχει μια ομάδα με το ίδιο όνομα !" -apps/frappe/frappe/core/doctype/data_import/data_import.js +56,Help,Βοήθεια +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +788,"Ignoring Item {0}, because a group exists with the same name!","Αγνοώντας Θέση {0} , διότι υπάρχει μια ομάδα με το ίδιο όνομα !" +apps/frappe/frappe/core/doctype/data_import/data_import.js +64,Help,Βοήθεια DocType: User,Login Before,Είσοδος πριν από DocType: Web Page,Insert Style,Εισαγωγή style apps/frappe/frappe/config/setup.py +276,Application Installer,Εγκατάσταση εφαρμογών -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +899,New Report name,Νέο όνομα Έκθεση +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +788,New Report name,Νέο όνομα Έκθεση +apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +150,Hide Weekends,Απόκρυψη Σαββατοκύριακων DocType: Workflow State,info-sign,Info-sign -apps/frappe/frappe/model/base_document.py +217,Value for {0} cannot be a list,Σχέση {0} δεν μπορεί να είναι μια λίστα +apps/frappe/frappe/model/base_document.py +226,Value for {0} cannot be a list,Σχέση {0} δεν μπορεί να είναι μια λίστα DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Πώς θα πρέπει αυτό το νόμισμα να μορφοποιηθεί; Αν δεν έχει οριστεί, θα χρησιμοποιήσει τις προεπιλογές του συστήματος" apps/frappe/frappe/public/js/frappe/list/list_view.js +1013,Submit {0} documents?,Υποβάλετε {0} έγγραφα; apps/frappe/frappe/utils/response.py +143,You need to be logged in and have System Manager Role to be able to access backups.,Θα πρέπει να είστε συνδεδεμένοι στο σύστημα και να έχετε ρόλο διαχειριστή συστήματος για να έχετε πρόσβαση σε αντίγραφα ασφαλείας. @@ -2059,6 +2110,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +339,Fieldtyp apps/frappe/frappe/public/js/frappe/roles_editor.js +194,Role Permissions,Δικαιώματα ρόλου DocType: Help Article,Intermediate,Ενδιάμεσος apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cancelled Document restored as Draft,Ακυρωμένο έγγραφο που έχει αποκατασταθεί ως σχέδιο +DocType: Data Migration Run,Start Time,Ώρα έναρξης apps/frappe/frappe/model/delete_doc.py +259,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Δεν μπορεί να διαγραφεί ή να ακυρωθεί επειδή {0} {1} συνδέεται με {2} {3} {4} apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Μπορεί Διαβάστε apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +292,{0} Chart,{0} Διάγραμμα @@ -2069,6 +2121,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +43,Workflow will start aft apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Να μοιραστείτε apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Μη έγκυρη διεύθυνση παραλήπτη DocType: Workflow State,step-forward,Βήμα προς τα εμπρός +DocType: System Settings,Allow Login After Fail,Να επιτρέπεται η σύνδεση μετά από αποτυχία apps/frappe/frappe/limits.py +69,Your subscription has expired.,Η συνδρομή σας έχει λήξει. DocType: Role Permission for Page and Report,Set Role For,Ορισμός του ρόλου DocType: GCalendar Account,The name that will appear in Google Calendar,Το όνομα που θα εμφανιστεί στο Ημερολόγιο Google @@ -2077,7 +2130,7 @@ DocType: Event,Starts on,Ξεκινά στις DocType: System Settings,System Settings,Ρυθμίσεις συστήματος DocType: GCalendar Settings,Google API Credentials,Τα διαπιστευτήρια API Google apps/frappe/frappe/public/js/frappe/desk.js +36,Session Start Failed,Η έναρξη της περιόδου σύνδεσης απέτυχε -apps/frappe/frappe/email/queue.py +499,This email was sent to {0} and copied to {1},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη σε {0} και να αντιγραφεί {1} +apps/frappe/frappe/email/queue.py +511,This email was sent to {0} and copied to {1},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη σε {0} και να αντιγραφεί {1} DocType: Workflow State,th,Th DocType: Social Login Key,Provider Name,Ονομα πάροχου apps/frappe/frappe/public/js/frappe/form/controls/link.js +172,Create a new {0},Δημιουργία νέου {0} @@ -2091,35 +2144,38 @@ DocType: System Settings,Choose authentication method to be used by all users,Ε apps/frappe/frappe/public/js/frappe/list/bulk_operations.js +3,Doctype required,Το Doctype απαιτείται DocType: Workflow State,ok-sign,Ok-sign apps/frappe/frappe/config/setup.py +146,Deleted Documents,Διαγραμμένα έγγραφα -apps/frappe/frappe/public/js/frappe/form/grid.js +681,The CSV format is case sensitive,Η μορφή CSV είναι ευαίσθητη στις πεζά +apps/frappe/frappe/public/js/frappe/form/grid.js +682,The CSV format is case sensitive,Η μορφή CSV είναι ευαίσθητη στις πεζά apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +166,Desktop Icon already exists,Το εικονίδιο επιφάνειας εργασίας υπάρχει ήδη apps/frappe/frappe/public/js/frappe/form/toolbar.js +142,Duplicate,Διπλότυπο DocType: Newsletter,Create and Send Newsletters,Δημιουργήστε και στείλτε τα ενημερωτικά δελτία -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +302,From Date must be before To Date,Το πεδίο Από την ημερομηνία πρέπει να είναι προγενέστερο του έως ημερομηνία +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +303,From Date must be before To Date,Το πεδίο Από την ημερομηνία πρέπει να είναι προγενέστερο του έως ημερομηνία DocType: Address,Andaman and Nicobar Islands,Νήσων Ανταμάν και Νικομπάρ -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +248,GSuite Document,Έγγραφο GSuite -apps/frappe/frappe/email/doctype/notification/notification.py +40,Please specify which value field must be checked,Παρακαλώ ορίστε ποιο πεδίο τιμής πρέπει να ελεγχθεί +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +243,GSuite Document,Έγγραφο GSuite +apps/frappe/frappe/email/doctype/notification/notification.py +39,Please specify which value field must be checked,Παρακαλώ ορίστε ποιο πεδίο τιμής πρέπει να ελεγχθεί apps/frappe/frappe/core/doctype/data_import/exporter.py +71,"""Parent"" signifies the parent table in which this row must be added",H λέξη «γονικός» δηλώνει το γονικό πίνακα στον οποίο πρέπει να προστεθεί αυτή η σειρά apps/frappe/frappe/email/queue.py +242,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,Δεν είναι δυνατή η αποστολή αυτού του μηνύματος. Έχετε περάσει το όριο αποστολής {0} ηλεκτρονικών μηνυμάτων για αυτήν την ημέρα. DocType: Website Theme,Apply Style,Εφαρμογή στυλ DocType: Feedback Request,Feedback Rating,feedback Αξιολόγηση apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Κοινόχρηστο Με +apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js +7,Attach files / urls and add in table.,Επισύναψη αρχείων / urls και προσθήκη στον πίνακα. DocType: Help Category,Help Articles,άρθρα Βοήθειας apps/frappe/frappe/core/doctype/data_import/exporter.py +271,Type:,Τύπος: apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Η πληρωμή σας απέτυχε. DocType: Communication,Unshared,επιμερισμένα DocType: Address,Karnataka,Καρνάτακα apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Η λειτουργική μονάδα δεν βρέθηκε -apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +74,{0}: {1} is set to state {2},{0}: {1} έχει οριστεί σε κατάσταση {2} +apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py +97,{0}: {1} is set to state {2},{0}: {1} έχει οριστεί σε κατάσταση {2} DocType: User,Location,Τοποθεσία ,Permitted Documents For User,Επιτρεπόμενα έγγραφα για το χρήστη apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Θα πρέπει να έχετε άδεια ""Κοινοποίησης""" DocType: Communication,Assignment Completed,εκχώρηση Ολοκληρώθηκε -apps/frappe/frappe/public/js/frappe/form/grid.js +677,Bulk Edit {0},Μαζική Επεξεργασία {0} +apps/frappe/frappe/public/js/frappe/form/grid.js +678,Bulk Edit {0},Μαζική Επεξεργασία {0} +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +261,Download Report,Λήψη αναφοράς apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js +7,Not active,Ανενεργό DocType: About Us Settings,Settings for the About Us Page,Ρυθμίσεις για τη σελίδα προφίλ. apps/frappe/frappe/config/integrations.py +28,Stripe payment gateway settings,Ρυθμίσεις πύλης πληρωμής DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,π.χ. pop.gmail.com / imap.gmail.com +DocType: User,Generate Keys,Δημιουργία κλειδιών apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +245,Use the field to filter records,Χρησιμοποιήστε το πεδίο για να φιλτράρετε τις εγγραφές DocType: DocType,View Settings,Ρυθμίσεις προβολής DocType: Email Account,Outlook.com,Outlook.com @@ -2129,12 +2185,12 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +143,"Clearing end date, DocType: User,Send Me A Copy of Outgoing Emails,Στείλτε μου ένα αντίγραφο των εξερχόμενων μηνυμάτων ηλεκτρονικού ταχυδρομείου DocType: System Settings,Scheduler Last Event,Χρονοδιάγραμμα Τελευταία Εκδήλωση DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Προσθέστε το google analytics id: παράδειγμα. Ua-89xxx57-1. Παρακαλώ ψάξτε στη βοήθεια του google analytics για περισσότερες πληροφορίες. -apps/frappe/frappe/utils/password.py +131,Password cannot be more than 100 characters long,Ο κωδικός πρόσβασης δεν μπορεί να υπερβαίνει τους 100 χαρακτήρες +apps/frappe/frappe/utils/password.py +137,Password cannot be more than 100 characters long,Ο κωδικός πρόσβασης δεν μπορεί να υπερβαίνει τους 100 χαρακτήρες DocType: OAuth Client,App Client ID,App ID πελάτη DocType: Kanban Board,Kanban Board Name,Όνομα Kanban Διοικητικό Συμβούλιο DocType: Notification Recipient,"Expression, Optional","Έκφραση, προαιρετικά" DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Αντιγράψτε και επικολλήστε αυτόν τον κώδικα και αδειάστε το Code.gs στο έργο σας στο script.google.com -apps/frappe/frappe/email/queue.py +501,This email was sent to {0},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου στάλθηκε στο {0} +apps/frappe/frappe/email/queue.py +513,This email was sent to {0},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου στάλθηκε στο {0} DocType: System Settings,Hide footer in auto email reports,Απόκρυψη υποσέλιδου στις αναφορές μηνυμάτων ηλεκτρονικού ταχυδρομείου DocType: DocField,Remember Last Selected Value,Θυμηθείτε Τελευταία επιλεγμένη τιμή DocType: Email Account,Check this to pull emails from your mailbox,Επιλέξτε αυτό για να γίνει λήψη των μηνυμάτων από το γραμματοκιβώτιό σας @@ -2150,15 +2206,16 @@ apps/frappe/frappe/utils/nestedset.py +78,Nested set error. Please contact the A apps/frappe/frappe/www/search_docs.py +13,"Documentation Results for ""{0}""",Αποτελέσματα τεκμηρίωσης για "{0}" DocType: Workflow State,envelope,Φάκελος apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Επιλογή 2 +apps/frappe/frappe/utils/print_format.py +128,Printing failed,Η εκτύπωση απέτυχε DocType: Feedback Trigger,Email Field,email πεδίο -apps/frappe/frappe/www/update-password.html +68,New Password Required.,Απαιτείται νέος κωδικός πρόσβασης. +apps/frappe/frappe/www/update-password.html +60,New Password Required.,Απαιτείται νέος κωδικός πρόσβασης. apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} Μοιράστηκε αυτό το έγγραφο με {1} -apps/frappe/frappe/public/js/frappe/ui/comment.js +217,Add your review,Προσθέστε την κριτική σας +apps/frappe/frappe/public/js/frappe/ui/comment.js +221,Add your review,Προσθέστε την κριτική σας DocType: Website Settings,Brand Image,brand Εικόνα DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Ρύθμιση της επάνω γραμμή πλοήγησης, του υποσέλιδου και του λογότυπου." DocType: Web Form Field,Max Value,Μέγιστη τιμή -apps/frappe/frappe/core/doctype/doctype/doctype.py +720,For {0} at level {1} in {2} in row {3},Για {0} σε επίπεδο {1} στο {2} στη γραμμή {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +763,For {0} at level {1} in {2} in row {3},Για {0} σε επίπεδο {1} στο {2} στη γραμμή {3} DocType: User Social Login,User Social Login,Κοινωνική σύνδεση χρήστη DocType: Contact,All,Όλα DocType: Email Queue,Recipient,Παραλήπτης @@ -2167,27 +2224,27 @@ DocType: Address,Sales User,Χρήστης πωλήσεων apps/frappe/frappe/config/setup.py +190,Drag and Drop tool to build and customize Print Formats.,Drag and drop εργαλείο για την δημιουργία και προσαρμογή των μορφών εκτύπωσης. DocType: Address,Sikkim,Sikkim apps/frappe/frappe/public/js/frappe/form/link_selector.js +142,Set,Σετ -apps/frappe/frappe/desk/search.py +71,This query style is discontinued,Αυτό το στυλ ερωτήματος διακόπτεται +apps/frappe/frappe/desk/search.py +84,This query style is discontinued,Αυτό το στυλ ερωτήματος διακόπτεται DocType: Notification,Trigger Method,Μέθοδος σκανδάλη -apps/frappe/frappe/utils/data.py +819,Operator must be one of {0},Ο χειριστής πρέπει να είναι ένας από τους {0} +apps/frappe/frappe/utils/data.py +824,Operator must be one of {0},Ο χειριστής πρέπει να είναι ένας από τους {0} DocType: Dropbox Settings,Dropbox Access Token,Dockbox Access Token DocType: Workflow State,align-right,Ευθυγράμμιση δεξιά DocType: Auto Email Report,Email To,E-mail Για να apps/frappe/frappe/core/doctype/file/file.py +235,Folder {0} is not empty,Φάκελο {0} δεν είναι άδειο DocType: Page,Roles,Ρόλοι -apps/frappe/frappe/model/base_document.py +399,Error: Value missing for {0}: {1},Σφάλμα: Λείπει τιμή για {0}: {1} -apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +156,Field {0} is not selectable.,Το πεδίο {0} δεν είναι επιλέξιμο . +apps/frappe/frappe/model/base_document.py +408,Error: Value missing for {0}: {1},Σφάλμα: Λείπει τιμή για {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +158,Field {0} is not selectable.,Το πεδίο {0} δεν είναι επιλέξιμο . DocType: Webhook,Webhook,Webhook DocType: System Settings,Session Expiry,Λήξη συνεδρίας DocType: Workflow State,ban-circle,Ban-circle apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +40,Slack Webhook Error,Σφάλμα Webhook Slack DocType: Email Flag Queue,Unread,Αδιάβαστος DocType: Auto Repeat,Desk,Γραφείο -apps/frappe/frappe/utils/data.py +801,Filter must be a tuple or list (in a list),Το φίλτρο πρέπει να είναι πλειάδα ή λίστα (σε μια λίστα) +apps/frappe/frappe/utils/data.py +805,Filter must be a tuple or list (in a list),Το φίλτρο πρέπει να είναι πλειάδα ή λίστα (σε μια λίστα) apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Γράψτε ένα ερώτημα select. Σημείωση: το αποτέλεσμα δεν σελιδοποιείται (όλα τα δεδομένα αποστέλλονται σε μια δόση). DocType: Email Account,Attachment Limit (MB),Όριο συνημμένο (mb) DocType: Address,Arunachal Pradesh,Arunachal Pradesh -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +1033,Setup Auto Email,Ρύθμιση Auto Email +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Ρύθμιση Auto Email apps/frappe/frappe/public/js/frappe/form/grid_row_form.js +64,Ctrl + Down,Ctrl + Down DocType: Chat Profile,Message Preview,Προεπισκόπηση μηνυμάτων apps/frappe/frappe/utils/password_strength.py +173,This is a top-10 common password.,Αυτό είναι ένα κοινό κωδικό top-10. @@ -2210,7 +2267,7 @@ DocType: OAuth Client,Implicit,Σιωπηρή DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Προσάρτηση ως επικοινωνία αυτού του τύπου εγγράφου (πρέπει να έχει πεδία, ""Κατάσταση"", ""θέμα"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URIs για τη λήψη κωδικού εξουσιοδότησης μόλις ο χρήστης επιτρέπει την πρόσβαση, καθώς και τις απαντήσεις αποτυχία. Συνήθως ένα τελικό σημείο ΥΠΟΛΟΙΠΟ εκτίθεται από τον Πελάτη App.
π.χ. http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +575,Not allowed to change {0} after submission,Δεν επιτρέπεται να αλλάξετε {0} μετά την υποβολή +apps/frappe/frappe/model/base_document.py +584,Not allowed to change {0} after submission,Δεν επιτρέπεται να αλλάξετε {0} μετά την υποβολή DocType: Data Migration Mapping,Migration ID Field,Πεδίο ταυτότητας μετανάστευσης DocType: Communication,Comment Type,Τύπος σχολίου DocType: OAuth Client,OAuth Client,πελάτη OAuth @@ -2222,6 +2279,7 @@ DocType: DocField,Signature,Υπογραφή apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Κοινοποίηση σε apps/frappe/frappe/core/page/permission_manager/permission_manager.js +145,Loading,Φόρτωση apps/frappe/frappe/config/integrations.py +53,"Enter keys to enable login via Facebook, Google, GitHub.","Εισάγετε κλειδιά για να ενεργοποιήσετε την είσοδο μέσω του facebook, google, github." +DocType: Data Import,Insert new records,Εισάγετε νέες εγγραφές apps/frappe/frappe/core/doctype/file/file.py +376,Unable to read file format for {0},Δεν είναι δυνατή η ανάγνωση της μορφής αρχείου για το {0} DocType: Auto Email Report,Filter Data,Φιλτράρετε δεδομένα apps/frappe/frappe/public/js/frappe/form/controls/select.js +61,Please attach a file first.,Παρακαλώ επισυνάψτε ένα αρχείο πρώτα. @@ -2238,7 +2296,7 @@ DocType: DocType,Title Case,Γραφή τίτλου DocType: Data Migration Run,Data Migration Run,Εκτέλεση της μετεγκατάστασης δεδομένων DocType: Blog Post,Email Sent,Το email απεστάλη DocType: DocField,Ignore XSS Filter,Αγνοήστε XSS φίλτρο -apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +510,removed,αφαιρεθεί +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +517,removed,αφαιρεθεί apps/frappe/frappe/config/integrations.py +38,Dropbox backup settings,Ρυθμίσεις Dropbox αντιγράφων ασφαλείας apps/frappe/frappe/public/js/frappe/views/communication.js +85,Send As Email,Αποστολή ως e-mail DocType: Website Theme,Link Color,Χρώμα δεσμού @@ -2254,22 +2312,23 @@ apps/frappe/frappe/config/integrations.py +58,LDAP Settings,Ρυθμίσεις L apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +15,Entity Name,Ονομα οντότητας apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Για την τροποποίηση του apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Ρυθμίσεις πύλη πληρωμών PayPal -apps/frappe/frappe/model/base_document.py +553,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) θα πάρει περικοπεί, όπως max χαρακτήρων που επιτρέπονται είναι {2}" +apps/frappe/frappe/model/base_document.py +562,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) θα πάρει περικοπεί, όπως max χαρακτήρων που επιτρέπονται είναι {2}" DocType: OAuth Client,Response Type,Τύπος απάντηση DocType: Contact Us Settings,Send enquiries to this email address,Στείλτε ερωτήματα σε αυτή τη διεύθυνση ηλεκτρονικού ταχυδρομείου DocType: Letter Head,Letter Head Name,Όνομα κεφαλίδας επιστολόχαρτου DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Αριθμός στήλες για ένα πεδίο σε μια προβολή λίστας ή πλέγματος (Σύνολο στηλών θα πρέπει να είναι μικρότερο από 11) apps/frappe/frappe/config/website.py +18,User editable form on Website.,Η φόρμα στην ιστοσελίδα είναι επεξεργάσιμη από το χρήστη. DocType: Workflow State,file,Αρχείο -apps/frappe/frappe/www/login.html +90,Back to Login,Επιστροφή στην Είσοδος +apps/frappe/frappe/www/login.html +91,Back to Login,Επιστροφή στην Είσοδος DocType: Data Migration Mapping,Local DocType,Τοπικό DocType apps/frappe/frappe/model/rename_doc.py +165,You need write permission to rename,Χρειάζεται δικαίωμα εγγραφής για να μετονομάσετε +DocType: Email Account,Use ASCII encoding for password,Χρησιμοποιήστε την κωδικοποίηση ASCII για τον κωδικό πρόσβασης DocType: User,Karma,Κάρμα DocType: DocField,Table,Πίνακας DocType: File,File Size,Μέγεθος αρχείου -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Θα πρέπει να συνδεθείτε για να υποβάλετε το αυτή τη φόρμα +apps/frappe/frappe/website/doctype/web_form/web_form.py +406,You must login to submit this form,Θα πρέπει να συνδεθείτε για να υποβάλετε το αυτή τη φόρμα DocType: User,Background Image,Εικόνα φόντου -apps/frappe/frappe/email/doctype/notification/notification.py +85,Cannot set Notification on Document Type {0},Δεν είναι δυνατή η ρύθμιση της ειδοποίησης σχετικά με τον τύπο εγγράφου {0} +apps/frappe/frappe/email/doctype/notification/notification.py +84,Cannot set Notification on Document Type {0},Δεν είναι δυνατή η ρύθμιση της ειδοποίησης σχετικά με τον τύπο εγγράφου {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +386,"Select your Country, Time Zone and Currency",Επιλέξτε τη χώρα σας και ελέγξτε την ζώνη ώρας και το νόμισμα. apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js +20,Between,Μεταξύ @@ -2278,7 +2337,7 @@ DocType: Braintree Settings,Use Sandbox,χρήση Sandbox apps/frappe/frappe/utils/goal.py +101,This month,Αυτο το μηνα apps/frappe/frappe/public/js/frappe/form/print.js +102,New Custom Print Format,Νέα προσαρμοσμένη μορφή Εκτύπωση DocType: Custom DocPerm,Create,Δημιουργία -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +198,Invalid Filter: {0},Άκυρα Φίλτρο : {0} +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +199,Invalid Filter: {0},Άκυρα Φίλτρο : {0} DocType: Email Account,no failed attempts,Δεν αποτυχημένες προσπάθειες DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,App Κλειδί Πρόσβασης @@ -2287,7 +2346,7 @@ DocType: Chat Room,Last Message,Τελευταίο μήνυμα DocType: OAuth Bearer Token,Access Token,Η πρόσβαση παραχωρήθηκε DocType: About Us Settings,Org History,Ιστορικό οργανισμού apps/frappe/frappe/core/page/usage_info/usage_info.html +66,Backup Size:,Μέγεθος αντιγράφων ασφαλείας: -apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +314,Auto Repeat has been {0},Η αυτόματη επανάληψη έχει {0} +apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py +319,Auto Repeat has been {0},Η αυτόματη επανάληψη έχει {0} DocType: Auto Repeat,Next Schedule Date,Επόμενη ημερομηνία προγραμματισμού DocType: Workflow,Workflow Name,Όνομα ροής εργασιών DocType: DocShare,Notify by Email,Ειδοποίηση με e-mail @@ -2296,10 +2355,10 @@ DocType: Web Form,Allow Edit,Επιτρέψτε επεξεργασία apps/frappe/frappe/public/js/frappe/views/file/file_view.js +58,Paste,Πάστα DocType: Webhook,Doc Events,Συμβάντα εγγράφων DocType: Auto Email Report,Based on Permissions For User,Με βάση τις Άδειες για το χρήστη -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +65,Cannot change state of Cancelled Document. Transition row {0},Δεν μπορεί να αλλάξει η κατάσταση ενός ακυρωμένου εγγράφου. Γραμμή μετάβασης {0} +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +66,Cannot change state of Cancelled Document. Transition row {0},Δεν μπορεί να αλλάξει η κατάσταση ενός ακυρωμένου εγγράφου. Γραμμή μετάβασης {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Κανόνες για τη μετάβαση μεταξύ καταστάσεων, για παραάδειγμα η επόμενη και κατάσταση και ποιος ρόλος μπορεί να αλλάξει την κατάσταση, κλπ." apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} Υπάρχει ήδη -apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},Προσάρτηση Για να μπορεί να είναι ένα από τα {0} +apps/frappe/frappe/email/doctype/email_account/email_account.py +87,Append To can be one of {0},Προσάρτηση Για να μπορεί να είναι ένα από τα {0} DocType: DocType,Image View,Προβολή εικόνας apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +178,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Μοιάζει με κάτι πήγε στραβά κατά τη διάρκεια της συναλλαγής. Από τη στιγμή που δεν έχουν επιβεβαιώσει την πληρωμή, Paypal, θα σας επιστρέψουμε αυτόματα αυτό το ποσό. Αν δεν το κάνει, παρακαλούμε να μας στείλετε ένα email και αναφέρουν το αναγνωριστικό Συσχέτιση: {0}." apps/frappe/frappe/public/js/frappe/form/controls/password.js +46,"Include symbols, numbers and capital letters in the password","Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης" @@ -2309,7 +2368,6 @@ DocType: List Filter,List Filter,Λίστα φίλτρου DocType: Workflow State,signal,Σήμα apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +105,Has Attachments,Έχει συνημμένα DocType: DocType,Show Print First,Προβολή εκτύπωσης πρώτα -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Ρύθμιση> Χρήστης apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Δημιουργήστε ένα νέο {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +169,New Email Account,Νέος λογαριασμός ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +30,Document Restored,Επισκευή εγγράφου @@ -2335,7 +2393,7 @@ DocType: Web Form,Web Form Fields,Πεδία φόρμας ιστοσελίδας DocType: Website Theme,Top Bar Text Color,Top Bar Χρώμα κειμένου DocType: Auto Repeat,Amended From,Τροποποίηση από apps/frappe/frappe/public/js/frappe/model/meta.js +163,Warning: Unable to find {0} in any table related to {1},Προειδοποίηση: Ανίκανος να βρει {0} σε κάθε τραπέζι που σχετίζονται με {1} -apps/frappe/frappe/model/document.py +1210,This document is currently queued for execution. Please try again,Αυτό το έγγραφο αυτή τη στιγμή στην ουρά για εκτέλεση. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα +apps/frappe/frappe/model/document.py +1211,This document is currently queued for execution. Please try again,Αυτό το έγγραφο αυτή τη στιγμή στην ουρά για εκτέλεση. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα apps/frappe/frappe/core/doctype/file/file.py +403,File '{0}' not found,Αρχείο '{0}' δεν βρέθηκε apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Κατάργηση τμήματος DocType: User,Change Password,Άλλαξε κωδικό @@ -2345,19 +2403,20 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +352,Hello!,Γειά apps/frappe/frappe/config/integrations.py +13,Braintree payment gateway settings,Ρυθμίσεις πύλης πληρωμής Braintree apps/frappe/frappe/desk/doctype/event/event.py +24,Event end must be after start,Η λήξη συμβάντος πρέπει να είναι μετά την έναρξη apps/frappe/frappe/www/third_party_apps.html +27,This will log out {0} from all other devices,Αυτό θα αποσυνδεθεί {0} από όλες τις άλλες συσκευές -apps/frappe/frappe/desk/query_report.py +24,You don't have permission to get a report on: {0},Δεν έχετε άδεια για να πάρετε μια έκθεση σχετικά με: {0} +apps/frappe/frappe/desk/query_report.py +26,You don't have permission to get a report on: {0},Δεν έχετε άδεια για να πάρετε μια έκθεση σχετικά με: {0} DocType: System Settings,Apply Strict User Permissions,Εφαρμόστε αυστηρά δικαιώματα χρήστη DocType: DocField,Allow Bulk Edit,Να επιτρέπεται η μαζική επεξεργασία DocType: Blog Post,Blog Post,Δημοσίευση blog -apps/frappe/frappe/public/js/frappe/form/controls/link.js +182,Advanced Search,Σύνθετη αναζήτηση +apps/frappe/frappe/public/js/frappe/form/controls/link.js +185,Advanced Search,Σύνθετη αναζήτηση apps/frappe/frappe/email/doctype/newsletter/newsletter.py +115,You are not permitted to view the newsletter.,Δεν επιτρέπεται να βλέπετε το ενημερωτικό δελτίο. -apps/frappe/frappe/core/doctype/user/user.py +819,Password reset instructions have been sent to your email,Οι οδηγίες επαναφοράς κωδικού πρόσβασης έχουν αποσταλθεί στο e-mail σας +apps/frappe/frappe/core/doctype/user/user.py +813,Password reset instructions have been sent to your email,Οι οδηγίες επαναφοράς κωδικού πρόσβασης έχουν αποσταλθεί στο e-mail σας apps/frappe/frappe/core/page/permission_manager/permission_manager.js +376,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Το επίπεδο 0 είναι για δικαιώματα επιπέδου εγγράφου, \ υψηλότερα επίπεδα για δικαιώματα πεδίου." apps/frappe/frappe/core/doctype/data_import/data_import.py +24,Can't save the form as data import is in progress.,Δεν είναι δυνατή η αποθήκευση της φόρμας καθώς η εισαγωγή δεδομένων βρίσκεται σε εξέλιξη. +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Sort By,Ταξινόμηση DocType: Workflow,States,Καταστάσεις DocType: Notification,Attach Print,Συνδέστε Εκτύπωση -apps/frappe/frappe/core/doctype/user/user.py +454,Suggested Username: {0},Προτεινόμενη Όνομα Χρήστη: {0} +apps/frappe/frappe/core/doctype/user/user.py +448,Suggested Username: {0},Προτεινόμενη Όνομα Χρήστη: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +144,Day,Ημέρα ,Modules,ενότητες apps/frappe/frappe/core/doctype/user/user.js +74,Set Desktop Icons,Ορίστε εικονίδια της επιφάνειας εργασίας @@ -2367,11 +2426,11 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js +106,Error in upload DocType: OAuth Bearer Token,Revoked,ανακλήθηκε DocType: Web Page,Sidebar and Comments,Sidebar και Σχόλια apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Όταν τροποποιείτε ένα έγγραφο μετά ακυρώστε και αποθηκεύστε το, θα πάρει ένα νέο αριθμό που είναι μια έκδοση του παλιού αριθμού." -apps/frappe/frappe/email/doctype/notification/notification.py +196,"Not allowed to attach {0} document, +apps/frappe/frappe/email/doctype/notification/notification.py +200,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Δεν επιτρέπεται η προσάρτηση εγγράφου {0}, ενεργοποιήστε την επιλογή Να επιτρέπεται η εκτύπωση για {0} στις ρυθμίσεις εκτύπωσης" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py +21,See the document at {0},Δείτε το έγγραφο στο {0} DocType: Stripe Settings,Publishable Key,Κλειδί δημοσίευσης -apps/frappe/frappe/core/doctype/data_import/data_import.js +68,Start Import,Έναρξη εισαγωγής +apps/frappe/frappe/core/doctype/data_import/data_import.js +76,Start Import,Έναρξη εισαγωγής DocType: Workflow State,circle-arrow-left,Circle-arrow-left apps/frappe/frappe/sessions.py +134,Redis cache server not running. Please contact Administrator / Tech support,Ο διακομιστής cache Redis δεν λειτουργεί. Παρακαλώ επικοινωνήστε με το διαχειριστή / τεχνική υποστήριξη apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Δημιουργία νέας εγγραφής @@ -2379,7 +2438,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching, DocType: Currency,Fraction,Κλάσμα DocType: LDAP Settings,LDAP First Name Field,LDAP Όνομα πεδίο apps/frappe/frappe/templates/emails/recurring_document_failed.html +6,for automatic creating of the recurring document to continue.,για την αυτόματη δημιουργία του συνεχόμενου εγγράφου. -apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +313,Select from existing attachments,Επιλέξτε από τα υπάρχοντα συνημμένα +apps/frappe/frappe/public/js/frappe/form/controls/text_editor.js +311,Select from existing attachments,Επιλέξτε από τα υπάρχοντα συνημμένα DocType: Custom Field,Field Description,Περιγραφή πεδίου apps/frappe/frappe/model/naming.py +272,Name not set via Prompt,Το όνομα δεν έχει οριστεί μέσω διαλόγου προτροπής 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"".","Καταχωρίστε τα πεδία προκαθορισμένης τιμής (κλειδιά) και τις τιμές. Εάν προσθέσετε πολλαπλές τιμές για ένα πεδίο, η πρώτη θα επιλεγεί. Αυτές οι προεπιλογές χρησιμοποιούνται επίσης για να ορίσετε τους κανόνες άδειας "αντιστοίχισης". Για να δείτε τη λίστα των πεδίων, μεταβείτε στην επιλογή "Προσαρμογή φόρμας"." @@ -2399,6 +2458,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +91,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Βρες είδη DocType: Contact,Image,Εικόνα DocType: Workflow State,remove-sign,Remove-sign +apps/frappe/frappe/printing/doctype/print_settings/print_settings.py +30,Failed to connect to server,Απέτυχε η σύνδεση με το διακομιστή apps/frappe/frappe/core/doctype/data_export/exporter.py +100,There is no data to be exported,Δεν υπάρχουν δεδομένα προς εξαγωγή DocType: Domain Settings,Domains HTML,Domains HTML apps/frappe/frappe/templates/includes/search_template.html +47,Type something in the search box to search,Πληκτρολογήστε κάτι στο πλαίσιο αναζήτησης για να αναζητήσετε @@ -2426,33 +2486,34 @@ DocType: Address,Address Line 2,Γραμμή διεύθυνσης 2 DocType: Address,Reference,Αναφορά apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Ανατέθηκε σε DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Λεπτομέρειες χαρτογράφησης μετανάστευσης δεδομένων -DocType: Email Flag Queue,Action,Ενέργεια +DocType: Data Import,Action,Ενέργεια DocType: GSuite Settings,Script URL,URL δέσμης ενεργειών -apps/frappe/frappe/www/update-password.html +119,Please enter the password,Παρακαλώ εισάγετε τον κωδικό πρόσβασης -apps/frappe/frappe/www/printview.py +84,Not allowed to print cancelled documents,Δεν επιτρέπεται να εκτυπώσετε ακυρωθεί έγγραφα +apps/frappe/frappe/www/update-password.html +111,Please enter the password,Παρακαλώ εισάγετε τον κωδικό πρόσβασης +apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Δεν επιτρέπεται να εκτυπώσετε ακυρωθεί έγγραφα apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +61,You are not allowed to create columns,Δεν επιτρέπεται να δημιουργήσετε στήλες DocType: Data Import,If you don't want to create any new records while updating the older records.,Αν δεν θέλετε να δημιουργήσετε νέες εγγραφές κατά την ενημέρωση των παλαιότερων αρχείων. apps/frappe/frappe/core/doctype/data_import/exporter.py +272,Info:,Πληροφορίες: DocType: Custom Field,Permission Level,Επίπεδο δικαιωμάτων DocType: User,Send Notifications for Transactions I Follow,Αποστολή ειδοποιήσεων για συναλλαγές που παρακολουθώ -apps/frappe/frappe/core/doctype/doctype/doctype.py +759,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Δεν είναι δυνατή η ρύθμιση υποβολή, ακύρωση, τροποποίηση χωρίς εγγραφή" -DocType: Google Maps,Client Key,Κλειδί πελάτη -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Είστε σίγουροι ότι θέλετε να διαγράψετε το συνημμένο; -apps/frappe/frappe/__init__.py +1097,Thank you,Σας ευχαριστούμε +apps/frappe/frappe/core/doctype/doctype/doctype.py +802,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Δεν είναι δυνατή η ρύθμιση υποβολή, ακύρωση, τροποποίηση χωρίς εγγραφή" +DocType: Google Maps Settings,Client Key,Κλειδί πελάτη +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +78,Are you sure you want to delete the attachment?,Είστε σίγουροι ότι θέλετε να διαγράψετε το συνημμένο; +apps/frappe/frappe/__init__.py +1178,Thank you,Σας ευχαριστούμε apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Οικονομία DocType: Print Settings,Print Style Preview,Προεπισκόπηση στυλ εκτύπωσης apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/public/js/frappe/ui/toolbar/modules_select.js +50,Icons,Εικονίδια -apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Δεν επιτρέπεται να ενημερώσετε αυτό το έγγραφο έντυπο Web +apps/frappe/frappe/website/doctype/web_form/web_form.py +362,You are not allowed to update this Web Form Document,Δεν επιτρέπεται να ενημερώσετε αυτό το έγγραφο έντυπο Web apps/frappe/frappe/core/page/usage_info/usage_info.html +31,Emails,Ηλεκτρονικά μηνύματα apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Επιλέξτε Document Type πρώτη apps/frappe/frappe/integrations/oauth2.py +108,Please set Base URL in Social Login Key for Frappe,Ορίστε τη διεύθυνση URL βάσης στο κλειδί κοινωνικής σύνδεσης για το Frappe DocType: About Us Settings,About Us Settings,Ρυθμίσεις σχετικά με εμάς DocType: Website Settings,Website Theme,Ιστοσελίδα Θέμα +DocType: User,Api Access,Api Access DocType: DocField,In List View,Στην προβολή λίστας DocType: Email Account,Use TLS,Χρήση tls apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Μη έγκυρη είσοδος ή κωδικός πρόσβασης -apps/frappe/frappe/core/doctype/data_import/data_import.js +61,Download Template,Κατεβάστε πρότυπο +apps/frappe/frappe/core/doctype/data_import/data_import.js +69,Download Template,Κατεβάστε πρότυπο apps/frappe/frappe/config/setup.py +254,Add custom javascript to forms.,Προσθήκη προσαρμοσμένων javascript για τις φόρμες. ,Role Permissions Manager,Διαχειριστής δικαιωμάτων ρόλου apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Όνομα της νέας μορφοποίησης εκτύπωσης @@ -2471,7 +2532,6 @@ DocType: Website Settings,HTML Header & Robots,HTML Header & Ρομπότ DocType: User Permission,User Permission,Δικαίωμα χρήστη apps/frappe/frappe/config/website.py +32,Blog,Ιστολόγιο apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +37,LDAP Not Installed,Το LDAP δεν είναι εγκατεστημένο -apps/frappe/frappe/core/doctype/data_import/data_import.js +193,Download with data,Κατεβάστε με δεδομένα DocType: Workflow State,hand-right,Hand-right DocType: Website Settings,Subdomain,Subdomain apps/frappe/frappe/config/integrations.py +68,Settings for OAuth Provider,Ρυθμίσεις για τον παροχέα OAuth @@ -2483,6 +2543,7 @@ apps/frappe/frappe/config/website.py +42,Write titles and introductions to your DocType: Email Account,Email Login ID,Είσοδος ταυτότητας ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,πληρωμή Ακυρώθηκε ,Addresses And Contacts,Διευθύνσεις και τις επαφές +apps/frappe/frappe/core/doctype/data_import/data_import.js +96,Please select document type first.,Επιλέξτε πρώτα τον τύπο εγγράφου. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Σαφή αρχεία καταγραφής των σφαλμάτων apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Επιλέξτε βαθμολογία apps/frappe/frappe/core/doctype/user/user.js +103,Reset OTP Secret,Επαναφορά του OTP Secret @@ -2491,19 +2552,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +570,2 days ago,2 μέ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Κατηγοριοποίηση δημοσιεύσεων blog. DocType: Workflow State,Time,Χρόνος DocType: DocField,Attach,Επισυνάψτε -apps/frappe/frappe/core/doctype/doctype/doctype.py +592,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} δεν είναι ένα έγκυρο μοτίβο ονόματος πεδίου. Θα πρέπει να είναι {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +635,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} δεν είναι ένα έγκυρο μοτίβο ονόματος πεδίου. Θα πρέπει να είναι {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Αποστολή σχολίων Αίτημα μόνο εάν υπάρχει τουλάχιστον ένας επικοινωνίας είναι διαθέσιμη για το έγγραφο. DocType: Custom Role,Permission Rules,Κανόνες άδειας DocType: Braintree Settings,Public Key,Δημόσιο κλειδί DocType: GSuite Settings,GSuite Settings,Ρυθμίσεις GSuite DocType: Address,Links,Σύνδεσμοι apps/frappe/frappe/core/doctype/data_export/data_export.js +38,Please select the Document Type.,Επιλέξτε τον τύπο εγγράφου. -apps/frappe/frappe/model/base_document.py +396,Value missing for,Η τιμή λείπει για +apps/frappe/frappe/model/base_document.py +405,Value missing for,Η τιμή λείπει για apps/frappe/frappe/public/js/frappe/views/treeview.js +183,Add Child,Προσθήκη παιδιού apps/frappe/frappe/model/delete_doc.py +176,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Οι υποβεβλημένες εγγραφές δεν μπορούν να διαγραφούν. DocType: GSuite Templates,Template Name,Όνομα προτύπου apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,νέος τύπος του εγγράφου -DocType: Custom DocPerm,Read,Ανάγνωση +DocType: Communication,Read,Ανάγνωση DocType: Address,Chhattisgarh,Chhattisgarh DocType: Role Permission for Page and Report,Role Permission for Page and Report,Άδεια ρόλο για την σελίδα και Έκθεση apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Ευθυγράμμιση Αξία @@ -2513,9 +2574,9 @@ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give col apps/frappe/frappe/chat/doctype/chat_room/chat_room.py +65,Direct room with {other} already exists.,Απευθείας δωμάτιο με {other} υπάρχει ήδη. DocType: Has Domain,Has Domain,Έχει τομέα apps/frappe/frappe/core/page/desktop/desktop.js +190,Hide,Κρύβω -apps/frappe/frappe/www/login.html +54,Don't have an account? Sign up,Δεν έχετε λογαριασμό; Εγγραφείτε +apps/frappe/frappe/www/login.html +55,Don't have an account? Sign up,Δεν έχετε λογαριασμό; Εγγραφείτε apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +617,Cannot remove ID field,Δεν είναι δυνατή η κατάργηση του πεδίου αναγνώρισης -apps/frappe/frappe/core/doctype/doctype/doctype.py +784,{0}: Cannot set Assign Amend if not Submittable,"{0} : Δεν είναι δυνατή η ανάθεση τροποποίησης, αν δεν είναι υποβλητέα" +apps/frappe/frappe/core/doctype/doctype/doctype.py +827,{0}: Cannot set Assign Amend if not Submittable,"{0} : Δεν είναι δυνατή η ανάθεση τροποποίησης, αν δεν είναι υποβλητέα" DocType: Address,Bihar,Bihar DocType: Activity Log,Link DocType,DocType σύνδεσμο apps/frappe/frappe/public/js/frappe/chat.js +1696,You don't have any messages yet.,Δεν έχετε ακόμη μηνύματα. @@ -2530,14 +2591,14 @@ apps/frappe/frappe/public/js/frappe/list/list_filter.js +102,Duplicate Filter Na DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Οι θυγατρικοί πίνακες απεικονίζονται σαν πλέγμα σε άλλους τύπους εγγράφων DocType: Chat Room User,Chat Room User,Χρήστης χώρου συνομιλίας apps/frappe/frappe/model/workflow.py +38,Workflow State not set,Δεν έχει οριστεί κατάσταση ροής εργασίας -apps/frappe/frappe/www/404.html +22,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 +25,Error Code: {0},Κωδικός σφάλματος: {0} +apps/frappe/frappe/www/404.html +23,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 +26,Error Code: {0},Κωδικός σφάλματος: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Περιγραφή για τη σελίδα παράθεσης, σε μορφή απλού κειμένου, μόνο μια-δυο γραμμές. (Μέγιστο 140 χαρακτήρες)" DocType: Workflow,Allow Self Approval,Να επιτρέπεται η αυτόνομη έγκριση apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html +27,John Doe,John Doe DocType: DocType,Name Case,Περίπτωση ονόματος apps/frappe/frappe/public/js/frappe/form/share.js +27,Shared with everyone,Κοινή χρήση με όλους -apps/frappe/frappe/model/base_document.py +392,Data missing in table,Στοιχεία που λείπουν στον πίνακα +apps/frappe/frappe/model/base_document.py +401,Data missing in table,Στοιχεία που λείπουν στον πίνακα DocType: Web Form,Success URL,URL επιτυχίας DocType: Email Account,Append To,Προσάρτηση σε apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +844,Fixed height,Σταθερό ύψος @@ -2558,31 +2619,32 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py +15,Standard Prin DocType: Website Settings,Robots.txt,robots.txt apps/frappe/frappe/core/doctype/user/user.py +192,Sorry! Sharing with Website User is prohibited.,Συγγνώμη! Η κοινοποίηση με χρήστες του δικτυακού τόπου απαγορεύεται. apps/frappe/frappe/public/js/frappe/roles_editor.js +30,Add all roles,Προσθέστε όλους τους ρόλους +DocType: Website Theme,Bootstrap Theme,Θέμα Bootstrap apps/frappe/frappe/templates/includes/contact.js +15,"Please enter both your email and message so that we \ can get back to you. Thanks!","Παρακαλώ εισάγετε τόσο το email όσο και το μήνυμά σας έτσι ώστε να \ μπορέσουμε να επικοινωνήσουμε μαζί σας. Ευχαριστώ!" -apps/frappe/frappe/email/smtp.py +200,Could not connect to outgoing email server,Δεν ήταν δυνατή η σύνδεση με το διακομιστή εξερχόμενων e-mail +apps/frappe/frappe/email/smtp.py +203,Could not connect to outgoing email server,Δεν ήταν δυνατή η σύνδεση με το διακομιστή εξερχόμενων e-mail apps/frappe/frappe/email/doctype/newsletter/newsletter.py +188,Thank you for your interest in subscribing to our updates,Σας ευχαριστούμε για το ενδιαφέρον σας για την εγγραφή στις ενημερώσεις μας DocType: Braintree Settings,Payment Gateway Name,Όνομα πύλης πληρωμής -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +195,Custom Column,Προσαρμοσμένη στήλη +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js +252,Custom Column,Προσαρμοσμένη στήλη DocType: Workflow State,resize-full,Resize-full DocType: Workflow State,off,Μακριά από apps/frappe/frappe/public/js/frappe/ui/capture.js +168,Retake,Ξαναπαίρνω -apps/frappe/frappe/desk/query_report.py +28,Report {0} is disabled,Η έκθεση {0} είναι απενεργοποιημένη +apps/frappe/frappe/desk/query_report.py +30,Report {0} is disabled,Η έκθεση {0} είναι απενεργοποιημένη DocType: Activity Log,Core,Πυρήνας apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permissions,Ορισμός δικαιωμάτων DocType: DocField,Set non-standard precision for a Float or Currency field,Ορισμός μη τυπικής ακριβείας για ένα πεδίο κινητής υποδιαστολής ή νόμισμα DocType: Email Account,Ignore attachments over this size,Αγνοήστε τα συνημμένα πάνω από αυτό το μέγεθος DocType: Address,Preferred Billing Address,Προτιμώμενη διεύθυνση χρέωσης apps/frappe/frappe/model/workflow.py +134,Workflow State {0} is not allowed,Η κατάσταση ροής εργασίας {0} δεν επιτρέπεται -apps/frappe/frappe/database.py +296,Too many writes in one request. Please send smaller requests,Πάρα πολλές εγγραφές σε ένα αίτημα. Παρακαλώ να στέλνετε μικρότερα αιτήματα. +apps/frappe/frappe/database.py +295,Too many writes in one request. Please send smaller requests,Πάρα πολλές εγγραφές σε ένα αίτημα. Παρακαλώ να στέλνετε μικρότερα αιτήματα. apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,τιμές Άλλαξε DocType: Workflow State,arrow-up,Βέλος πάνω DocType: OAuth Bearer Token,Expires In,Λήγει σε DocType: DocField,Allow on Submit,Επιτρέπεται κατά την υποβολή DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Εξαίρεση Τύπος -apps/frappe/frappe/public/js/frappe/views/reports/report_view.js +959,Pick Columns,Διαλέξτε Στήλες +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +606,Pick Columns,Διαλέξτε Στήλες DocType: Web Page,Add code as <script>,Προσθήκη κώδικα ως